Skip to content

Commit

Permalink
Merge branch 'master' of github.com:fluent/fluentd-docs
Browse files Browse the repository at this point in the history
Signed-off-by: Masahiro Nakagawa <repeatedly@gmail.com>
  • Loading branch information
repeatedly committed Apr 4, 2019
2 parents 3b75c58 + 5bbed31 commit f1f7764
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/v1.0/output-plugin-overview.txt
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ This mode drops oldest chunks. This mode is useful for monitoring system destina

### Control Retrying

If the bottom chunk write out fails, it will remain in the queue and Fluentd will retry after waiting several seconds (`retry_wait`). If the retry limit has not been disabled (`retry_forever` is true) and the retry count exceeds the specified limit (`retry_max_times`), the chunk is trashed. The retry wait time doubles each time (1.0sec, 2.0sec, 4.0sec, ...) until `retry_max_interval` is reached. If the queue length exceeds the specified limit (`queue_limit_length`), new events are rejected.
If the bottom chunk write out fails, it will remain in the queue and Fluentd will retry after waiting several seconds (`retry_wait`). If the retry limit has not been disabled (`retry_forever` is false) and the retry count exceeds the specified limit (`retry_max_times`), **all chunks in the queue are discarded**. The retry wait time doubles each time (1.0sec, 2.0sec, 4.0sec, ...) until `retry_max_interval` is reached. If the queue length exceeds the specified limit (`queue_limit_length`), new events are rejected.

NOTE: writing out the bottom chunk is considered to be a failure if "Output#write" or `Output#try_write` method throws an exception.

Expand Down

0 comments on commit f1f7764

Please sign in to comment.