Uses of Class
org.apache.flink.runtime.jobgraph.OperatorID
Packages that use OperatorID
Package
Description
-
Uses of OperatorID in org.apache.flink.runtime
Methods in org.apache.flink.runtime that return OperatorIDMethods in org.apache.flink.runtime that return types with arguments of type OperatorIDMethods in org.apache.flink.runtime with parameters of type OperatorIDModifier and TypeMethodDescriptionstatic OperatorIDPairOperatorIDPair.generatedIDOnly(OperatorID generatedOperatorID) static OperatorIDPairOperatorIDPair.of(OperatorID generatedOperatorID, OperatorID userDefinedOperatorID, String operatorName, String operatorUid) -
Uses of OperatorID in org.apache.flink.runtime.checkpoint
Methods in org.apache.flink.runtime.checkpoint that return OperatorIDMethods in org.apache.flink.runtime.checkpoint that return types with arguments of type OperatorIDModifier and TypeMethodDescriptionCompletedCheckpoint.getOperatorStates()PendingCheckpoint.getOperatorStates()TaskStateSnapshot.getSubtaskStateMappings()Returns the set of all mappings from operator id to the corresponding subtask state.Methods in org.apache.flink.runtime.checkpoint with parameters of type OperatorIDModifier and TypeMethodDescriptionstatic <T> Map<OperatorInstanceID,List<T>> StateAssignmentOperation.applyRepartitioner(OperatorID operatorID, OperatorStateRepartitioner<T> opStateRepartitioner, List<List<T>> chainOpParallelStates, int oldParallelism, int newParallelism) OperatorState.copyWithNewIDs(String newOperatorUid, OperatorID newOperatorId) TaskStateSnapshot.getSubtaskStateByOperatorID(OperatorID operatorID) Returns the subtask state for the given operator id (or null if not contained).TaskStateSnapshot.putSubtaskStateByOperatorID(OperatorID operatorID, OperatorSubtaskState state) Maps the given operator id to the given subtask state.voidCheckpointCoordinator.setIsProcessingBacklog(OperatorID operatorID, boolean isProcessingBacklog) Reports whether a source operator is currently processing backlog.Method parameters in org.apache.flink.runtime.checkpoint with type arguments of type OperatorIDModifier and TypeMethodDescriptionvoidDefaultCheckpointPlan.fulfillFinishedTaskStatus(Map<OperatorID, OperatorState> operatorStates) voidFinishedTaskStateProvider.fulfillFinishedTaskStatus(Map<OperatorID, OperatorState> operatorStates) Fulfills the state for the finished subtasks and operators to indicate they are finished.static <T extends StateObject>
voidStateAssignmentOperation.reDistributePartitionableStates(Map<OperatorID, OperatorState> oldOperatorStates, int newParallelism, Function<OperatorSubtaskState, StateObjectCollection<T>> extractHandle, OperatorStateRepartitioner<T> stateRepartitioner, Map<OperatorInstanceID, List<T>> result) Constructors in org.apache.flink.runtime.checkpoint with parameters of type OperatorIDModifierConstructorDescriptionFullyFinishedOperatorState(String operatorName, String operatorUid, OperatorID operatorID, int parallelism, int maxParallelism) OperatorState(String operatorName, String operatorUid, OperatorID operatorID, int parallelism, int maxParallelism) Constructor parameters in org.apache.flink.runtime.checkpoint with type arguments of type OperatorIDModifierConstructorDescriptionCheckpointCoordinator(org.apache.flink.api.common.JobID job, CheckpointCoordinatorConfiguration chkConfig, Collection<OperatorCoordinatorCheckpointContext> coordinatorsToCheckpoint, CheckpointIDCounter checkpointIDCounter, CompletedCheckpointStore completedCheckpointStore, CheckpointStorage checkpointStorage, Executor executor, CheckpointsCleaner checkpointsCleaner, org.apache.flink.util.concurrent.ScheduledExecutor timer, CheckpointFailureManager failureManager, CheckpointPlanCalculator checkpointPlanCalculator, org.apache.flink.util.clock.Clock clock, CheckpointStatsTracker statsTracker, BiFunction<Set<ExecutionJobVertex>, Map<OperatorID, OperatorState>, VertexFinishedStateChecker> vertexFinishedStateCheckerFactory) CompletedCheckpoint(org.apache.flink.api.common.JobID job, long checkpointID, long timestamp, long completionTimestamp, Map<OperatorID, OperatorState> operatorStates, Collection<MasterState> masterHookStates, CheckpointProperties props, CompletedCheckpointStorageLocation storageLocation, CompletedCheckpointStats completedCheckpointStats) CompletedCheckpoint(org.apache.flink.api.common.JobID job, long checkpointID, long timestamp, long completionTimestamp, Map<OperatorID, OperatorState> operatorStates, Collection<MasterState> masterHookStates, CheckpointProperties props, CompletedCheckpointStorageLocation storageLocation, CompletedCheckpointStats completedCheckpointStats, CheckpointProperties restoredProps) PendingCheckpoint(org.apache.flink.api.common.JobID jobId, long checkpointId, long checkpointTimestamp, CheckpointPlan checkpointPlan, Collection<OperatorID> operatorCoordinatorsToConfirm, Collection<String> masterStateIdentifiers, CheckpointProperties props, CompletableFuture<CompletedCheckpoint> onCompletionPromise, PendingCheckpointStats pendingCheckpointStats, CompletableFuture<Void> masterTriggerCompletionPromise) StateAssignmentOperation(long restoreCheckpointId, Set<ExecutionJobVertex> tasks, Map<OperatorID, OperatorState> operatorStates, boolean allowNonRestoredState) TaskStateSnapshot(Map<OperatorID, OperatorSubtaskState> subtaskStatesByOperatorID) VertexFinishedStateChecker(Set<ExecutionJobVertex> vertices, Map<OperatorID, OperatorState> operatorStates) -
Uses of OperatorID in org.apache.flink.runtime.checkpoint.filemerging
Constructors in org.apache.flink.runtime.checkpoint.filemerging with parameters of type OperatorIDModifierConstructorDescriptionSubtaskFileMergingManagerRestoreOperation(long checkpointId, FileMergingSnapshotManager fileMergingSnapshotManager, org.apache.flink.api.common.JobID jobID, org.apache.flink.api.common.TaskInfo taskInfo, OperatorID operatorID, OperatorSubtaskState subtaskState) SubtaskKey(org.apache.flink.api.common.JobID jobID, OperatorID operatorID, org.apache.flink.api.common.TaskInfo taskInfo) -
Uses of OperatorID in org.apache.flink.runtime.executiongraph
Methods in org.apache.flink.runtime.executiongraph with parameters of type OperatorIDModifier and TypeMethodDescriptionExecution.sendOperatorEvent(OperatorID operatorId, org.apache.flink.util.SerializedValue<OperatorEvent> event) Sends the operator event to the Task on the Task Executor. -
Uses of OperatorID in org.apache.flink.runtime.jobgraph
Methods in org.apache.flink.runtime.jobgraph that return OperatorIDModifier and TypeMethodDescriptionstatic OperatorIDOperatorID.fromJobVertexID(JobVertexID id) OperatorInstanceID.getOperatorId()Methods in org.apache.flink.runtime.jobgraph that return types with arguments of type OperatorIDModifier and TypeMethodDescriptionMap<OperatorID,org.apache.flink.api.common.operators.util.UserCodeWrapper<? extends org.apache.flink.api.common.io.InputFormat<?, ?>>> InputOutputFormatContainer.FormatUserCodeTable.getInputFormats()Map<OperatorID,org.apache.flink.api.common.operators.util.UserCodeWrapper<? extends org.apache.flink.api.common.io.InputFormat<?, ?>>> InputOutputFormatContainer.getInputFormats()Map<OperatorID,org.apache.flink.api.common.operators.util.UserCodeWrapper<? extends org.apache.flink.api.common.io.OutputFormat<?>>> InputOutputFormatContainer.FormatUserCodeTable.getOutputFormats()Map<OperatorID,org.apache.flink.api.common.operators.util.UserCodeWrapper<? extends org.apache.flink.api.common.io.OutputFormat<?>>> InputOutputFormatContainer.getOutputFormats()<OT,T extends org.apache.flink.core.io.InputSplit>
org.apache.commons.lang3.tuple.Pair<OperatorID,org.apache.flink.api.common.io.InputFormat<OT, T>> InputOutputFormatContainer.getUniqueInputFormat()<IT> org.apache.commons.lang3.tuple.Pair<OperatorID,org.apache.flink.api.common.io.OutputFormat<IT>> InputOutputFormatContainer.getUniqueOutputFormat()Methods in org.apache.flink.runtime.jobgraph with parameters of type OperatorIDModifier and TypeMethodDescriptionInputOutputFormatContainer.addInputFormat(OperatorID operatorId, org.apache.flink.api.common.io.InputFormat<?, ?> inputFormat) InputOutputFormatContainer.addInputFormat(OperatorID operatorId, org.apache.flink.api.common.operators.util.UserCodeWrapper<? extends org.apache.flink.api.common.io.InputFormat<?, ?>> wrapper) voidInputOutputFormatContainer.FormatUserCodeTable.addInputFormat(OperatorID operatorId, org.apache.flink.api.common.operators.util.UserCodeWrapper<? extends org.apache.flink.api.common.io.InputFormat<?, ?>> wrapper) InputOutputFormatContainer.addOutputFormat(OperatorID operatorId, org.apache.flink.api.common.io.OutputFormat<?> outputFormat) InputOutputFormatContainer.addOutputFormat(OperatorID operatorId, org.apache.flink.api.common.operators.util.UserCodeWrapper<? extends org.apache.flink.api.common.io.OutputFormat<?>> wrapper) voidInputOutputFormatContainer.FormatUserCodeTable.addOutputFormat(OperatorID operatorId, org.apache.flink.api.common.operators.util.UserCodeWrapper<? extends org.apache.flink.api.common.io.OutputFormat<?>> wrapper) InputOutputFormatContainer.addParameters(OperatorID operatorId, String key, String value) InputOutputFormatContainer.addParameters(OperatorID operatorId, org.apache.flink.configuration.Configuration parameters) InputOutputFormatVertex.getFormatDescription(OperatorID operatorID) org.apache.flink.configuration.ConfigurationInputOutputFormatContainer.getParameters(OperatorID operatorId) static OperatorInstanceIDOperatorInstanceID.of(int subtaskId, OperatorID operatorID) voidInputOutputFormatVertex.setFormatDescription(OperatorID operatorID, String formatDescription) Constructors in org.apache.flink.runtime.jobgraph with parameters of type OperatorID -
Uses of OperatorID in org.apache.flink.runtime.jobgraph.tasks
Methods in org.apache.flink.runtime.jobgraph.tasks with parameters of type OperatorIDModifier and TypeMethodDescriptionvoidAbstractInvokable.dispatchOperatorEvent(OperatorID operator, org.apache.flink.util.SerializedValue<OperatorEvent> event) voidCoordinatedTask.dispatchOperatorEvent(OperatorID operator, org.apache.flink.util.SerializedValue<OperatorEvent> event) voidTaskOperatorEventGateway.sendOperatorEventToCoordinator(OperatorID operator, org.apache.flink.util.SerializedValue<OperatorEvent> event) Sends an event from the operator (identified by the given operator ID) to the operator coordinator (identified by the same ID).TaskOperatorEventGateway.sendRequestToCoordinator(OperatorID operator, org.apache.flink.util.SerializedValue<CoordinationRequest> request) Sends a request from current operator to a specified operator coordinator which is identified by the given operator ID and return the response. -
Uses of OperatorID in org.apache.flink.runtime.jobmanager.slots
Methods in org.apache.flink.runtime.jobmanager.slots with parameters of type OperatorIDModifier and TypeMethodDescriptionTaskManagerGateway.sendOperatorEventToTask(ExecutionAttemptID task, OperatorID operator, org.apache.flink.util.SerializedValue<OperatorEvent> evt) -
Uses of OperatorID in org.apache.flink.runtime.jobmaster
Methods in org.apache.flink.runtime.jobmaster with parameters of type OperatorIDModifier and TypeMethodDescriptionJobMaster.deliverCoordinationRequestToCoordinator(OperatorID operatorId, org.apache.flink.util.SerializedValue<CoordinationRequest> serializedRequest, Duration timeout) JobMasterGateway.deliverCoordinationRequestToCoordinator(OperatorID operatorId, org.apache.flink.util.SerializedValue<CoordinationRequest> serializedRequest, Duration timeout) Deliver a coordination request to a specified coordinator and return the response.JobMaster.sendOperatorEventToCoordinator(ExecutionAttemptID task, OperatorID operatorID, org.apache.flink.util.SerializedValue<OperatorEvent> serializedEvent) JobMasterOperatorEventGateway.sendOperatorEventToCoordinator(ExecutionAttemptID task, OperatorID operatorID, org.apache.flink.util.SerializedValue<OperatorEvent> event) RpcTaskManagerGateway.sendOperatorEventToTask(ExecutionAttemptID task, OperatorID operator, org.apache.flink.util.SerializedValue<OperatorEvent> evt) JobMaster.sendRequestToCoordinator(OperatorID operatorID, org.apache.flink.util.SerializedValue<CoordinationRequest> serializedRequest) JobMasterOperatorEventGateway.sendRequestToCoordinator(OperatorID operatorID, org.apache.flink.util.SerializedValue<CoordinationRequest> request) -
Uses of OperatorID in org.apache.flink.runtime.jobmaster.event
Methods in org.apache.flink.runtime.jobmaster.event that return types with arguments of type OperatorIDModifier and TypeMethodDescriptionMap<OperatorID,CompletableFuture<byte[]>> ExecutionVertexFinishedEvent.getOperatorCoordinatorSnapshotFutures()Constructor parameters in org.apache.flink.runtime.jobmaster.event with type arguments of type OperatorIDModifierConstructorDescriptionExecutionVertexFinishedEvent(ExecutionAttemptID executionAttemptId, TaskManagerLocation location, Map<OperatorID, CompletableFuture<byte[]>> operatorCoordinatorSnapshotFutures, CompletableFuture<ShuffleMasterSnapshot> shuffleMasterSnapshotFuture, IOMetrics ioMetrics, Map<String, org.apache.flink.api.common.accumulators.Accumulator<?, ?>> userAccumulators) -
Uses of OperatorID in org.apache.flink.runtime.metrics.groups
Methods in org.apache.flink.runtime.metrics.groups with parameters of type OperatorIDModifier and TypeMethodDescriptionJobManagerJobMetricGroup.getOrAddOperator(org.apache.flink.util.AbstractID vertexId, String taskName, OperatorID operatorID, String operatorName) TaskMetricGroup.getOrAddOperator(OperatorID operatorID, String operatorName) UnregisteredMetricGroups.UnregisteredJobManagerJobMetricGroup.getOrAddOperator(org.apache.flink.util.AbstractID vertexId, String taskName, OperatorID operatorID, String operatorName) UnregisteredMetricGroups.UnregisteredTaskMetricGroup.getOrAddOperator(OperatorID operatorID, String name) Constructors in org.apache.flink.runtime.metrics.groups with parameters of type OperatorIDModifierConstructorDescriptionJobManagerOperatorMetricGroup(MetricRegistry registry, JobManagerJobMetricGroup parent, org.apache.flink.util.AbstractID vertexId, String taskName, OperatorID operatorID, String operatorName) -
Uses of OperatorID in org.apache.flink.runtime.metrics.scope
Methods in org.apache.flink.runtime.metrics.scope with parameters of type OperatorIDModifier and TypeMethodDescriptionString[]JobManagerOperatorScopeFormat.formatScope(JobManagerJobMetricGroup parent, org.apache.flink.util.AbstractID vertexId, String taskName, OperatorID operatorID, String operatorName) String[]OperatorScopeFormat.formatScope(TaskMetricGroup parent, OperatorID operatorID, String operatorName) -
Uses of OperatorID in org.apache.flink.runtime.operators.coordination
Methods in org.apache.flink.runtime.operators.coordination that return OperatorIDModifier and TypeMethodDescriptionOperatorCoordinator.Context.getOperatorId()Gets the ID of the operator to which the coordinator belongs.OperatorCoordinator.Provider.getOperatorId()Gets the ID of the operator to which the coordinator belongs.RecreateOnResetOperatorCoordinator.Provider.getOperatorId()OperatorCoordinatorHolder.operatorId()OperatorInfo.operatorId()Methods in org.apache.flink.runtime.operators.coordination that return types with arguments of type OperatorIDModifier and TypeMethodDescriptionstatic Collection<OperatorID>OperatorInfo.getIds(Collection<? extends OperatorInfo> infos) Methods in org.apache.flink.runtime.operators.coordination with parameters of type OperatorIDModifier and TypeMethodDescriptionOperatorEventDispatcher.getOperatorEventGateway(OperatorID operatorId) Gets the gateway through which events can be passed to the OperatorCoordinator for the operator identified by the given OperatorID.voidOperatorEventDispatcher.registerEventHandler(OperatorID operator, OperatorEventHandler handler) Register a listener that is notified every time an OperatorEvent is sent from the OperatorCoordinator (of the operator with the given OperatorID) to this subtask.Constructors in org.apache.flink.runtime.operators.coordination with parameters of type OperatorID -
Uses of OperatorID in org.apache.flink.runtime.scheduler
Methods in org.apache.flink.runtime.scheduler with parameters of type OperatorIDModifier and TypeMethodDescriptionDefaultOperatorCoordinatorHandler.deliverCoordinationRequestToCoordinator(OperatorID operator, CoordinationRequest request) OperatorCoordinatorHandler.deliverCoordinationRequestToCoordinator(OperatorID operator, CoordinationRequest request) Deliver coordination request from the client to the coordinator.SchedulerBase.deliverCoordinationRequestToCoordinator(OperatorID operator, CoordinationRequest request) SchedulerNG.deliverCoordinationRequestToCoordinator(OperatorID operator, CoordinationRequest request) Delivers a coordination request to theOperatorCoordinatorwith the givenOperatorIDand returns the coordinator's response.voidDefaultOperatorCoordinatorHandler.deliverOperatorEventToCoordinator(ExecutionAttemptID taskExecutionId, OperatorID operatorId, OperatorEvent evt) voidOperatorCoordinatorHandler.deliverOperatorEventToCoordinator(ExecutionAttemptID taskExecutionId, OperatorID operatorId, OperatorEvent event) Delivers an OperatorEvent to aOperatorCoordinator.voidSchedulerBase.deliverOperatorEventToCoordinator(ExecutionAttemptID taskExecutionId, OperatorID operatorId, OperatorEvent evt) voidSchedulerNG.deliverOperatorEventToCoordinator(ExecutionAttemptID taskExecution, OperatorID operator, OperatorEvent evt) Delivers the given OperatorEvent to theOperatorCoordinatorwith the givenOperatorID. -
Uses of OperatorID in org.apache.flink.runtime.scheduler.adaptive
Methods in org.apache.flink.runtime.scheduler.adaptive with parameters of type OperatorIDModifier and TypeMethodDescriptionAdaptiveScheduler.deliverCoordinationRequestToCoordinator(OperatorID operator, CoordinationRequest request) voidAdaptiveScheduler.deliverOperatorEventToCoordinator(ExecutionAttemptID taskExecution, OperatorID operator, OperatorEvent evt) -
Uses of OperatorID in org.apache.flink.runtime.source.coordinator
Constructors in org.apache.flink.runtime.source.coordinator with parameters of type OperatorIDModifierConstructorDescriptionSourceCoordinatorProvider(String operatorName, OperatorID operatorID, org.apache.flink.api.connector.source.Source<?, SplitT, ?> source, int numWorkerThreads, org.apache.flink.api.common.eventtime.WatermarkAlignmentParams alignmentParams, String coordinatorListeningID) Construct theSourceCoordinatorProvider. -
Uses of OperatorID in org.apache.flink.runtime.state
Methods in org.apache.flink.runtime.state with parameters of type OperatorIDModifier and TypeMethodDescriptionTaskStateManager.getSubtaskJobManagerRestoredState(OperatorID operatorID) Get the restored state from jobManager which belongs to an operator running in the owning task.TaskStateManagerImpl.getSubtaskJobManagerRestoredState(OperatorID operatorID) TaskStateManager.prioritizedOperatorState(OperatorID operatorID) Returns means to restore previously reported state of an operator running in the owning task.TaskStateManagerImpl.prioritizedOperatorState(OperatorID operatorID) -
Uses of OperatorID in org.apache.flink.runtime.taskexecutor
Methods in org.apache.flink.runtime.taskexecutor with parameters of type OperatorIDModifier and TypeMethodDescriptionTaskExecutor.sendOperatorEventToTask(ExecutionAttemptID executionAttemptID, OperatorID operatorId, org.apache.flink.util.SerializedValue<OperatorEvent> evt) TaskExecutorGateway.sendOperatorEventToTask(ExecutionAttemptID task, OperatorID operator, org.apache.flink.util.SerializedValue<OperatorEvent> evt) TaskExecutorGatewayDecoratorBase.sendOperatorEventToTask(ExecutionAttemptID task, OperatorID operator, org.apache.flink.util.SerializedValue<OperatorEvent> evt) TaskExecutorOperatorEventGateway.sendOperatorEventToTask(ExecutionAttemptID task, OperatorID operator, org.apache.flink.util.SerializedValue<OperatorEvent> evt) Sends an operator event to an operator in a task executed by the Task Manager (Task Executor). -
Uses of OperatorID in org.apache.flink.runtime.taskexecutor.rpc
Methods in org.apache.flink.runtime.taskexecutor.rpc with parameters of type OperatorIDModifier and TypeMethodDescriptionvoidRpcTaskOperatorEventGateway.sendOperatorEventToCoordinator(OperatorID operator, org.apache.flink.util.SerializedValue<OperatorEvent> event) RpcTaskOperatorEventGateway.sendRequestToCoordinator(OperatorID operator, org.apache.flink.util.SerializedValue<CoordinationRequest> request) -
Uses of OperatorID in org.apache.flink.runtime.taskmanager
Methods in org.apache.flink.runtime.taskmanager with parameters of type OperatorIDModifier and TypeMethodDescriptionvoidTask.deliverOperatorEvent(OperatorID operator, org.apache.flink.util.SerializedValue<OperatorEvent> evt) Dispatches an operator event to the invokable task. -
Uses of OperatorID in org.apache.flink.runtime.util
Constructors in org.apache.flink.runtime.util with parameters of type OperatorIDModifierConstructorDescriptionOperatorSubtaskDescriptionText(OperatorID operatorId, String operatorClass, int subtaskIndex, int numberOfTasks) -
Uses of OperatorID in org.apache.flink.streaming.api.graph
Methods in org.apache.flink.streaming.api.graph that return OperatorIDModifier and TypeMethodDescriptionstatic OperatorIDStreamingJobGraphGenerator.generateOperatorID(String operatorUid) Creates an instance ofOperatorIDbased on the provided operator unique identifier (UID).StreamConfig.getOperatorID()Methods in org.apache.flink.streaming.api.graph with parameters of type OperatorIDModifier and TypeMethodDescriptionStreamNode.getCoordinatorProvider(String operatorName, OperatorID operatorID) voidStreamConfig.setOperatorID(OperatorID operatorID) -
Uses of OperatorID in org.apache.flink.streaming.api.graph.util
Methods in org.apache.flink.streaming.api.graph.util that return OperatorIDModifier and TypeMethodDescriptionOperatorChainInfo.addNodeToChain(int currentNodeId, String operatorName, JobVertexBuildContext jobVertexBuildContext) OperatorInfo.getOperatorId()Methods in org.apache.flink.streaming.api.graph.util with parameters of type OperatorIDModifier and TypeMethodDescriptionOperatorChainInfo.createAndGetOperatorInfo(Integer nodeId, OperatorID operatorId) Constructors in org.apache.flink.streaming.api.graph.util with parameters of type OperatorID -
Uses of OperatorID in org.apache.flink.streaming.api.operators
Methods in org.apache.flink.streaming.api.operators that return OperatorIDModifier and TypeMethodDescriptionAbstractStreamOperator.getOperatorID()AbstractStreamOperatorV2.getOperatorID()StreamOperator.getOperatorID()Methods in org.apache.flink.streaming.api.operators with parameters of type OperatorIDModifier and TypeMethodDescriptionCoordinatedOperatorFactory.getCoordinatorProvider(String operatorName, OperatorID operatorID) Get the operator coordinator provider for this operator.SourceOperatorFactory.getCoordinatorProvider(String operatorName, OperatorID operatorID) StreamTaskStateInitializer.streamOperatorStateContext(OperatorID operatorID, String operatorClassName, ProcessingTimeService processingTimeService, KeyContext keyContext, org.apache.flink.api.common.typeutils.TypeSerializer<?> keySerializer, org.apache.flink.core.fs.CloseableRegistry streamTaskCloseableRegistry, org.apache.flink.metrics.MetricGroup metricGroup, double managedMemoryFraction, boolean isUsingCustomRawKeyedState, boolean isAsyncState) Returns theStreamOperatorStateContextfor anAbstractStreamOperatorthat runs in the stream task that owns this manager.StreamTaskStateInitializerImpl.streamOperatorStateContext(OperatorID operatorID, String operatorClassName, ProcessingTimeService processingTimeService, KeyContext keyContext, org.apache.flink.api.common.typeutils.TypeSerializer<?> keySerializer, org.apache.flink.core.fs.CloseableRegistry streamTaskCloseableRegistry, org.apache.flink.metrics.MetricGroup metricGroup, double managedMemoryFraction, boolean isUsingCustomRawKeyedState, boolean isAsyncState) Constructors in org.apache.flink.streaming.api.operators with parameters of type OperatorIDModifierConstructorDescriptionStreamingRuntimeContext(Environment env, Map<String, org.apache.flink.api.common.accumulators.Accumulator<?, ?>> accumulators, org.apache.flink.metrics.groups.OperatorMetricGroup operatorMetricGroup, OperatorID operatorID, ProcessingTimeService processingTimeService, org.apache.flink.api.common.state.KeyedStateStore keyedStateStore, ExternalResourceInfoProvider externalResourceInfoProvider) -
Uses of OperatorID in org.apache.flink.streaming.api.operators.collect
Methods in org.apache.flink.streaming.api.operators.collect that return OperatorIDMethods in org.apache.flink.streaming.api.operators.collect with parameters of type OperatorIDModifier and TypeMethodDescriptionCollectSinkOperatorFactory.getCoordinatorProvider(String operatorName, OperatorID operatorID) Constructors in org.apache.flink.streaming.api.operators.collect with parameters of type OperatorID -
Uses of OperatorID in org.apache.flink.streaming.runtime.io
Methods in org.apache.flink.streaming.runtime.io that return OperatorID -
Uses of OperatorID in org.apache.flink.streaming.runtime.streamrecord
Methods in org.apache.flink.streaming.runtime.streamrecord that return OperatorIDConstructors in org.apache.flink.streaming.runtime.streamrecord with parameters of type OperatorIDModifierConstructorDescriptionLatencyMarker(long markedTime, OperatorID operatorId, int subtaskIndex) Creates a latency mark with the given timestamp. -
Uses of OperatorID in org.apache.flink.streaming.runtime.tasks
Methods in org.apache.flink.streaming.runtime.tasks with parameters of type OperatorIDModifier and TypeMethodDescriptionvoidFinishedOperatorChain.dispatchOperatorEvent(OperatorID operator, org.apache.flink.util.SerializedValue<OperatorEvent> event) abstract voidOperatorChain.dispatchOperatorEvent(OperatorID operator, org.apache.flink.util.SerializedValue<OperatorEvent> event) voidRegularOperatorChain.dispatchOperatorEvent(OperatorID operator, org.apache.flink.util.SerializedValue<OperatorEvent> event) voidStreamTask.dispatchOperatorEvent(OperatorID operator, org.apache.flink.util.SerializedValue<OperatorEvent> event) OperatorEventDispatcherImpl.getOperatorEventGateway(OperatorID operatorId) voidOperatorEventDispatcherImpl.registerEventHandler(OperatorID operator, OperatorEventHandler handler) Method parameters in org.apache.flink.streaming.runtime.tasks with type arguments of type OperatorIDModifier and TypeMethodDescriptionvoidFinishedOperatorChain.snapshotState(Map<OperatorID, OperatorSnapshotFutures> operatorSnapshotsInProgress, CheckpointMetaData checkpointMetaData, CheckpointOptions checkpointOptions, Supplier<Boolean> isRunning, ChannelStateWriter.ChannelStateWriteResult channelStateWriteResult, CheckpointStreamFactory storage) abstract voidOperatorChain.snapshotState(Map<OperatorID, OperatorSnapshotFutures> operatorSnapshotsInProgress, CheckpointMetaData checkpointMetaData, CheckpointOptions checkpointOptions, Supplier<Boolean> isRunning, ChannelStateWriter.ChannelStateWriteResult channelStateWriteResult, CheckpointStreamFactory storage) voidRegularOperatorChain.snapshotState(Map<OperatorID, OperatorSnapshotFutures> operatorSnapshotsInProgress, CheckpointMetaData checkpointMetaData, CheckpointOptions checkpointOptions, Supplier<Boolean> isRunning, ChannelStateWriter.ChannelStateWriteResult channelStateWriteResult, CheckpointStreamFactory storage) -
Uses of OperatorID in org.apache.flink.streaming.util
Constructors in org.apache.flink.streaming.util with parameters of type OperatorIDModifierConstructorDescriptionLatencyStats(org.apache.flink.metrics.MetricGroup metricGroup, int historySize, int subtaskIndex, OperatorID operatorID, LatencyStats.Granularity granularity)