You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/output/elasticsearch.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,10 +3,10 @@
3
3

4
4
5
5
The `out_elasticsearch` Output plugin writes records into Elasticsearch. By
6
-
default, it creates records by bulk write operation. This means that when you
7
-
first import records using the plugin, no record is created immediately.
6
+
default, it creates records using [bulk api](https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-bulk.html) which performs multiple indexing operations in a single API call. This reduces overhead and can greatly increase indexing speed. This means that when you
7
+
first import records using the plugin, records are not immediately pushed to Elasticsearch.
8
8
9
-
The record will be created when the `chunk_keys` condition has been met. To
9
+
Records will be sent to Elasticsearch when the `chunk_keys` condition has been met. To
10
10
change the output frequency, please specify the `time` in `chunk_keys` and
11
11
specify `timekey` value in the configuration.
12
12
@@ -129,6 +129,8 @@ specify timekey for time slice of chunk:
129
129
</buffer>
130
130
```
131
131
132
+
For more information about buffer options checkout the [Buffer Section Configuration](/configuration/buffer-section.md).
0 commit comments