maedhroz commented on code in PR #2961: URL: https://github.com/apache/cassandra/pull/2961#discussion_r1434387703
########## conf/cassandra.yaml: ########## @@ -2076,6 +2076,15 @@ drop_compact_storage_enabled: false # if zero_ttl_on_twcs_enabled is set to false, this property is irrelevant as such statements will fail. #zero_ttl_on_twcs_warned: true +# Guardrail enabling secondary index queries that do not restrict on partition key (defaults to true) +#non_partition_restricted_index_query_enabled: true +# Maximum number of referenced SAI indexes on a replica when executing a SELECT query +# before emitting a warning, defaults to 32. +#sai_sstable_indexes_per_query_warn_threshold: 32 +# Maximum number of referenced SAI indexes on a replica when executing a SELECT query +# before emitting a failure, defaults to -1 as it will never fail. Review Comment: ```suggestion # before emitting a failure (defaults to -1 to disable) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

