Skip to content
This repository has been archived by the owner on Jan 29, 2025. It is now read-only.

Adding an option for compaction strategy #587

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/biggraphite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: [ '3.x', 'pypy-3.6' ]
python-version: [ '3.9', 'pypy-3.6' ]

env:
JAVA: false # Default
Expand Down
3 changes: 2 additions & 1 deletion CONFIGURATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ This is the main backend for BigGraphite and the one that should be used in prod
- ```BG_CASSANDRA_META_WRITE_CONSISTENCY```: Data write consistency (default: ```ONE```)
- ```BG_CASSANDRA_REPLICA_ID```: Identifier of this replica (default: ```0```)
- ```BG_CASSANDRA_READ_ON_SAMPLING_RATE```: Sampling rate to update metadata field ```read_on```. Setting to ```0``` disables updating ````read-on```` (default: ```0.1```)
- ```BG_CREATION_RATE_LIMIT```: Maximun number of new metadata to create per second (default: ```300```)
- ```BG_CREATION_RATE_LIMIT```: Maximum number of new metadata to create per second (default: ```300```)
- ```BG_CASSANDRA_COMPACTION_STRATEGY```: Sets compaction strategy decision, if not set, it will be set to```TimeWindowCompactionStrategy``` above cassandra 3.9 otherwise ```DateTieredCompactionStrategy``` (default: ```None```)

### SSL options

Expand Down
Loading