Created
December 29, 2021 03:09
-
-
Save tylertreat/ec2852d1968abdf9c74d139ac25152a8 to your computer and use it in GitHub Desktop.
Liftbridge configs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
port: 9292 | |
logging.level: debug | |
logging.recovery: true | |
#logging.raft: true | |
#logging.nats: true | |
data.dir: /tmp/liftbridge/server-a | |
nats.embedded: true | |
clustering: | |
server.id: a | |
raft.bootstrap.seed: true | |
#raft.bootstrap.peers: [a, b, c] | |
#streams: | |
#compact.enabled: true | |
#auto.pause.time: 30s | |
#retention.max.messages: 100000 | |
#segment.max.bytes: 1000000 | |
#cleaner.interval: 30s | |
#activity.stream.enabled: true | |
cursors.stream.partitions: 1 | |
#cursors.stream.auto.pause.time: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
port: 9293 | |
logging.level: debug | |
data.dir: /tmp/liftbridge/server-b | |
clustering.server.id: b | |
clustering.raft.bootstrap.peers: [a, b, c] | |
#streams: | |
#compact.enabled: true | |
#auto.pause.time: 30s | |
#retention.max.messages: 10 | |
#segment.max.bytes: 2048 | |
#cleaner.interval: 30s | |
cursors.stream.partitions: 1 | |
#activity.stream.enabled: true | |
cursors.stream.auto.pause.time: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
port: 9294 | |
logging.level: debug | |
data.dir: /tmp/liftbridge/server-c | |
clustering.server.id: c | |
clustering.raft.bootstrap.peers: [a, b, c] | |
#streams: | |
#compact.enabled: true | |
#auto.pause.time: 30s | |
#retention.max.messages: 10 | |
#segment.max.bytes: 2048 | |
#cleaner.interval: 30s | |
#activity.stream.enabled: true | |
cursors.stream.partitions: 1 | |
cursors.stream.auto.pause.time: 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment