Skip to content

Commit

Permalink
[FLINK-35992][runtime] Close the TieredStorageMasterClient when Netty…
Browse files Browse the repository at this point in the history
…ShuffleMaster close

Signed-off-by: Xu Huang <[email protected]>
  • Loading branch information
Xu Huang committed Aug 7, 2024
1 parent 68d8174 commit 96bb5ce
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -219,4 +219,11 @@ public void snapshotState(
public void notifyPartitionRecoveryStarted(JobID jobId) {
checkNotNull(jobShuffleContexts.get(jobId)).notifyPartitionRecoveryStarted();
}

@Override
public void close() throws Exception {
if (tieredInternalShuffleMaster != null) {
tieredInternalShuffleMaster.close();
}
}
}

0 comments on commit 96bb5ce

Please sign in to comment.