logstash/docs/static/resiliency.asciidoc
Karen Metts 44ea102a7e
Doc: Add topic and expand info for in-memory queue (#13246)
Co-authored-by: Rob Bavey <rob.bavey@elastic.co>
2021-10-05 18:12:02 -04:00

22 lines
1.1 KiB
Text

[[resiliency]]
== Queues and data resiliency
By default, Logstash uses <<memory-queue,in-memory bounded queues>> between pipeline stages (inputs → pipeline workers) to buffer events.
As data flows through the event processing pipeline, Logstash may encounter
situations that prevent it from delivering events to the configured
output. For example, the data might contain unexpected data types, or
Logstash might terminate abnormally.
To guard against data loss and ensure that events flow through the
pipeline without interruption, Logstash provides data resiliency
features.
* <<persistent-queues>> protect against data loss by storing events in an
internal queue on disk.
* <<dead-letter-queues>> provide on-disk storage for events that Logstash is unable to process so that you can evaluate them.
You can easily reprocess events in the dead letter queue by using the `dead_letter_queue` input plugin.
These resiliency features are disabled by default. To turn on these features,
you must explicitly enable them in the Logstash <<logstash-settings-file,settings file>>.