zuston commented on issue #2591:
URL: https://github.com/apache/uniffle/issues/2591#issuecomment-3256922460
And this feature could use the grpc since that is not heavy data transfer.
The proto definition will be like this:
```
message ReportLocalReadPlanRequest {
string appId = 1;
int32 shuffleId = 2;
int32 partitionId = 3;
int32 partitionNumPerRange = 4;
int32 partitionNum = 5;
repeated LocalReadSegment segments = 6;
}
message LocalReadSegment {
int64 offset = 1;
int64 length = 2;
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]