coordinator_read_size had wrong name in cassandra.yaml

patch by Ekaterina Dimitrova, reviewed by David Capwell for CASSANDRA-17118
This commit is contained in:
dcapwell 2021-11-03 15:32:40 -07:00 committed by GitHub
parent 111e94ae13
commit 5b4d369266
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 21 additions and 21 deletions

View File

@ -1543,24 +1543,24 @@ enable_drop_compact_storage: false
# Enables tracking warnings/aborts across all replicas for reporting back to client.
# See: CASSANDRA-16850
#track_warnings:
# # Scheduled to enable in 4.2
# enabled: false
# # When track_warnings.enabled: true, this tracks the materialized size of a query on the
# # coordinator. If coordinator_large_read.warn_threshold_kb is greater than 0, this will emit a warning
# # to clients with details on what query triggered this as well as the size of the result set; if
# # coordinator_large_read.abort_threshold_kb is greater than 0, this will abort the query after it
# # has exceeded this threshold, returning a read error to the user.
# coordinator_large_read:
# warn_threshold_kb: 0
# abort_threshold_kb: 0
# # When track_warnings.enabled: true, this tracks the size of the local read (as defined by
# # heap size), and will warn/abort based off these thresholds; 0 disables these checks.
# local_read_size:
# warn_threshold_kb: 0
# abort_threshold_kb: 0
# # When track_warnings.enabled: true, this tracks the expected memory size of the RowIndexEntry
# # and will warn/abort based off these thresholds; 0 disables these checks.
# row_index_size:
# warn_threshold_kb: 0
# abort_threshold_kb: 0
# track_warnings:
# Scheduled to enable in 4.2
# enabled: true
# When track_warnings.enabled: true, this tracks the materialized size of a query on the
# coordinator. If coordinator_large_read.warn_threshold_kb is greater than 0, this will emit a warning
# to clients with details on what query triggered this as well as the size of the result set; if
# coordinator_large_read.abort_threshold_kb is greater than 0, this will abort the query after it
# has exceeded this threshold, returning a read error to the user.
# coordinator_read_size:
# warn_threshold_kb: 0
# abort_threshold_kb: 0
# When track_warnings.enabled: true, this tracks the size of the local read (as defined by
# heap size), and will warn/abort based off these thresholds; 0 disables these checks.
# local_read_size:
# warn_threshold_kb: 0
# abort_threshold_kb: 0
# When track_warnings.enabled: true, this tracks the expected memory size of the RowIndexEntry
# and will warn/abort based off these thresholds; 0 disables these checks.
# row_index_size:
# warn_threshold_kb: 0
# abort_threshold_kb: 0