You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Xintong Song (Jira)" <ji...@apache.org> on 2022/10/20 07:24:00 UTC

[jira] [Commented] (FLINK-29339) JobMasterPartitionTrackerImpl#requestShuffleDescriptorsFromResourceManager blocks main thread

    [ https://issues.apache.org/jira/browse/FLINK-29339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17620842#comment-17620842 ] 

Xintong Song commented on FLINK-29339:
--------------------------------------

Any updates on this? [~xuannan][~gaoyunhaii]

> JobMasterPartitionTrackerImpl#requestShuffleDescriptorsFromResourceManager blocks main thread
> ---------------------------------------------------------------------------------------------
>
>                 Key: FLINK-29339
>                 URL: https://issues.apache.org/jira/browse/FLINK-29339
>             Project: Flink
>          Issue Type: Bug
>          Components: Runtime / Coordination
>    Affects Versions: 1.16.0, 1.17.0
>            Reporter: Chesnay Schepler
>            Assignee: Xuannan Su
>            Priority: Critical
>              Labels: pull-request-available
>             Fix For: 1.17.0, 1.16.1
>
>
> {code:java}
> private List<ShuffleDescriptor> requestShuffleDescriptorsFromResourceManager(
>         IntermediateDataSetID intermediateDataSetID) {
>     Preconditions.checkNotNull(
>             resourceManagerGateway, "JobMaster is not connected to ResourceManager");
>     try {
>         return this.resourceManagerGateway
>                 .getClusterPartitionsShuffleDescriptors(intermediateDataSetID)
>                 .get(); // <-- there's your problem
>     } catch (Throwable e) {
>         throw new RuntimeException(
>                 String.format(
>                         "Failed to get shuffle descriptors of intermediate dataset %s from ResourceManager",
>                         intermediateDataSetID),
>                 e);
>     }
> }
> {code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)