Description of problem:
If possible, change the dout level of "osd_max_markdown_count" from (10) -> (0),
- that will also match with upstream "master" and downstream "RHCS 3":
From ceph-10.2.10/src/osd/OSD.cc:
7021 if ((int)osd_markdown_log.size() > g_conf->osd_max_markdown_count) {
7022 dout(10) << __func__ << " marked down "
7023 << osd_markdown_log.size()
7024 << " > osd_max_markdown_count "
7025 << g_conf->osd_max_markdown_count
7026 << " in last " << grace << " seconds, shutting down"
7027 << dendl;
7028 do_restart = false;
7029 do_shutdown = true;
To:
7021 if ((int)osd_markdown_log.size() > g_conf->osd_max_markdown_count) {
7022 dout(0) << __func__ << " marked down "
7023 << osd_markdown_log.size()
7024 << " > osd_max_markdown_count "
7025 << g_conf->osd_max_markdown_count
7026 << " in last " << grace << " seconds, shutting down"
7027 << dendl;
7028 do_restart = false;
7029 do_shutdown = true;
Reason: will make our life a lot easier =D
- in ceph-osd.log with default logging level will show this was a reason for osd to terminate (gracefully suicide) itself
Target: next RHCS 2.x release
Version-Release number of selected component (if applicable):
RHCS 2.5
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.
For information on the advisory, and where to find the updated
files, follow the link below.
If the solution does not work for you, open a new bug report.
https://access.redhat.com/errata/RHSA-2018:2261
Description of problem: If possible, change the dout level of "osd_max_markdown_count" from (10) -> (0), - that will also match with upstream "master" and downstream "RHCS 3": From ceph-10.2.10/src/osd/OSD.cc: 7021 if ((int)osd_markdown_log.size() > g_conf->osd_max_markdown_count) { 7022 dout(10) << __func__ << " marked down " 7023 << osd_markdown_log.size() 7024 << " > osd_max_markdown_count " 7025 << g_conf->osd_max_markdown_count 7026 << " in last " << grace << " seconds, shutting down" 7027 << dendl; 7028 do_restart = false; 7029 do_shutdown = true; To: 7021 if ((int)osd_markdown_log.size() > g_conf->osd_max_markdown_count) { 7022 dout(0) << __func__ << " marked down " 7023 << osd_markdown_log.size() 7024 << " > osd_max_markdown_count " 7025 << g_conf->osd_max_markdown_count 7026 << " in last " << grace << " seconds, shutting down" 7027 << dendl; 7028 do_restart = false; 7029 do_shutdown = true; Reason: will make our life a lot easier =D - in ceph-osd.log with default logging level will show this was a reason for osd to terminate (gracefully suicide) itself Target: next RHCS 2.x release Version-Release number of selected component (if applicable): RHCS 2.5