[ https://issues.apache.org/jira/browse/FLINK-4449?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15434857#comment-15434857 ]
ASF GitHub Bot commented on FLINK-4449: --------------------------------------- Github user tillrohrmann commented on a diff in the pull request: https://github.com/apache/flink/pull/2410#discussion_r76048378 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/rpc/resourcemanager/ResourceManagerToTaskExecutorHeartbeatManager.java --- @@ -0,0 +1,177 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.flink.runtime.rpc.resourcemanager; + +import org.apache.flink.runtime.clusterframework.types.ResourceID; +import org.apache.flink.runtime.rpc.heartbeat.HeartbeatScheduler; +import org.apache.flink.runtime.rpc.taskexecutor.SlotReport; +import org.apache.flink.runtime.rpc.taskexecutor.TaskExecutorGateway; +import org.slf4j.Logger; +import scala.concurrent.Future; +import scala.concurrent.duration.FiniteDuration; + +import java.util.HashMap; +import java.util.Map; +import java.util.UUID; + +import static org.apache.flink.util.Preconditions.checkNotNull; + +/** + * ResourceManagerToTaskExecutorHeartbeatManager is responsible for trigger heartbeat between resourceManager and all registered taskExecutors, + * notify ResourceManager about failure of taskManager instance which lost heartbeat + */ +public class ResourceManagerToTaskExecutorHeartbeatManager { + /** active heartbeat schedulers between resourceManager and TaskExecutors */ + private final Map<ResourceID, ResourceManagerToTaskExecutorHeartbeatScheduler> activeHeartbeatSchedulers; + + /** resourceManager which send heartbeat */ + private final ResourceManager resourceManager; + + /** leader session id of current resourceManager */ + private final UUID leaderID; + private final Logger log; + + /** + * @param resourceManager resourceManager which handles heartbeat communication with taskManager + * @param resourceManagerLeaderSessionID leader session id of current resourceManager + * @param log + */ + public ResourceManagerToTaskExecutorHeartbeatManager(ResourceManager resourceManager, + UUID resourceManagerLeaderSessionID, Logger log) { + this.resourceManager = resourceManager; + this.leaderID = resourceManagerLeaderSessionID; + this.log = log; + this.activeHeartbeatSchedulers = new HashMap<>(); --- End diff -- checkNotNull missing > Heartbeat Manager between ResourceManager and TaskExecutor > ---------------------------------------------------------- > > Key: FLINK-4449 > URL: https://issues.apache.org/jira/browse/FLINK-4449 > Project: Flink > Issue Type: Sub-task > Components: Cluster Management > Reporter: zhangjing > Assignee: zhangjing > > HeartbeatManager is responsible for heartbeat between resourceManager to > TaskExecutor > 1. Register taskExecutors > register heartbeat targets. If the heartbeat response for these targets is > not reported in time, mark target failed and notify resourceManager > 2. trigger heartbeat > trigger heartbeat from resourceManager to TaskExecutor periodically > taskExecutor report slot allocation in the heartbeat response > ResourceManager sync self slot allocation with the heartbeat response -- This message was sent by Atlassian JIRA (v6.3.4#6332)