2021-05-21 13:47:08 +00:00
logger :
2021-10-11 01:11:36 +00:00
level: debug # logger level : one of "debug", "info" (default), "warn", "error", "dpanic", "panic", "fatal"
2024-02-08 14:04:58 +00:00
destination: journald # logger destination : one of "stdout" (default), "journald"
2021-06-01 18:24:01 +00:00
2023-11-21 12:07:37 +00:00
systemdnotify :
enabled : true
2022-07-13 09:26:40 +00:00
pprof :
2022-07-13 09:17:37 +00:00
enabled : true
2022-07-13 08:58:10 +00:00
address : localhost:6060 # endpoint for Node profiling
2021-10-04 17:04:25 +00:00
shutdown_timeout : 15s # timeout for profiling HTTP server graceful shutdown
2023-02-01 07:21:17 +00:00
block_rate: 10000 # sampling rate : an average of one blocking event per rate nanoseconds spent blocked is reported; "1" reports every blocking event; "0" disables profiler
mutex_rate: 10000 # sampling rate : on average 1/rate events are reported; "0" disables profiler
2021-06-01 18:24:01 +00:00
2022-07-13 09:26:40 +00:00
prometheus :
2022-07-13 09:17:37 +00:00
enabled : true
2022-07-13 08:58:10 +00:00
address : localhost:9090 # endpoint for Node metrics
2021-10-08 07:47:50 +00:00
shutdown_timeout : 15s # timeout for metrics HTTP server graceful shutdown
2021-06-01 18:24:01 +00:00
2021-06-01 17:42:57 +00:00
node :
2021-10-04 17:04:25 +00:00
key : ./wallet.key # path to a binary private key
2021-05-31 08:55:38 +00:00
wallet :
2021-10-04 17:04:25 +00:00
path : "./wallet.json" # path to a NEO wallet; ignored if key is presented
address : "NcpJzXcSDrh5CCizf4K9Ro6w4t59J5LKzz" # address of a NEO account in the wallet; ignored if key is presented
password : "password" # password for a NEO account in the wallet; ignored if key is presented
addresses : # list of addresses announced by Storage node in the Network map
2022-12-23 17:35:35 +00:00
- s01.frostfs.devenv:8080
- /dns4/s02.frostfs.devenv/tcp/8081
2021-06-24 12:41:19 +00:00
- grpc://127.0.0.1:8082
- grpcs://localhost:8083
2021-06-01 17:42:57 +00:00
attribute_0 : "Price:11"
attribute_1 : UN-LOCODE:RU MSK
2021-10-04 17:04:25 +00:00
relay : true # start Storage node in relay mode without bootstrapping into the Network map
2022-03-21 12:22:07 +00:00
persistent_sessions :
2022-09-13 08:13:54 +00:00
path: /sessions # path to persistent session tokens file of Storage node (default : in-memory sessions)
2022-03-21 12:22:07 +00:00
persistent_state :
path : /state # path to persistent state file of Storage node
2022-02-17 12:42:32 +00:00
notification :
2021-03-01 11:55:03 +00:00
enabled : true # turn on object notification service
endpoint : "tls://localhost:4222" # notification server endpoint
timeout : "6s" # timeout for object notification client connection
default_topic : "topic" # default topic for object notifications if not found in object's meta
certificate : "/cert/path" # path to TLS certificate
key : "/key/path" # path to TLS key
ca : "/ca/path" # path to optional CA certificate
2021-06-01 17:42:57 +00:00
2021-06-01 18:50:01 +00:00
grpc :
2022-12-23 17:35:35 +00:00
- endpoint : s01.frostfs.devenv:8080 # endpoint for gRPC server
2021-06-22 17:25:18 +00:00
tls :
2021-11-30 10:07:46 +00:00
enabled : true # use TLS for a gRPC connection (min version is TLS 1.2)
2021-10-04 17:04:25 +00:00
certificate : /path/to/cert # path to TLS certificate
key : /path/to/key # path to TLS key
2021-06-22 17:25:18 +00:00
2022-12-23 17:35:35 +00:00
- endpoint : s02.frostfs.devenv:8080 # endpoint for gRPC server
2021-06-22 17:25:18 +00:00
tls :
2021-10-04 17:04:25 +00:00
enabled : false # use TLS for a gRPC connection
2022-12-23 17:35:35 +00:00
- endpoint : s03.frostfs.devenv:8080
2021-11-30 10:07:46 +00:00
tls :
enabled : true
use_insecure_crypto : true # allow using insecure ciphers with TLS 1.2
2021-06-01 18:50:01 +00:00
2022-07-19 08:03:13 +00:00
tree :
2022-07-26 09:47:19 +00:00
enabled : true
cache_size : 15
replication_worker_count : 32
replication_channel_capacity : 32
2022-12-14 16:28:44 +00:00
replication_timeout : 5s
2022-12-10 10:59:18 +00:00
sync_interval : 1h
2023-07-12 12:37:35 +00:00
authorized_keys : # list of hex-encoded public keys that have rights to use the Tree Service with frostfs-cli
- 0397d207ea77909f7d66fa6f36d08daae22ace672be7ea4f53513484dde8a142a0
- 02053819235c20d784132deba10bb3061629e3a5c819a039ef091841d9d35dad56
2022-07-19 08:03:13 +00:00
2021-06-01 13:28:30 +00:00
control :
2021-10-04 17:04:25 +00:00
authorized_keys : # list of hex-encoded public keys that have rights to use the Control Service
2021-06-01 13:28:30 +00:00
- 035839e45d472a3b7769a2a1bd7d54c4ccd4943c3b40f547870e83a8fcbfb3ce11
- 028f42cfcb74499d7b15b35d9bff260a1c8d27de4f446a627406a382d8961486d6
grpc :
2022-07-13 08:58:10 +00:00
endpoint : localhost:8090 # endpoint that is listened by the Control Service
2021-06-01 13:28:30 +00:00
2021-10-04 17:04:25 +00:00
contracts : # side chain NEOFS contract script hashes; optional, override values retrieved from NNS contract
2021-06-01 12:51:28 +00:00
balance : 5263abba1abedbf79bb57f3e40b50b4425d2d6cd
container : 5d084790d7aa36cea7b53fe897380dab11d2cd3c
netmap : 0cce9e948dca43a6b592efe59ddb4ecb89bdd9ca
2021-08-24 12:59:28 +00:00
proxy : ad7c6b55b737b696e5c82c85445040964a03e97f
2021-06-01 12:51:28 +00:00
2021-06-01 14:33:45 +00:00
morph :
2021-10-04 17:04:25 +00:00
dial_timeout : 30s # timeout for side chain NEO RPC client connection
2022-08-16 11:59:30 +00:00
cache_ttl : 15s # Sidechain cache TTL value (min interval between similar calls). Negative value disables caching.
2022-10-12 16:47:33 +00:00
# Default value: block time. It is recommended to have this value less or equal to block time.
# Cached entities: containers, container lists, eACL tables.
switch_interval : 3m # interval b/w RPC switch attempts if the node is connected not to the highest priority node
2021-10-04 17:04:25 +00:00
rpc_endpoint : # side chain NEO RPC endpoints; are shuffled and used one by one until the first success
2023-02-03 14:59:15 +00:00
- address : wss://rpc1.morph.frostfs.info:40341/ws
2022-08-02 11:31:21 +00:00
priority : 0
2023-02-03 14:59:15 +00:00
- address : wss://rpc2.morph.frostfs.info:40341/ws
2022-08-02 11:31:21 +00:00
priority : 2
2024-03-15 07:10:03 +00:00
ape_chain_cache_size : 100000
2021-06-01 14:33:45 +00:00
2021-06-02 12:20:05 +00:00
apiclient :
2023-02-03 14:59:15 +00:00
dial_timeout : 15s # timeout for FrostFS API client connection
2022-09-06 15:23:59 +00:00
stream_timeout : 20s # timeout for individual operations in a streaming RPC
2022-09-26 12:34:01 +00:00
allow_external : true # allow to fallback to addresses in `ExternalAddr` attribute
2022-12-19 15:03:48 +00:00
reconnect_timeout : 30s # time to wait before reconnecting to a failed node
2021-06-02 12:20:05 +00:00
2021-06-02 12:23:41 +00:00
policer :
2021-10-04 17:04:25 +00:00
head_timeout : 15s # timeout for the Policer HEAD remote operation
2021-06-02 12:23:41 +00:00
2021-06-02 12:26:51 +00:00
replicator :
2021-10-04 17:04:25 +00:00
put_timeout : 15s # timeout for the Replicator PUT remote operation
2022-11-12 12:23:33 +00:00
pool_size : 10 # maximum amount of concurrent replications
2021-06-02 12:26:51 +00:00
2021-06-02 12:31:29 +00:00
object :
2023-02-08 14:28:38 +00:00
delete :
tombstone_lifetime : 10 # tombstone "local" lifetime in epochs
2021-06-02 12:31:29 +00:00
put :
2023-11-21 10:20:36 +00:00
remote_pool_size : 100 # number of async workers for remote PUT operations
local_pool_size : 200 # number of async workers for local PUT operations
2023-07-28 12:44:35 +00:00
skip_session_token_issuer_verification : true # session token issuer verification will be skipped if true
2021-06-02 12:31:29 +00:00
2021-06-01 18:24:01 +00:00
storage :
2021-11-12 10:44:59 +00:00
# note: shard configuration can be omitted for relay node (see `node.relay`)
2021-10-08 13:25:56 +00:00
shard_pool_size : 15 # size of per-shard worker pools used for PUT operations
2022-02-01 08:15:54 +00:00
shard_ro_error_threshold: 100 # amount of errors to occur before shard is made read-only (default : 0 , ignore errors)
2023-10-03 08:58:35 +00:00
rebuild_workers_count : 1000 # count of rebuild storage concurrent workers
2021-10-18 13:38:04 +00:00
2021-06-01 18:24:01 +00:00
shard :
2022-07-13 08:52:53 +00:00
default : # section with the default shard parameters
resync_metabase : true # sync metabase with blobstor on start, expensive, leave false until complete understanding
writecache :
enabled : true
2022-07-14 11:49:42 +00:00
small_object_size : 16k # size threshold for "small" objects which are cached in key-value DB, not in FS, bytes
2022-07-13 08:52:53 +00:00
max_object_size : 134217728 # size threshold for "big" objects which bypass write-cache and go to the storage directly, bytes
2023-11-21 10:20:36 +00:00
flush_worker_count : 30 # number of write-cache flusher threads
2022-07-13 08:52:53 +00:00
metabase :
perm: 0644 # permissions for metabase files(directories : +x for current user and group)
max_batch_size : 200
max_batch_delay : 20ms
2022-06-09 08:09:18 +00:00
pilorama :
max_batch_delay : 5ms # maximum delay for a batch of operations to be executed
max_batch_size : 100 # maximum amount of operations in a single batch
2022-07-11 12:34:17 +00:00
compress : false # turn on/off zstd(level 3) compression of stored objects
small_object_size : 100 kb # size threshold for "small" objects which are cached in key-value DB, not in FS, bytes
2022-07-13 08:52:53 +00:00
2022-07-11 12:34:17 +00:00
blobstor :
- size: 4m # approximate size limit of single blobovnicza instance, total size will be : size*width^(depth+1), bytes
perm: 0644 # permissions for blobstor files(directories : +x for current user and group)
2022-07-13 08:52:53 +00:00
depth : 1 # max depth of object tree storage in key-value DB
width : 4 # max width of object tree storage in key-value DB
opened_cache_capacity : 50 # maximum number of opened database files
2024-03-01 11:43:26 +00:00
opened_cache_ttl : 5m # ttl for opened database file
opened_cache_exp_interval : 15s # cache cleanup interval for expired blobovnicza's
2023-08-16 15:06:33 +00:00
leaf_width : 10 # max count of key-value DB on leafs of object tree storage
2022-07-11 12:34:17 +00:00
- perm: 0644 # permissions for blobstor files(directories : +x for current user and group)
depth : 5 # max depth of object tree storage in FS
2022-07-13 08:52:53 +00:00
gc :
remover_batch_size : 200 # number of objects to be removed by the garbage collector
remover_sleep_interval : 5m # frequency of the garbage collector invocation
2021-06-01 18:24:01 +00:00
0 :
2022-10-14 10:08:50 +00:00
mode : read-only # mode of the shard, must be one of the :
# read-write (default)
# read-only
# degraded
# degraded-read-only
# disabled (do not work with the shard, allows to not remove it from the config)
2021-12-27 12:03:24 +00:00
resync_metabase : false # sync metabase with blobstor on start, expensive, leave false until complete understanding
2024-03-05 12:39:50 +00:00
resync_metabase_worker_count : 100
2021-09-13 13:58:37 +00:00
2021-06-01 18:24:01 +00:00
writecache :
2022-01-27 11:30:19 +00:00
enabled : false
2022-10-28 10:09:38 +00:00
no_sync : true
2021-10-04 17:04:25 +00:00
path : tmp/0/cache # write-cache root directory
2021-10-18 14:29:30 +00:00
capacity : 3221225472 # approximate write-cache total size, bytes
2021-06-01 18:24:01 +00:00
metabase :
2021-10-04 17:04:25 +00:00
path : tmp/0/meta # metabase path
2022-06-15 06:59:51 +00:00
max_batch_size : 100
max_batch_delay : 10ms
2021-06-01 18:24:01 +00:00
2022-07-11 12:34:17 +00:00
compress : true # turn on/off zstd(level 3) compression of stored objects
compression_exclude_content_types :
- audio/*
- video/*
2023-10-31 11:45:22 +00:00
compression_estimate_compressibility : true
compression_estimate_compressibility_threshold : 0.7
2022-07-11 12:34:17 +00:00
2021-06-01 18:24:01 +00:00
blobstor :
2022-07-11 12:34:17 +00:00
- type : blobovnicza
path : tmp/0/blob/blobovnicza
2023-09-22 14:08:48 +00:00
init_worker_count : 10 #count of workers to initialize blobovniczas
2023-11-27 13:01:48 +00:00
init_in_advance : true
2024-03-04 15:01:39 +00:00
rebuild_drop_timeout : 30s # timeout before drop single blobovnicza
2024-05-15 06:45:31 +00:00
opened_cache_ttl : 1m
opened_cache_exp_interval : 30s
2022-07-11 12:34:17 +00:00
- type : fstree
path : tmp/0/blob # blobstor path
2021-06-01 18:24:01 +00:00
2022-06-09 08:09:18 +00:00
pilorama :
path : tmp/0/blob/pilorama.db # path to the pilorama database. If omitted, `pilorama.db` file is created blobstor.path
max_batch_delay : 10ms
max_batch_size : 200
2021-06-01 18:24:01 +00:00
gc :
2021-10-04 17:04:25 +00:00
remover_batch_size : 150 # number of objects to be removed by the garbage collector
remover_sleep_interval : 2m # frequency of the garbage collector invocation
2023-03-17 08:06:15 +00:00
expired_collector_batch_size : 1500 # number of objects to be marked expired by the garbage collector
2023-11-21 10:20:36 +00:00
expired_collector_worker_count : 15 # number of concurrent workers collecting expired objects by the garbage collector
2021-06-01 18:24:01 +00:00
1 :
writecache :
2021-10-04 17:04:25 +00:00
path : tmp/1/cache # write-cache root directory
2022-07-14 11:49:42 +00:00
capacity : 4 G # approximate write-cache total size, bytes
2021-06-01 18:24:01 +00:00
metabase :
2021-10-04 17:04:25 +00:00
path : tmp/1/meta # metabase path
2021-06-01 18:24:01 +00:00
blobstor :
2022-07-11 12:34:17 +00:00
- type : blobovnicza
path : tmp/1/blob/blobovnicza
- type : fstree
path : tmp/1/blob # blobstor path
2022-10-28 10:00:11 +00:00
no_sync : true
2022-06-09 08:09:18 +00:00
pilorama :
path : tmp/1/blob/pilorama.db
no_sync : true # USE WITH CAUTION. Return to user before pages have been persisted.
perm : 0644 # permission to use for the database file and intermediate directories
2023-03-13 11:01:43 +00:00
tracing :
enabled : true
exporter : "otlp_grpc"
endpoint : "localhost"
2023-07-25 07:07:38 +00:00
runtime :
soft_memory_limit : 1gb