Expand description
This module defines the structure of the configuration file risingwave.toml
.
RwConfig
corresponds to the whole config file and each other config struct corresponds to a
section in risingwave.toml
.
Modules§
Macros§
Structs§
- Batch
Config - The section
[batch]
inrisingwave.toml
. - Batch
Developer Config - The subsections
[batch.developer]
. - Cache
Config - the section
[storage.cache]
inrisingwave.toml
. - Cache
Refill Config - Compaction
Config - File
Cache Config - The subsection
[storage.data_file_cache]
and[storage.meta_file_cache]
inrisingwave.toml
. - Frontend
Config - Heap
Profiling Config - Meta
Config - The section
[meta]
inrisingwave.toml
. - Meta
Developer Config - The subsections
[meta.developer]
. - Meta
Store Config - Note: only applies to meta store backends other than
SQLite
. - NoOverride
- For non-user-facing components where the CLI arguments do not override the config file.
- Object
Store Config - The subsections
[storage.object_store]
. - Object
Store Retry Config - RpcClient
Config - RwConfig
RwConfig
corresponds to the whole config filerisingwave.toml
. Each field corresponds to a section.- S3Object
Store Config - The subsections
[storage.object_store.s3]
. - S3Object
Store Developer Config - The subsections
[storage.object_store.s3.developer]
. - Server
Config - The section
[server]
inrisingwave.toml
. - Storage
Config - The section
[storage]
inrisingwave.toml
. - Storage
Memory Config - Streaming
Config - The section
[streaming]
inrisingwave.toml
. - Streaming
Developer Config - The subsections
[streaming.developer]
. - System
Config - The section
[system]
inrisingwave.toml
. All these fields are used to initialize the system parameters persisted in Meta store. Most fields are for testing purpose only and should not be documented. - UdfConfig
- Unrecognized
- Unrecognized fields in a config section. Generic over the config section type to provide better error messages.
Enums§
- Async
Stack Trace Option - Cache
Eviction Config - the section
[storage.cache.eviction]
inrisingwave.toml
. - Compactor
Mode - Default
Parallelism - Eviction
Config - Meta
Backend - Metric
Level
Constants§
- MAX_
BLOCK_ CACHE_ SHARD_ BITS - MAX_
CONNECTION_ WINDOW_ SIZE - Use the maximum value for HTTP/2 connection window size to avoid deadlock among multiplexed streams on the same connection.
- MAX_
META_ CACHE_ SHARD_ BITS - MIN_
BUFFER_ SIZE_ PER_ SHARD - STREAM_
WINDOW_ SIZE - Use a large value for HTTP/2 stream window size to improve the performance of remote exchange, as we don’t rely on this for back-pressure.
Traits§
Functions§
Derive Macros§
- Override
Config - Sections in the configuration file can use
#[derive(OverrideConfig)]
to generate the implementation of overwriting configs from the file.