-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Doc: Enhance and expand DLQ docs 7.14 (#13100)
- Loading branch information
Showing
3 changed files
with
53 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,20 @@ | ||
[[resiliency]] | ||
== Data Resiliency | ||
== Data resiliency | ||
|
||
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 the following data resiliency | ||
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. You can easily reprocess events in the dead letter queue by | ||
using the `dead_letter_queue` input plugin. | ||
|
||
//TODO: Make dead_letter_queue an active link after the plugin docs are published. | ||
* <<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>>. |