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: about/fluentd-and-fluent-bit.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -4,13 +4,13 @@ description: The Production Grade Ecosystem
4
4
5
5
# Fluentd & Fluent Bit
6
6
7
-
Logging and data processing in general can be complex, and at scale a bit more, that's why [Fluentd](https://www.fluentd.org) was born. But now is more than a simple tool, it's a full ecosystem that contains SDKs for different languages and sub projects like [Fluent Bit](https://fluentbit.io).
7
+
Logging and data processing in general can be complex, and at scale a bit more, that's why [Fluentd](https://www.fluentd.org) was born. But now is more than a simple tool, it's a full ecosystem that contains SDKs for different languages and sub projects like [Fluent Bit](https://fluentbit.io).
8
8
9
9
On this page, we will describe the relationship between the [Fluentd](http://fluentd.org) and [Fluent Bit](http://fluentbit.io) open source projects, as a summary we can say both are:
10
10
11
11
* Licensed under the terms of Apache License v2.0
12
12
* Hosted projects by the [Cloud Native Computing Foundation \(CNCF\)](https://cncf.io)
13
-
* Production Grade solutions: deployed **thousands** of times every single day, **millions** per ****month.
13
+
* Production Grade solutions: deployed **thousands** of times every single day, **millions** per _\*\*_month.
14
14
* Community driven projects
15
15
* Widely Adopted by the Industry: trusted by all major companies like AWS, Microsoft, Google Cloud and hundred of others.
16
16
* Originally created by [Treasure Data](https://www.treasuredata.com).
@@ -29,5 +29,5 @@ The following table describes a comparison in different areas of the projects:
29
29
| Plugins | More than 1000 plugins available | Around 50 plugins available |
Copy file name to clipboardExpand all lines: concepts/buffering.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -4,13 +4,13 @@ description: Performance and data safety
4
4
5
5
# Buffering
6
6
7
-
When [Fluent Bit](https://fluentbit.io) process data, it uses the system memory \(heap\) as a primary and temporal place to store the record logs before they get delivered, on this private memory area the records are processed.
7
+
When [Fluent Bit](https://fluentbit.io) process data, it uses the system memory \(heap\) as a primary and temporal place to store the record logs before they get delivered, on this private memory area the records are processed.
8
8
9
9
Buffering refers to the ability to store the records somewhere, and while they are processed and delivered, still be able to store more. Buffering in memory is the fastest mechanism, but there are certain scenarios where the mechanism requires special strategies to deal with [backpressure](../administration/backpressure.md), data safety or reduce memory consumption by the service in constraint environments.
10
10
11
11
Fluent Bit as buffering strategies, offers a primary buffering mechanism in **memory** and an optional secondary one using the **file system**. With this hybrid solution you can adjust to any use case safety and keep a high performance while processing your data.
12
12
13
-
Both mechanisms are not exclusive and when the data is ready to be processed or delivered it will be always **in memory**, while other data in the queue might be in the file system until is ready to be processed and moved up to memory.
13
+
Both mechanisms are not exclusive and when the data is ready to be processed or delivered it will be always **in memory**, while other data in the queue might be in the file system until is ready to be processed and moved up to memory.
14
14
15
15
To learn more about the buffering configuration in Fluent Bit, please jump to the [Buffering & Storage](../administration/buffering-and-storage.md) section.
0 commit comments