From 313ab56bd966fa28b6f3c3369a671777e45a6298 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=93=D1=80=D0=B8=D0=B3=D0=BE=D1=80=D0=B8=D0=B9=20=D0=A1?= =?UTF-8?q?=D0=B0=D1=84=D1=80=D0=BE=D0=BD=D0=BE=D0=B2?= Date: Mon, 27 Apr 2026 19:13:48 +0000 Subject: [PATCH] Delete config.toml --- config.toml | 59 ----------------------------------------------------- 1 file changed, 59 deletions(-) delete mode 100644 config.toml diff --git a/config.toml b/config.toml deleted file mode 100644 index 2afda77..0000000 --- a/config.toml +++ /dev/null @@ -1,59 +0,0 @@ -# -# Copyright 2026 Grigorii Safronov - # - # Licensed under the CDDL, Version 1.0 (the "License"); - # you may not use this file except in compliance with the License. - # - # You may obtain a copy of the License at - # https://opensource.org/licenses/CDDL-1.0 - # - -# Конфигурационный файл СУБД futriis - -[cluster] - name = "test_cluster" - node_ip = "192.168.0.103" # Укажите ваш реальный IP - node_port = 9876 - raft_port = 9878 - raft_data_dir = "raft_data" - bootstrap = true # Флаг для первого узла в кластере - nodes = [ # Список узлов кластера - "192.168.0.103:9878", # Текущий узел - # "192.168.0.104:9878", # Другие узлы кластера - # "192.168.0.105:9878", - ] - -[storage] - page_size_mb = 64 - max_collections = 100 - max_documents_per_collection = 1000000 - -[repl] - prompt_color = "#00bfff" - history_size = 1000 - -[log] - log_file = "futriis.log" - log_level = "debug" - -[replication] - enabled = false - master_master = false - sync_replication = false - replication_timeout_ms = 5000 - -[plugins] - enabled = false - script_dir = "plugins" - allow_list = ["print", "math", "string"] - -[compression] - enabled = true # Включить сжатие данных - algorithm = "snappy" # Алгоритм: snappy, lz4, zstd - level = 3 # Уровень сжатия (1-9, зависит от алгоритма) - min_size = 1024 # Минимальный размер документа для сжатия (байт) - -[webui] - enabled = true # Включить веб-интерфейс - port = 9080 # Порт для веб-интерфейса - theme = "dark" # Тема оформления (dark, light)