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
Fixing admin docs, standardization of coding examples. Fixes#2007. (#2008)
* Fixing admin troubleshooting docs, standardization. Part of issue #2007.
Signed-off-by: Eric D. Schabell <[email protected]>
* Fixing admin transport security docs, standardization code examples. Part of issue #2007.
Signed-off-by: Eric D. Schabell <[email protected]>
* Fixing admin scheduling and retries docs, standardization code examples. Part of issue #2007.
Signed-off-by: Eric D. Schabell <[email protected]>
* Fixing admin networking docs, standardization code examples. Part of issue #2007.
Signed-off-by: Eric D. Schabell <[email protected]>
* Fixing admin monitoring docs, standardization code examples. Part of issue #2007.
Signed-off-by: Eric D. Schabell <[email protected]>
* Fixing admin memory managment docs, standardization code examples. Part of issue #2007.
Signed-off-by: Eric D. Schabell <[email protected]>
* Fixing admin transport security docs, standardization code examples. Part of issue #2007.
Signed-off-by: Eric D. Schabell <[email protected]>
* Fixing admin troubleshooting docs, standardization. Part of issue #2007.
Signed-off-by: Eric D. Schabell <[email protected]>
* Fixing admin buffering and storage docs, standardization. Part of issue #2007.
Signed-off-by: Eric D. Schabell <[email protected]>
* Fixing admin backpressure docs, standardization. Part of issue #2007.
Signed-off-by: Eric D. Schabell <[email protected]>
* Fixing admin multiline-parsing docs, standardization. Part of issue #2007.
Signed-off-by: Eric D. Schabell <[email protected]>
---------
Signed-off-by: Eric D. Schabell <[email protected]>
It's possible for logs or data to be ingested or created faster than the ability to flush it to some destinations. A common scenario is when reading from big log files, especially with a large backlog, and dispatching the logs to a backend over the network, which takes time to respond. This generates _backpressure_, leading to high memory consumption in the service.
6
4
7
5
To avoid backpressure, Fluent Bit implements a mechanism in the engine that restricts the amount of data an input plugin can ingest. Restriction is done through the configuration parameters `Mem_Buf_Limit` and `storage.Max_Chunks_Up`.
@@ -70,4 +68,4 @@ With `storage.type filesystem` and `storage.max_chunks_up`, the following log me
70
68
```text
71
69
[input] {input name or alias} paused (storage buf overlimit)
72
70
[input] {input name or alias} resume (storage buf overlimit)
0 commit comments