mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-13 03:12:13 +00:00
in this change, following query timeouts config options are marked live update-able: - range_request_timeout_in_ms - read_request_timeout_in_ms - counter_write_request_timeout_in_ms - cas_contention_timeout_in_ms - truncate_request_timeout_in_ms - write_request_timeout_in_ms - request_timeout_in_ms as per https://github.com/scylladb/scylladb/issues/10172, > Many users would like to set the driver timers based on server timers. > For example: expire a read timeout before or after the server read time > out. with this change, we are able to set the timeouts on the fly. these timeout options specify how long coordinator waits for the completion of different kinds of operations. but these options are cached by the servers consuming them, so in this series, helpers are added to update the cached values when the options gets modified. also, since the observers are not copyable, sharded_parameter is used to initialize the config when creating these sharded servers. Fixes #12232 Signed-off-by: Kefu Chai <kefu.chai@scylladb.com> Closes #12531 * github.com:scylladb/scylladb: timeout_config: remove unused make_timeout_config() client_state: split the param list of ctor into multi lines redis,thrift,transport: make timeout_config live-updateable config: mark query timeouts live update-able transport: mark cql_server::timeout_config() const auth: remove unused forward declaration redis: drop unused member function transport: drop unused member function thrift: keep a reference of timeout_config in handler_factory redis,thrift,transport: initialize _config with std::move(config) redis,thrift,transport: pass config via sharded_parameter utils: config_file: add a space after `=`