mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-4.1' into cassandra-5.0
configuration section for native_transport_max_auth_threads with default value of 4 was added to cassandra.yaml as part of this merge-up as this section was forgotten to be added in the original patch of CASSANDRA-17812
This commit is contained in:
commit
a3f2771543
|
|
@ -1033,6 +1033,9 @@ native_transport_port: 9042
|
|||
# The maximum threads for handling requests (note that idle threads are stopped
|
||||
# after 30 seconds so there is not corresponding minimum setting).
|
||||
# native_transport_max_threads: 128
|
||||
# The maximum threads for handling auth requests in a separate executor from main request executor.
|
||||
# When set to 0, main executor for requests is used.
|
||||
# native_transport_max_auth_threads: 4
|
||||
#
|
||||
# The maximum size of allowed frame. Frame (requests) larger than this will
|
||||
# be rejected as invalid. The default is 16MiB. If you're changing this parameter,
|
||||
|
|
|
|||
|
|
@ -1026,6 +1026,9 @@ native_transport_port: 9042
|
|||
# The maximum threads for handling requests (note that idle threads are stopped
|
||||
# after 30 seconds so there is not corresponding minimum setting).
|
||||
# native_transport_max_threads: 128
|
||||
# The maximum threads for handling auth requests in a separate executor from main request executor.
|
||||
# When set to 0, main executor for requests is used.
|
||||
# native_transport_max_auth_threads: 4
|
||||
#
|
||||
# The maximum size of allowed frame. Frame (requests) larger than this will
|
||||
# be rejected as invalid. The default is 16MiB. If you're changing this parameter,
|
||||
|
|
|
|||
Loading…
Reference in New Issue