-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
feat: upgrade to zookeeper-less kafka #2445
Conversation
KAFKA_CONTROLLER_QUORUM_VOTERS: "1@127.0.0.1:29093" | ||
KAFKA_CONTROLLER_LISTENER_NAMES: "CONTROLLER" | ||
KAFKA_NODE_ID: "1" | ||
CLUSTER_ID: "MkU3OEVBNTcwNTJENDM2Qk" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we generate a UUID for CLUSTER_ID
value instead of hard-coding a single string for every instance?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There aren't any benefits I can think of from doing so. It's just used for cluster coordination.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can leverage this existing code if we wanted to:
head /dev/urandom | tr -dc "a-z0-9@#%^&*(-_=+)" | head -c 50 | sed -e 's/[\/&]/\\&/g' |
This reverts commit a177142.
We've upgraded to zookeeper-less kafka upstream: getsentry/sentry#55742
This simplifies the self-hosted environment and makes things leaner with less moving parts.