Skip to content
Snippets Groups Projects
Commit 4b6650ce authored by Artur Sabirov's avatar Artur Sabirov
Browse files

fix: remove config file parameters

Address changes from picodata@c2ae3ade

Changes:

* remove `instance.memtx.checkpoint_count`
* remove `instance.memtx.checkpoint_interval`
* remove `instance.iproto.max_concurrent_messages`
parent 3e5c02a3
No related branches found
No related tags found
No related merge requests found
......@@ -209,18 +209,11 @@ fullnameOverride: ''
memtx:
# Объем памяти в байтах, выделяемый для хранения кортежей
memory: 128M
# Максимальное количество снапшотов, хранящихся в директории memtx_dir
checkpoint_count: 2
# Период активности службы создания снапшотов (checkpoint daemon) в секундах
checkpoint_interval: 3600.0
vinyl:
# Максимальное количество оперативной памяти в байтах, которое использует движок хранения vinyl.
memory: 67108864
# Размер кэша в байтах для движка хранения vinyl.
cache: 33554432
iproto:
# Максимальное количество сообщений, которое Picodata обрабатывает параллельно.
max_concurrent_messages: 76
# Модуль Pgproto реализует протокол PostgreSQL
pg:
# Признак использования протокола SSL при подключении к Pgproto.
......
......@@ -30,13 +30,9 @@ data:
format: {{ $tier_map.log.format }}
memtx:
memory: {{ $tier_map.memtx.memory }}
checkpoint_count: {{ $tier_map.memtx.checkpoint_count }}
checkpoint_interval: {{ $tier_map.memtx.checkpoint_interval }}
vinyl:
memory: {{ $tier_map.vinyl.memory }}
cache: {{ $tier_map.vinyl.cache }}
iproto:
max_concurrent_messages: {{ $tier_map.iproto.max_concurrent_messages }}
pg:
listen: {{ $tier_map.pg.listen | default "null" }}
ssl: {{ $tier_map.pg.ssl }}
......
......@@ -41,13 +41,9 @@ picodata:
shredding: false
memtx:
memory: 128M
checkpoint_count: 2
checkpoint_interval: 3600.0
vinyl:
memory: 64M
cache: 32M
iproto:
max_concurrent_messages: 76
pg:
ssl: false
log:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment