Skip to content

Commit

Permalink
Replace E-notation in prod FDB config with zeros
Browse files Browse the repository at this point in the history
It seems the operator does not handle the e notations gracefully.

Reduce memory on storage nodes to investigate sustained high memory
usage.
  • Loading branch information
masih committed Jul 17, 2023
1 parent 4142160 commit 85cf97d
Showing 1 changed file with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,11 @@ spec:
- knob_max_outstanding=256
# Increase relocation and fetch keys parallelism to speed up data distribution across the cluster.
- knob_relocation_parallelism_per_source_server=8
- knob_fetch_keys_parallelism_bytes=5e6
# Defaults to 15e6
- knob_max_queue_commit_bytes=30e6
# Defaults to 1500e6
- knob_storage_hard_limit_bytes=3000e6
# Defaults to 1000e6
- knob_target_bytes_per_storage_server=2000e6
# Defaults to 750e6
- knob_target_bytes_per_storage_server_batch=1500e6
- knob_fetch_keys_parallelism_bytes=5000000
- knob_max_queue_commit_bytes=30000000
- knob_storage_hard_limit_bytes=3000000000
- knob_target_bytes_per_storage_server=2000000000
- knob_target_bytes_per_storage_server_batch=1500000000
- knob-max-generations-override=200
podTemplate:
spec:
Expand Down Expand Up @@ -85,13 +81,17 @@ spec:
storage: 2Ti
storage:
customParameters:
- memory=29GiB
- memory=25GiB
- cache-memory=2GiB
# Increase the default max outstanding IO operations (64), used in AIO with O_DIRECT interface.
- knob_max_outstanding=256
# Increase relocation and fetch keys parallelism to speed up data distribution across the cluster.
- knob_relocation_parallelism_per_source_server=8
- knob_fetch_keys_parallelism_bytes=5e6
- knob_fetch_keys_parallelism_bytes=5000000
- knob_max_queue_commit_bytes=30000000
- knob_storage_hard_limit_bytes=3000000000
- knob_target_bytes_per_storage_server=2000000000
- knob_target_bytes_per_storage_server_batch=1500000000
- knob_rocksdb_block_size=65536
- knob_rocksdb_block_cache_size=4294967296
- knob_rocksdb_compaction_readahead_size=65536
Expand Down

0 comments on commit 85cf97d

Please sign in to comment.