forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add queue settings to docs (elastic#4884)
* Move queue setting to TOC + address some review * Remove flush_interval and spooler from outputconfig * remove 'slot' * add [float] tags * Update queueconfig.asciidoc
- Loading branch information
Showing
8 changed files
with
105 additions
and
14 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
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 |
---|---|---|
@@ -0,0 +1,74 @@ | ||
[[configuring-internal-queue]] | ||
== Configure the internal queue | ||
|
||
{beatname_uc} uses an internal queue to store events before publishing them. The | ||
queue is responsible for buffering and combining events into batches that can | ||
be consumed by the outputs. The outputs will use bulk operations to send a | ||
batch of events in one transaction. | ||
|
||
You can configure the type and behavior of the internal queue by setting options in the `queue` section of the +{beatname_lc}.yml+ config file. | ||
|
||
|
||
Example configuration: | ||
|
||
[source,yaml] | ||
------------------------------------------------------------------------------ | ||
queue.mem: | ||
events: 4096 | ||
------------------------------------------------------------------------------ | ||
|
||
[float] | ||
[[configuration-internal-queue-memory]] | ||
=== Configure the memory qeueue | ||
|
||
The memory queue keeps all events in memory. It is the only queue type | ||
supported right now. By default no flush interval is configured. All events | ||
published to this queue will be directly consumed by the outputs. | ||
The output's `bulk_max_size` setting limits the number of events being processed at once. | ||
|
||
The memory queue waits for the output to acknowledge or drop events. If | ||
the queue is full, no new events can be inserted into the memeory queue. Only | ||
after the signal from the output will the queue free up space for more events to be accepted. | ||
|
||
To enforce spooling in the queue, set the `flush.min_events` and `flush.timeout` options. | ||
|
||
This sample configuration forwards events to the output if 512 events are | ||
available or the oldest available event is already waiting for 5s in the queue: | ||
|
||
[source,yaml] | ||
------------------------------------------------------------------------------ | ||
queue.mem: | ||
events: 4096 | ||
flush.min_events: 512 | ||
flush.timeout: 5s | ||
------------------------------------------------------------------------------ | ||
|
||
[float] | ||
==== Configuration options | ||
|
||
You can specify the following options in the `queue.mem` section of the +{beatname_lc}.yml+ config file: | ||
|
||
[float] | ||
===== `events` | ||
|
||
Number of events the queue can store. | ||
|
||
The default value is 4096 events. | ||
|
||
[float] | ||
===== `flush.min_events` | ||
|
||
Minimum number of events required for publishing. If this value is set to 0, the | ||
output can start publishing events without additional waiting times. Otherwise | ||
the output has to wait for more events to become available. | ||
|
||
The default value is 0. | ||
|
||
[float] | ||
===== `flush.timeout` | ||
|
||
Maximum wait time for `flush.min_events` to be fulfilled. If set to 0s, events | ||
will be immediately available for consumption. | ||
|
||
The default values is 0s. | ||
|
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