-
Notifications
You must be signed in to change notification settings - Fork 313
Description
Add documentation for the flag in content/influxdb3/{enterprise,core}/reference/.
You can configure the following:
Maximum number of table indices to cache in
memory. Set to 0 for unlimited cache size. [default: 100]
[env: INFLUXDB3_TABLE_INDEX_CACHE_MAX_ENTRIES=]
--table-index-cache-concurrency-limit <N>
Maximum concurrent operations between table index cache and object store.
This limits how many parallel requests can be made to object storage
when loading or updating table indices. [default: 20]
[env: INFLUXDB3_TABLE_INDEX_CACHE_CONCURRENCY_LIMIT=]```
However, this is more of a behind the scenes thing. It helps manage older snapshot/parquet files for retention purposes and to help with database startup for longer running databases.
Copilot