public interface OperatorEventGateway
OperatorEvent to the OperatorCoordinator on the JobManager side.
This is the first step in the chain of sending Operator Events from Operator to Coordinator. Each layer adds further context, so that the inner layers do not need to know about the complete context, which keeps dependencies small and makes testing easier.
OperatorEventGateway takes the event, enriches the event with the OperatorID, and
forwards it to:TaskOperatorEventGateway enriches the event with the ExecutionAttemptID and
forwards it to the:JobMasterOperatorEventGateway which is RPC interface from the TaskManager to the JobManager.| 限定符和类型 | 方法和说明 |
|---|---|
void |
sendEventToCoordinator(OperatorEvent event)
Sends the given event to the coordinator, where it will be handled by the
OperatorCoordinator.handleEventFromOperator(int, int, OperatorEvent) method. |
void sendEventToCoordinator(OperatorEvent event)
OperatorCoordinator.handleEventFromOperator(int, int, OperatorEvent) method.Copyright © 2014–2023 The Apache Software Foundation. All rights reserved.