Skip to content

Commit 1bde286

Browse files
Merge pull request #1630 from fluent/alexakreizinger/sc-134790/update-stream-processing-getting-started
2 parents 5276975 + c628413 commit 1bde286

File tree

1 file changed

+6
-18
lines changed

1 file changed

+6
-18
lines changed
+6-18
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,9 @@
1-
# Getting Started
2-
3-
The following guide assumes that you are familiar with [Fluent Bit](https://fluentbit.io), if that is not the case we suggest you review the official manual first:
4-
5-
* [Fluent Bit Manual](https://docs.fluentbit.io/manual/)
6-
7-
## Requirements
8-
9-
* [Fluent Bit](https://fluentbit.io) >= v1.1.0 or Fluent Bit from [GIT Master](https://github.com/fluent/fluent-bit)
10-
* Basic understanding of Structured Query Language \(SQL\)
11-
12-
## Technical Concepts
1+
# Get started
132

143
| Concept | Description |
154
| :--- | :--- |
16-
| Stream | A Stream represents an unique flow of data being ingested by an Input plugin. By default Streams get a name using the plugin name plus an internal numerical identification, e.g: tail.0 . Stream name can be changed setting the _alias_ property. |
17-
| Task | Stream Processor configuration have the notion of Tasks that represents an execution unit, for short: SQL queries are configured in a Task. |
18-
| Results | When Stream Processor runs a SQL query, results are generated. These results can be re-ingested back into the main Fluent Bit pipeline or simply redirected to the standard output interfaces for debugging purposes. |
19-
| Tag | Fluent Bit group records and associate a Tag to them. Tags are used to define routing rules or in the case of the stream processor to attach to specific Tag that matches a pattern. |
20-
| Match | Matching rule that can use a wildcard to match specific records associated to a Tag. |
21-
5+
| Stream | A stream is a single flow of data being ingested by an input plugin. By default, each stream name is the name of its input plugin plus a number (for example, `tail.0`). You can use the `alias` property to change this name. |
6+
| Task | A single execution unit. For example, a SQL query. |
7+
| Results | After a stream processor runs a SQL query, results are generated. You can re-ingest these results back into the main Fluent Bit pipeline or redirect them to the standard output interface for debugging purposes. |
8+
| Tag | Fluent Bit groups records and assigns tags to them. These tags define routing rules and can be used to apply stream processors to specific tags that match a pattern. |
9+
| Match | Matching rules can use a wildcard to match specific records associated with a tag. |

0 commit comments

Comments
 (0)