-
-
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
Migrate to zookeeper-less kafka #3263
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. Additional details and impacted files@@ Coverage Diff @@
## master #3263 +/- ##
=======================================
Coverage 99.01% 99.01%
=======================================
Files 3 3
Lines 203 203
=======================================
Hits 201 201
Misses 2 2 ☔ View full report in Codecov by Sentry. |
install/turn-things-off.sh
Outdated
@@ -6,6 +6,10 @@ if [[ -n "$MINIMIZE_DOWNTIME" ]]; then | |||
else | |||
# Clean up old stuff and ensure nothing is working while we install/update | |||
$dc down -t $STOP_TIMEOUT --rmi local --remove-orphans | |||
# TODO(getsentry/self-hosted#2489) | |||
if docker volume ls | grep -qw sentry-zookeeper; then | |||
docker volume rm sentry-zookeeper |
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.
Well, I love this that said if the upgrade fails for some reason you have now lost data?
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.
Moved this removal to the end of the installation then to ensure it will only run if the upgrade succeeds.
I just tested this upgrade on our dogfood instance, and it seems to be running successfully |
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.
🚀
follow up to #2445, which was reverted since it broke existing installs