Commit 35fb50ba authored by k8s-merge-robot's avatar k8s-merge-robot Committed by GitHub

Merge pull request #29801 from rbuskens/multi-thread-config

Automatic merge from submit-queue Updated fluentd configuration to spawn multiple threads for processing (by default, fluentd uses a single thread). @a-robinson @igorpeshansky
parents a4442250 77bda6fd
...@@ -266,4 +266,6 @@ ...@@ -266,4 +266,6 @@
max_retry_wait 30 max_retry_wait 30
# Disable the limit on the number of retries (retry forever). # Disable the limit on the number of retries (retry forever).
disable_retry_limit disable_retry_limit
# Use multiple threads for processing.
num_threads 8
</match> </match>
...@@ -234,6 +234,8 @@ ...@@ -234,6 +234,8 @@
max_retry_wait 30 max_retry_wait 30
# Disable the limit on the number of retries (retry forever). # Disable the limit on the number of retries (retry forever).
disable_retry_limit disable_retry_limit
# Use multiple threads for processing.
num_threads 8
</match> </match>
# Keep a smaller buffer here since these logs are less important than the user's # Keep a smaller buffer here since these logs are less important than the user's
...@@ -246,4 +248,5 @@ ...@@ -246,4 +248,5 @@
flush_interval 5s flush_interval 5s
max_retry_wait 30 max_retry_wait 30
disable_retry_limit disable_retry_limit
num_threads 8
</match> </match>
...@@ -218,6 +218,8 @@ ...@@ -218,6 +218,8 @@
max_retry_wait 30 max_retry_wait 30
# Disable the limit on the number of retries (retry forever). # Disable the limit on the number of retries (retry forever).
disable_retry_limit disable_retry_limit
# Use multiple threads for processing.
num_threads 8
</match> </match>
# Keep a smaller buffer here since these logs are less important than the user's # Keep a smaller buffer here since these logs are less important than the user's
...@@ -230,4 +232,5 @@ ...@@ -230,4 +232,5 @@
flush_interval 5s flush_interval 5s
max_retry_wait 30 max_retry_wait 30
disable_retry_limit disable_retry_limit
num_threads 8
</match> </match>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment