|
1 | 1 | --- |
2 | 2 | applies_to: |
3 | | - serverless: preview |
4 | | - stack: preview 9.1 |
| 3 | + serverless: ga |
| 4 | + stack: preview 9.1, ga 9.2 |
5 | 5 | navigation_title: Configure advanced settings |
6 | 6 | --- |
7 | 7 | # Configure advanced settings for streams [streams-advanced-settings] |
8 | 8 |
|
9 | | -The **Advanced** tab on the **Manage stream** page shows the underlying configuration details of your stream. While Streams simplifies many configurations, it doesn't support modifying all pipelines and templates. From the **Advanced** tab, you can manually interact with the index or component templates or modify other ingest pipelines that used by the stream. |
| 9 | +The **Advanced** tab shows the underlying {{es}} configuration details and advanced configuration options for your stream. |
10 | 10 |
|
11 | | -This UI is intended for advanced users. |
| 11 | +You can use the **Advanced** tab to add [descriptions](#streams-advanced-description) or [features](#streams-advanced-features) that provide useful information to Stream's AI components. You can also [manually configure](#streams-advanced-index-config) the index or component templates or modify other ingest pipelines used by the stream. |
| 12 | + |
| 13 | +## Stream description [streams-advanced-description] |
| 14 | + |
| 15 | +Describe the data in the stream. AI features like system identification and significant events use this description when generating suggestions. |
| 16 | + |
| 17 | +## Stream feature configuration [streams-advanced-features] |
| 18 | + |
| 19 | +Streams analyzes your data and identifies features. Features are a way to classify some of the data you have in your stream. |
| 20 | + |
| 21 | +Each feature has a natural language description and an optional filter which points to a subset of your data. |
| 22 | + |
| 23 | +For example, in a stream of Kubernetes logs, the feature identification process would be able to identify that you have data from "nginx" which can be found by filtering for `WHERE service.name==nginx`. It would also include a description defining nginx. |
| 24 | + |
| 25 | +Features provide useful information for AI processes, such as significant events, and are used as the foundation for them. |
| 26 | + |
| 27 | +## Index configuration [streams-advanced-index-config] |
| 28 | + |
| 29 | +:::{note} |
| 30 | +Processing and schema changes should typically be done through the Streams interface, and none of these configuration processes are required. This feature mainly exists to help advanced users maintain familiar workflows. |
| 31 | +::: |
| 32 | + |
| 33 | +For classic streams, you can manually configure: |
| 34 | + |
| 35 | +- [Index templates](../../../../manage-data/data-store/templates.md#index-templates) |
| 36 | +- [Component templates](../../../../manage-data/data-store/templates.md#component-templates) |
| 37 | +- [Pipelines](../../../../manage-data/ingest/transform-enrich.md) |
| 38 | +- [Data streams](../../../../manage-data/data-store/data-streams.md). |
| 39 | + |
| 40 | +For both wired ({applies_to}`stack: preview 9.2`) and classic streams, you can manually configure: |
| 41 | + |
| 42 | +- **Shards:** Control how the index is split across nodes. More shards can improve parallelism but may increase overhead. |
| 43 | +- **Replicas:** Define how many copies of the data exist. More replicas improve resilience and read performance but increase storage usage. |
| 44 | +- **Refresh interval:** Control how frequently new data becomes visible for search. A longer interval reduces resource usage; a short one makes data searchable sooner. |
0 commit comments