You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Warning added for slow operations and stalled read in BlueStore. User can control how much time the warning should persist after last occurence and maximum number of operations as a threshold will be considered for the warning.
Copy file name to clipboardExpand all lines: src/common/options/global.yaml.in
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5365,6 +5365,18 @@ options:
5365
5365
desc: Enable health indication when spurious read errors are observed by OSD
5366
5366
default: true
5367
5367
with_legacy: true
5368
+
- name: bluestore_slow_ops_warn_lifetime
5369
+
type: uint
5370
+
level: advanced
5371
+
desc: A configurable duration for slow ops warning to be appeared if number of occurence pass `bluestore_slow_ops_warn_threshold` in `bluestore_slow_ops_warn_lifetime` seconds
5372
+
default: 86400
5373
+
with_legacy: true
5374
+
- name: bluestore_slow_ops_warn_threshold
5375
+
type: uint
5376
+
level: advanced
5377
+
desc: A configurable number for slow ops warning to be appeared if number of occurence pass `bluestore_slow_ops_warn_threshold` in `bluestore_slow_ops_warn_lifetime` seconds
5378
+
default: 1
5379
+
with_legacy: true
5368
5380
- name: bluestore_fsck_error_on_no_per_pool_omap
5369
5381
type: bool
5370
5382
level: advanced
@@ -6442,6 +6454,18 @@ options:
6442
6454
- aio
6443
6455
- spdk
6444
6456
- pmem
6457
+
- name: bdev_stalled_read_warn_lifetime
6458
+
type: uint
6459
+
level: advanced
6460
+
desc: A configurable duration for stalled read warning to be appeared if number of stalled read occurence pass `bdev_stalled_read_warn_threshold` in `bdev_stalled_read_warn_lifetime` seconds
6461
+
default: 86400
6462
+
with_legacy: true
6463
+
- name: bdev_stalled_read_warn_threshold
6464
+
type: uint
6465
+
level: advanced
6466
+
desc: A configurable number for stalled read warning to be appeared if number of stalled read occurence pass `bdev_stalled_read_warn_threshold` in `bdev_stalled_read_warn_lifetime` seconds
0 commit comments