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

[BP] Let shuffle always use get_next_message to support holey outboxes #1649

Merged
merged 2 commits into from
Jun 20, 2024

Conversation

tillrohrmann
Copy link
Contributor

Backport of #1640 to release-1.0.

WipeMode::All will now delete the whole node base dir to also
remove a cluster marker file.

This fixes restatedev#1629.
This commit changes the shuffle to always use get_next_message to read
the next outbox message. Before we were using get_message which was only
looking at a specific outbox entry. If this outbox entry was empty, then
the shuffle assumed that the outbox is empty. This did not work if the
outbox contained holes. Now with get_next_message, we always scan until
the next outbox message.

The change itself is trivial. In order to ensure that the change works,
this commit added a few unit tests to ensure the desired behaviour.

Note: With replacing get_message with get_next_message, the shuffle will
perform for every read a RocksDB scan operation. This is highly inefficient
and we should replace this logic with a tailing iterator.

This fixes restatedev#1639.
@tillrohrmann tillrohrmann merged commit 98d92f0 into restatedev:release-1.0 Jun 20, 2024
5 checks passed
@tillrohrmann tillrohrmann deleted the issues/1639-10 branch June 20, 2024 12:21
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.

1 participant