Merge "Add size limits to Fluentd buffers"
This commit is contained in:
commit
ecdd7462aa
@ -139,6 +139,18 @@ cron_logrotate_schedule: "daily"
|
|||||||
# Enable the additional watch timer
|
# Enable the additional watch timer
|
||||||
fluentd_enable_watch_timer: "false"
|
fluentd_enable_watch_timer: "false"
|
||||||
|
|
||||||
|
# Set limits for queue size and chunk size
|
||||||
|
# We need to ensure that the bulk_message_request_threshold is set below the
|
||||||
|
# default maximum content length for the OpenSearch bulk API (100MB). By
|
||||||
|
# default the bulk_message_request_threshold is unlimited, which can lead to
|
||||||
|
# large payloads being sent and subsequently rejected by the OpenSearch API.
|
||||||
|
fluentd_bulk_message_request_threshold: "20M"
|
||||||
|
|
||||||
|
# The fluentd buffer chunk limit size is the maximum size of a single chunk in
|
||||||
|
# the buffer. This should be set to a value that is less than the maximum size
|
||||||
|
# of the bulk_message_request_threshold.
|
||||||
|
fluentd_buffer_chunk_limit_size: "8M"
|
||||||
|
|
||||||
fluentd_input_openstack_services:
|
fluentd_input_openstack_services:
|
||||||
- name: aodh
|
- name: aodh
|
||||||
enabled: "{{ enable_aodh | bool }}"
|
enabled: "{{ enable_aodh | bool }}"
|
||||||
|
@ -39,10 +39,12 @@
|
|||||||
reconnect_on_error true
|
reconnect_on_error true
|
||||||
request_timeout {{ fluentd_elasticsearch_request_timeout }}
|
request_timeout {{ fluentd_elasticsearch_request_timeout }}
|
||||||
suppress_type_name true
|
suppress_type_name true
|
||||||
|
bulk_message_request_threshold {{ fluentd_bulk_message_request_threshold }}
|
||||||
<buffer>
|
<buffer>
|
||||||
@type file
|
@type file
|
||||||
path /var/lib/fluentd/data/elasticsearch.buffer/{{ item.facility }}.*
|
path /var/lib/fluentd/data/elasticsearch.buffer/{{ item.facility }}.*
|
||||||
flush_interval 15s
|
flush_interval 15s
|
||||||
|
chunk_limit_size {{ fluentd_buffer_chunk_limit_size }}
|
||||||
</buffer>
|
</buffer>
|
||||||
</store>
|
</store>
|
||||||
{% elif log_direct_to_opensearch %}
|
{% elif log_direct_to_opensearch %}
|
||||||
@ -70,10 +72,12 @@
|
|||||||
reconnect_on_error true
|
reconnect_on_error true
|
||||||
request_timeout {{ fluentd_opensearch_request_timeout }}
|
request_timeout {{ fluentd_opensearch_request_timeout }}
|
||||||
suppress_type_name true
|
suppress_type_name true
|
||||||
|
bulk_message_request_threshold {{ fluentd_bulk_message_request_threshold }}
|
||||||
<buffer>
|
<buffer>
|
||||||
@type file
|
@type file
|
||||||
path /var/lib/fluentd/data/opensearch.buffer/{{ item.facility }}.*
|
path /var/lib/fluentd/data/opensearch.buffer/{{ item.facility }}.*
|
||||||
flush_interval 15s
|
flush_interval 15s
|
||||||
|
chunk_limit_size {{ fluentd_buffer_chunk_limit_size }}
|
||||||
</buffer>
|
</buffer>
|
||||||
</store>
|
</store>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -24,10 +24,12 @@
|
|||||||
reconnect_on_error true
|
reconnect_on_error true
|
||||||
request_timeout {{ fluentd_elasticsearch_request_timeout }}
|
request_timeout {{ fluentd_elasticsearch_request_timeout }}
|
||||||
suppress_type_name true
|
suppress_type_name true
|
||||||
|
bulk_message_request_threshold {{ fluentd_bulk_message_request_threshold }}
|
||||||
<buffer>
|
<buffer>
|
||||||
@type file
|
@type file
|
||||||
path /var/lib/fluentd/data/elasticsearch.buffer/openstack.*
|
path /var/lib/fluentd/data/elasticsearch.buffer/openstack.*
|
||||||
flush_interval 15s
|
flush_interval 15s
|
||||||
|
chunk_limit_size {{ fluentd_buffer_chunk_limit_size }}
|
||||||
</buffer>
|
</buffer>
|
||||||
</store>
|
</store>
|
||||||
</match>
|
</match>
|
||||||
|
@ -24,10 +24,12 @@
|
|||||||
reconnect_on_error true
|
reconnect_on_error true
|
||||||
request_timeout {{ fluentd_opensearch_request_timeout }}
|
request_timeout {{ fluentd_opensearch_request_timeout }}
|
||||||
suppress_type_name true
|
suppress_type_name true
|
||||||
|
bulk_message_request_threshold {{ fluentd_bulk_message_request_threshold }}
|
||||||
<buffer>
|
<buffer>
|
||||||
@type file
|
@type file
|
||||||
path /var/lib/fluentd/data/opensearch.buffer/openstack.*
|
path /var/lib/fluentd/data/opensearch.buffer/openstack.*
|
||||||
flush_interval 15s
|
flush_interval 15s
|
||||||
|
chunk_limit_size {{ fluentd_buffer_chunk_limit_size }}
|
||||||
</buffer>
|
</buffer>
|
||||||
</store>
|
</store>
|
||||||
</match>
|
</match>
|
||||||
|
9
releasenotes/notes/fluentd-buffers-86acb335b1cf3126.yaml
Normal file
9
releasenotes/notes/fluentd-buffers-86acb335b1cf3126.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
fixes:
|
||||||
|
- |
|
||||||
|
Reduce the size of the fluentd buffers to avoid getting HTTP 413 errors
|
||||||
|
when sending logs to opensearch/elasticsearch. The values chosen were based
|
||||||
|
on what seemed a sensible size. These can be customised by editing the
|
||||||
|
``fluentd_bulk_message_request_threshold`` and
|
||||||
|
``fluentd_buffer_chunk_limit_size`` variables. `LP#2079988
|
||||||
|
<https://bugs.launchpad.net/kolla-ansible/+bug/2079988>`__
|
Loading…
Reference in New Issue
Block a user