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 crash in replicationCacheMaster() expecting a nullptr cached_master #896

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

guillemj
Copy link
Contributor

The replicationCacheMaster() function expects the master pointer to be non-nullptr and the cached_master to be nullptr. But if we happened to get disconnected multiple times and thus also go multiple times through replicationCreateMasterClient(), then we end up with both master and cached_master being non-nullptr, which then triggers an assertion in replicationCacheMaster() which crashes the server.

When we are recreating the master struct, mark cached_master for asynchronous freeing, and reset its pointer.

Fixes: #849

This fixes this crash for us, but then we get after a bit another apparently unrelated crash, although that might be due to the database being damaged (which was the trigger in our case) or something else. But given the amount of crash reports filed, this does not seem surprising.

The replicationCacheMaster() function expects the master pointer to be
non-nullptr and the cached_master to be nullptr. But if we happened to
get disconnected multiple times and thus also go multiple times through
replicationCreateMasterClient(), then we end up with both master and
cached_master being non-nullptr, which then triggers an assertion in
replicationCacheMaster() which crashes the server.

When we are recreating the master struct, mark cached_master for
asynchronous freeing, and reset its pointer.

Fixes: Snapchat#849
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[CRASH] The replicas are crashing after the master is restarted with replicas and multi-master enabled
1 participant