-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-16587] [CORE] The annotation for the abstract Class 'BlockTransferMessage' missing several kind of messages. #14232
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -35,6 +35,9 @@ | |
| * shuffle service. It returns a StreamHandle. | ||
| * - UploadBlock is only handled by the NettyBlockTransferService. | ||
| * - RegisterExecutor is only handled by the external shuffle service. | ||
| * - StreamHandle is only handled by the OneForOneBlockFetcher. | ||
| * - RegisterDriver is only handled by the MesosExternalShuffleService. | ||
| * - HearBeat is only handled by the MesosExternalShuffleService. | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. HeartBeat. (This could also be an HTML list.) I am not sure these docs match the others. They're describing what's handled by the Netty service for external shuffle block handler, not just a class where they're used.
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is it right to modify them like below ? StreamHandle is only handled by the external shuffle service
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Best to ask the author where possible; use Blame to see who wrote these parts. @aarondav ? |
||
| */ | ||
| public abstract class BlockTransferMessage implements Encodable { | ||
| protected abstract Type type(); | ||
|
|
||
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.
This is already covered in the documentation of
OpenBlock, sinceStreamHandleis the reply toOpenBlock.