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:
Stefan Miklosovic 2024-11-06 23:00:06 +01:00
commit a3f2771543
No known key found for this signature in database
GPG Key ID: 32F35CB2F546D93E
2 changed files with 6 additions and 0 deletions

View File

@ -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,

View File

@ -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,