33 lines
595 B
TOML
33 lines
595 B
TOML
# /futriis/config.toml
|
|
# Конфигурационный файл СУБД futriis
|
|
|
|
[cluster]
|
|
name = "futriis-cluster"
|
|
coordinator_address = "127.0.0.1:7379"
|
|
replication_factor = 2
|
|
sync_replication = true
|
|
auto_rebalance = true
|
|
|
|
[node]
|
|
id = "node-1"
|
|
address = "127.0.0.1:7380"
|
|
data_dir = "./data"
|
|
aof_enabled = true
|
|
aof_file = "./data/futriis.aof"
|
|
|
|
[storage]
|
|
page_size = 4096
|
|
max_memory = "1GB"
|
|
eviction_policy = "noeviction"
|
|
|
|
[replication]
|
|
enabled = true
|
|
sync_mode = "full" # full, async
|
|
heartbeat_interval = 5
|
|
timeout = 30
|
|
|
|
[lua]
|
|
enabled = true
|
|
plugins_dir = "./plugins"
|
|
max_memory = "128MB"
|