diff --git a/cluster/addons/fluentd-elasticsearch/fluentd-es-image/td-agent.conf b/cluster/addons/fluentd-elasticsearch/fluentd-es-image/td-agent.conf
index 4a155ac4296..ddfe37c979f 100644
--- a/cluster/addons/fluentd-elasticsearch/fluentd-es-image/td-agent.conf
+++ b/cluster/addons/fluentd-elasticsearch/fluentd-es-image/td-agent.conf
@@ -186,12 +186,12 @@
port 9200
logstash_format true
# Set the chunk limit the same as for fluentd-gcp.
- buffer_chunk_limit 512K
- # Cap buffer memory usage to 512KB/chunk * 128 chunks = 65 MB
- buffer_queue_limit 128
+ buffer_chunk_limit 2M
+ # Cap buffer memory usage to 2MiB/chunk * 32 chunks = 64 MiB
+ buffer_queue_limit 32
flush_interval 5s
# Never wait longer than 5 minutes between retries.
- max_retry_wait 300
+ max_retry_wait 30
# Disable the limit on the number of retries (retry forever).
disable_retry_limit
diff --git a/cluster/addons/fluentd-gcp/fluentd-gcp-image/google-fluentd.conf b/cluster/addons/fluentd-gcp/fluentd-gcp-image/google-fluentd.conf
index 25a49850f01..9b0b7ff4933 100644
--- a/cluster/addons/fluentd-gcp/fluentd-gcp-image/google-fluentd.conf
+++ b/cluster/addons/fluentd-gcp/fluentd-gcp-image/google-fluentd.conf
@@ -130,15 +130,15 @@
type google_cloud
# Set the chunk limit conservatively to avoid exceeding the GCL limit
- # of 2MB per write request.
- buffer_chunk_limit 512K
+ # of 10MiB per write request.
+ buffer_chunk_limit 2M
# Cap the combined memory usage of this buffer and the one below to
- # 512KB/chunk * (96 + 32) chunks = 65 MB
- buffer_queue_limit 96
+ # 2MiB/chunk * (24 + 8) chunks = 64 MiB
+ buffer_queue_limit 24
# Never wait more than 5 seconds before flushing logs in the non-error case.
flush_interval 5s
- # Never wait longer than 5 minutes between retries.
- max_retry_wait 300
+ # Never wait longer than 30 seconds between retries.
+ max_retry_wait 30
# Disable the limit on the number of retries (retry forever).
disable_retry_limit
@@ -148,9 +148,9 @@
type google_cloud
detect_subservice false
- buffer_chunk_limit 512K
- buffer_queue_limit 32
+ buffer_chunk_limit 2M
+ buffer_queue_limit 8
flush_interval 5s
- max_retry_wait 300
+ max_retry_wait 30
disable_retry_limit