-
Notifications
You must be signed in to change notification settings - Fork 328
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 the error when multiple subtasks fetch the same data #2322
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hekaisheng
added
type: bug
Something isn't working
to be backported
Indicate that the PR need to be backported to stable branch
mod: storage
labels
Aug 10, 2021
hekaisheng
force-pushed
the
bugfix/transfer
branch
2 times, most recently
from
August 11, 2021 03:43
8ed7a5f
to
0399efc
Compare
hekaisheng
force-pushed
the
bugfix/transfer
branch
2 times, most recently
from
August 11, 2021 10:04
df8811a
to
7539043
Compare
… id" This reverts commit 83c5233
hekaisheng
force-pushed
the
bugfix/transfer
branch
from
August 12, 2021 06:09
00a6fa2
to
c9574b7
Compare
wjsi
requested changes
Aug 12, 2021
hekaisheng
force-pushed
the
bugfix/transfer
branch
5 times, most recently
from
August 12, 2021 17:00
af3c1f4
to
8a52695
Compare
hekaisheng
force-pushed
the
bugfix/transfer
branch
from
August 13, 2021 02:36
8a52695
to
b8606db
Compare
wjsi
approved these changes
Aug 13, 2021
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.
LGTM
qinxuye
approved these changes
Aug 13, 2021
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.
LGTM
qinxuye
pushed a commit
that referenced
this pull request
Aug 16, 2021
qinxuye
added
backported already
PR has been backported
and removed
to be backported
Indicate that the PR need to be backported to stable branch
labels
Aug 16, 2021
chaokunyang
pushed a commit
to chaokunyang/mars
that referenced
this pull request
Aug 16, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What do these changes do?
When multiple subtasks fetch the same key at the same time, the transfer task may fails. In this PR,
ReceiverManagerActor
holds a dict to record the data keys being fetched and create events to mark if transfer tasks are finished,SenderManagerActor
will wait those events to make sure all data keys are sent.Related issue number
Fixes #2321