diff options
author | Ronen Friedman <rfriedma@redhat.com> | 2024-02-07 14:25:18 +0100 |
---|---|---|
committer | Ronen Friedman <rfriedma@redhat.com> | 2024-02-09 11:14:10 +0100 |
commit | d828847b51edc664c381555c56b8c72356b49f49 (patch) | |
tree | 913dadb2b9ec7a24a340d2749259b4912aa0ce57 /src/common/options/global.yaml.in | |
parent | Merge pull request #55462 from afreen23/fix-64270 (diff) | |
download | ceph-d828847b51edc664c381555c56b8c72356b49f49.tar.xz ceph-d828847b51edc664c381555c56b8c72356b49f49.zip |
osd: restoring timely collection of PG stats
500 seconds is way too long, e.g. when compared to the 5s
default configuration option for the manager collection of the OSD data.
Fixes tracker issue 53342 note 5 (a specific scenario leading
to 'not all pgs scrubbed')
Fixes: https://tracker.ceph.com/issues/53342 - partial fix
Signed-off-by: Ronen Friedman <rfriedma@redhat.com>
Diffstat (limited to '')
-rw-r--r-- | src/common/options/global.yaml.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/options/global.yaml.in b/src/common/options/global.yaml.in index 072f94a9d79..feb9aeb7b5e 100644 --- a/src/common/options/global.yaml.in +++ b/src/common/options/global.yaml.in @@ -2920,8 +2920,8 @@ options: level: advanced desc: The maximum interval seconds for update pg's reported_epoch, benefit for osdmap trim when osdmap not change frequently. - default: 500 with_legacy: true + default: 5 - name: osd_pg_stat_report_interval_max_epochs type: int level: advanced |