Configurations
This document provides instructions for loading configuration file for Infinity and descriptions of each configuration entry.
Load configuration file
- Docker
- DEB/RPM
- Embedded Infinity
To load a configuration file when you start up Infinity using Docker:
-
Mount the directory for the configuration file to inside the Docker container.
-
When running Docker, specify the configuration file path using the
-f
option. For example:docker run -d --name infinity -v /var/infinity/:/var/infinity --ulimit nofile=500000:500000 --network=host infiniflow/infinity:nightly -f /var/infinity/infinity_conf.toml
If you start up Infinity from DEB or RPM, the configuration file will be in the /usr/etc
directory. When the Infinity service starts, it will load this configuration file.
Infinity embedded does not have an explicit configuration file. Its configuration file should meet the following requirements:
- It is in the local folder where Infinity embedded is opened (the path that you specify when calling
connect()
), for example/var/infinity/
: - Its name must exactly matche infinity_conf.toml.
A configuration file example
[general]
# Infinity server version
version = "0.5.0"
# Timezone
time_zone = "utc-8"
# The number of worker threads. Defaults to the number of CPU cores.
# Range: [1, 16384]
cpu_limit = 8
# Network configuration
[network]
# IP address of the Infinity server
server_address = "0.0.0.0"
# Port of the Postgres server
postgres_port = 5432
# Port of the HTTP server
http_port = 23820
# Port of the Python SDK server
client_port = 23817
# The maximum number of connections. Defaults to 256.
# Range: [1, 65536]
connection_pool_size = 128
# Log configuration
[log]
# Filename of the log files.
log_filename = "infinity.log"
# Directory for the log files.
log_dir = "/var/infinity/log"
# Controls whether to print the log to the standard output.
# Range: {true|false}
log_to_stdout = false
# The maximum size of each log file. Defaults to "1GB".
# Range: at least 1GB
log_file_max_size = "10GB"
# The number of rotating log files. Defaults to 8
# Range: [1, 655636]
log_file_rotate_count = 10
# The log output level. Defaults to "info".
# Range: {"trace"/"debug"/"info"/"warning"/"error"/"critical"}
log_level = "info"
# Storage configuration
[storage]
# The working directory of the persistence manager:
# - Holds the data that Infintiy saves when using the local disk for storage.
# - Caches the accessed object files when using MinIO/S3 for object storage.
persistence_dir = "/var/infinity/persistence"
# Garbage collection period
# Defined as "number + unit of time":
# - s for seconds (e.g., "60s" for 60 seconds),
# - m for minutes (e.g., "60m" for 60 minutes),
# - h for hours (e.g., "1h" for one hour).
# To disable a specific periodic task, set the corresponding variable to "0s"
# Interval between index optimization tasks
# Range: ["10s", "720h"]
optimize_interval = "10s"
# Interval between cleanup tasks
# Range: ["10s", "720h"]
cleanup_interval = "60s"
# Interval between compaction tasks
# Range: ["10s", "720h"]
compact_interval = "120s"
# The threshold for flushing an in-memory index to disk.
# When the number of rows in the index exceeds this threshold,
# the system performs a flush operation on that index.
# Range: [8192, 8388608]
mem_index_capacity = 1048576
# Storage type. Defaults to "local".
# Range: {"local"|"minio"}
storage_type = "local"
# Object storage configuration
[storage.object_storage]
# URL of the object storage server
url = "127.0.0.1:9000"
# The name of bucket where the data is stored
bucket_name = "infinity"
# Access key of object storage server
access_key = "minioadmin"
# Secret key of object storage server
secret_key = "minioadmin"
# Whether to enable HTTP or HTTPS protocol
enable_https = false
# Buffer manager configuration
[buffer]
# The amount of memory occupied by the buffer manager. Defaults to "8GB".
buffer_manager_size = "4GB"
# The number of LRU caches in the buffer manager.
# Range: [1, 100]
lru_num = 7
# When the required memory size exceeds the free memory in the buffer manager,
# the buffer manager dumps some of the its in-use memory to a temporary storage.
* `temp_dir` specifies the path to this temporary storage.
temp_dir = "/var/infinity/tmp"
# The global memory index threshold for triggering a flush to disk
# When the memory used by all existing in-memory indices in the system exceeds this threshold,
# the system will perform a flush operation on all in-memory indices.
memindex_memory_quota = "1GB"
# If cache the query result.
# If same query is sent to Infinity, Infinity will check and return the cached result.
result_cache = "on"
# Cache query capacity
cache_result_capacity = 100
# WAL configuration
[wal]
# The directory containing the WAL files
wal_dir = "/var/infinity/wal"
# Interval between full checkpoints
# Range: ["0s", "720h"]
full_checkpoint_interval = "86400s"
# The interval between delta (incremental) checkpoints
# Range: ["0s", "720h"]
delta_checkpoint_interval = "60s"
# Size threshold for triggering a compaction on a WAL file
# When the size of a WAL file exceeds this threshold, the system will perform compaction.
# Range: ["1KB", "1024GB"]
wal_compact_threshold = "1GB"
# Controls how the WAL manager flushes its logs to disk
# - "only_write": (Default) Writes logs but leaves it to the OS to determine when to flush them.
# - "flush_at_once": Writes and flushes logs upon each commit.
# - "flush_per_second": Writes logs after each commit and flushes them to disk once per second.
wal_flush = "only_write"
[resource]
# Directory for Infinity's resource files, including the dictionary files used by the analyzer
resource_dir = "/var/infinity/resource"