From: Jesse Williamson <jwilliamson@suse.de>
To: Squid Cybernetic <ceph-devel@vger.kernel.org>
Subject: Re: OSDMap / osd_state questions
Date: Tue, 4 Apr 2017 05:18:26 -0700 (PDT) [thread overview]
Message-ID: <alpine.LSU.2.20.1704040511310.19913@ancalagon.suse.de> (raw)
In-Reply-To: <alpine.LSU.2.20.1704030511540.12566@ancalagon.suse.de>
On Tue, 4 Apr 2017, Jesse Williamson wrote:
Ok, sorry to add extra traffic, but a partial answer to my own question leads to more questions:
> ...is there some condition where an osd id will appear in osd_state and yet
> CEPH_OSD_EXISTS be false? It looks like the other two conditions, UP and
> OUT[1] depend on that being true.
OSDMonitor::get_health() appears to circumvent the is_up()/is_down()
methods from OSDMap, instead checking manually-- and slightly
differently[1].
One of the checks is:
if (!osdmap.exists(i)) {
if (osdmap.crush->item_exists(i)) {
down_osds.insert(i);
}
...so, to be "down", something must NOT exist in the osd_state AND must
exist in the CRUSH map. Looking at definition of OSDMap::exists() and
OSDMap::is_down(), they differ in that get_health() is checking the CRUSH
map. Who's right..?
It also looks like in get_health() when something's added to down_osds,
num_down_in_osds isn't incremented. Is this intentional?
Thanks again,
-Jesse
1. From OSDMonitor::get_health():
int num_in_osds = 0;
set<int> down_osds;
for (int i = 0; i < osdmap.get_max_osd(); i++) {
if (!osdmap.exists(i)) {
if (osdmap.crush->item_exists(i)) {
down_osds.insert(i);
}
continue;
}
if (osdmap.is_out(i))
continue;
++num_in_osds;
if (!osdmap.is_up(i)) {
++num_down_in_osds;
2. exists(), etc.:
bool exists(int osd) const {
//assert(osd >= 0);
return osd >= 0 && osd < max_osd && (osd_state[osd] &
CEPH_OSD_EXISTS);
}
bool is_up(int osd) const {
return exists(osd) && (osd_state[osd] & CEPH_OSD_UP);
}
bool has_been_up_since(int osd, epoch_t epoch) const {
return is_up(osd) && get_up_from(osd) <= epoch;
}
bool is_down(int osd) const {
return !is_up(osd);
}
next prev parent reply other threads:[~2017-04-04 12:18 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-04 11:42 OSDMap / osd_state questions Jesse Williamson
2017-04-04 12:18 ` Jesse Williamson [this message]
2017-04-04 14:16 ` Sage Weil
2017-04-04 14:12 ` Sage Weil
2017-04-04 14:55 ` Jesse Williamson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=alpine.LSU.2.20.1704040511310.19913@ancalagon.suse.de \
--to=jwilliamson@suse.de \
--cc=ceph-devel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox