Skip to content

Commit

Permalink
[CELEBORN-1720][FOLLOWUP] Fix compilation error of CelebornTezReader …
Browse files Browse the repository at this point in the history
…for ShuffleClient#readPartition

### What changes were proposed in this pull request?

Fix compilation error of `CelebornTezReader` for `ShuffleClient#readPartition`.

### Why are the changes needed?

There is a compilation error in `CelebornTezReader` for `ShuffleClient#readPartition`, which is as follows:

```
Error:  /home/runner/work/celeborn/celeborn/client-tez/tez/src/main/java/org/apache/celeborn/client/CelebornTezReader.java:57:21:  error: no suitable method found for readPartition(int,int,int,int,int,MetricsCallback)
```

### Does this PR introduce _any_ user-facing change?

No.

### How was this patch tested?

CI.

Closes #3073 from SteNicholas/CELEBORN-1720.

Authored-by: SteNicholas <[email protected]>
Signed-off-by: mingji <[email protected]>
  • Loading branch information
SteNicholas authored and FMX committed Jan 20, 2025
1 parent f2751c2 commit 6bd0cfe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public void incReadTime(long time) {}
};
celebornInputStream =
shuffleClient.readPartition(
shuffleId, partitionId, attemptNumber, 0, Integer.MAX_VALUE, metricsCallback);
shuffleId, partitionId, attemptNumber, 0, 0, Integer.MAX_VALUE, metricsCallback);
}

public byte[] getShuffleBlock() throws IOException {
Expand Down

0 comments on commit 6bd0cfe

Please sign in to comment.