Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: set replication factor for kafka stability #1606

Merged
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
5 changes: 3 additions & 2 deletions charts/sentry/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1806,7 +1806,7 @@ openai: {}
# existingSecretKey: "" # by default "api-token"

nginx:
enabled: true # true, if Safari compatibility is needed
enabled: true # true, if Safari compatibility is needed
containerPort: 8080
existingServerBlockConfigmap: '{{ template "sentry.fullname" . }}'
resources: {}
Expand Down Expand Up @@ -2016,7 +2016,8 @@ kafka:
enabled: true
provisioning:
## Increasing the replicationFactor enhances data reliability during Kafka pod failures by replicating data across multiple brokers.
# replicationFactor: 1
# Note that existing topics will remain with replicationFactor: 1 when updated.
replicationFactor: 3
enabled: true
# Topic list is based on files below.
# - https://github.com/getsentry/snuba/blob/master/snuba/utils/streams/topics.py
Expand Down
Loading