org.apache.flink.runtime.rest.handler.legacy.ExecutionGraphCache Java Examples
The following examples show how to use
org.apache.flink.runtime.rest.handler.legacy.ExecutionGraphCache.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: JobExceptionsHandler.java From flink with Apache License 2.0 | 6 votes |
public JobExceptionsHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> responseHeaders, MessageHeaders<EmptyRequestBody, JobExceptionsInfo, JobMessageParameters> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor) { super( leaderRetriever, timeout, responseHeaders, messageHeaders, executionGraphCache, executor); }
Example #2
Source File: JobPlanHandler.java From flink with Apache License 2.0 | 6 votes |
public JobPlanHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> headers, MessageHeaders<EmptyRequestBody, JobPlanInfo, JobMessageParameters> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor) { super( leaderRetriever, timeout, headers, messageHeaders, executionGraphCache, executor); }
Example #3
Source File: JobExceptionsHandler.java From flink with Apache License 2.0 | 6 votes |
public JobExceptionsHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> responseHeaders, MessageHeaders<EmptyRequestBody, JobExceptionsInfo, JobExceptionsMessageParameters> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor) { super( leaderRetriever, timeout, responseHeaders, messageHeaders, executionGraphCache, executor); }
Example #4
Source File: JobConfigHandler.java From flink with Apache License 2.0 | 6 votes |
public JobConfigHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> responseHeaders, MessageHeaders<EmptyRequestBody, JobConfigInfo, JobMessageParameters> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor) { super( leaderRetriever, timeout, responseHeaders, messageHeaders, executionGraphCache, executor); }
Example #5
Source File: TaskCheckpointStatisticDetailsHandler.java From Flink-CEPplus with Apache License 2.0 | 6 votes |
public TaskCheckpointStatisticDetailsHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> responseHeaders, MessageHeaders<EmptyRequestBody, TaskCheckpointStatisticsWithSubtaskDetails, TaskCheckpointMessageParameters> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor, CheckpointStatsCache checkpointStatsCache) { super( leaderRetriever, timeout, responseHeaders, messageHeaders, executionGraphCache, executor, checkpointStatsCache); }
Example #6
Source File: CheckpointStatisticDetailsHandler.java From Flink-CEPplus with Apache License 2.0 | 6 votes |
public CheckpointStatisticDetailsHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> responseHeaders, MessageHeaders<EmptyRequestBody, CheckpointStatistics, CheckpointMessageParameters> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor, CheckpointStatsCache checkpointStatsCache) { super( leaderRetriever, timeout, responseHeaders, messageHeaders, executionGraphCache, executor, checkpointStatsCache); }
Example #7
Source File: JobVertexDetailsHandler.java From flink with Apache License 2.0 | 6 votes |
public JobVertexDetailsHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> responseHeaders, MessageHeaders<EmptyRequestBody, JobVertexDetailsInfo, JobVertexMessageParameters> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor, MetricFetcher metricFetcher) { super( leaderRetriever, timeout, responseHeaders, messageHeaders, executionGraphCache, executor); this.metricFetcher = metricFetcher; }
Example #8
Source File: JobPlanHandler.java From Flink-CEPplus with Apache License 2.0 | 6 votes |
public JobPlanHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> headers, MessageHeaders<EmptyRequestBody, JobPlanInfo, JobMessageParameters> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor) { super( leaderRetriever, timeout, headers, messageHeaders, executionGraphCache, executor); }
Example #9
Source File: CheckpointStatisticDetailsHandler.java From flink with Apache License 2.0 | 6 votes |
public CheckpointStatisticDetailsHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> responseHeaders, MessageHeaders<EmptyRequestBody, CheckpointStatistics, CheckpointMessageParameters> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor, CheckpointStatsCache checkpointStatsCache) { super( leaderRetriever, timeout, responseHeaders, messageHeaders, executionGraphCache, executor, checkpointStatsCache); }
Example #10
Source File: TaskCheckpointStatisticDetailsHandler.java From flink with Apache License 2.0 | 6 votes |
public TaskCheckpointStatisticDetailsHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> responseHeaders, MessageHeaders<EmptyRequestBody, TaskCheckpointStatisticsWithSubtaskDetails, TaskCheckpointMessageParameters> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor, CheckpointStatsCache checkpointStatsCache) { super( leaderRetriever, timeout, responseHeaders, messageHeaders, executionGraphCache, executor, checkpointStatsCache); }
Example #11
Source File: JobExceptionsHandler.java From Flink-CEPplus with Apache License 2.0 | 6 votes |
public JobExceptionsHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> responseHeaders, MessageHeaders<EmptyRequestBody, JobExceptionsInfo, JobMessageParameters> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor) { super( leaderRetriever, timeout, responseHeaders, messageHeaders, executionGraphCache, executor); }
Example #12
Source File: JobVertexDetailsHandler.java From Flink-CEPplus with Apache License 2.0 | 6 votes |
public JobVertexDetailsHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> responseHeaders, MessageHeaders<EmptyRequestBody, JobVertexDetailsInfo, JobVertexMessageParameters> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor, MetricFetcher metricFetcher) { super( leaderRetriever, timeout, responseHeaders, messageHeaders, executionGraphCache, executor); this.metricFetcher = metricFetcher; }
Example #13
Source File: JobDetailsHandler.java From Flink-CEPplus with Apache License 2.0 | 6 votes |
public JobDetailsHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> responseHeaders, MessageHeaders<EmptyRequestBody, JobDetailsInfo, JobMessageParameters> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor, MetricFetcher metricFetcher) { super( leaderRetriever, timeout, responseHeaders, messageHeaders, executionGraphCache, executor); this.metricFetcher = Preconditions.checkNotNull(metricFetcher); }
Example #14
Source File: JobConfigHandler.java From Flink-CEPplus with Apache License 2.0 | 6 votes |
public JobConfigHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> responseHeaders, MessageHeaders<EmptyRequestBody, JobConfigInfo, JobMessageParameters> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor) { super( leaderRetriever, timeout, responseHeaders, messageHeaders, executionGraphCache, executor); }
Example #15
Source File: MiniDispatcherRestEndpoint.java From flink with Apache License 2.0 | 6 votes |
public MiniDispatcherRestEndpoint( RestServerEndpointConfiguration endpointConfiguration, GatewayRetriever<? extends RestfulGateway> leaderRetriever, Configuration clusterConfiguration, RestHandlerConfiguration restConfiguration, GatewayRetriever<ResourceManagerGateway> resourceManagerRetriever, TransientBlobService transientBlobService, ScheduledExecutorService executor, MetricFetcher metricFetcher, LeaderElectionService leaderElectionService, ExecutionGraphCache executionGraphCache, FatalErrorHandler fatalErrorHandler) throws IOException { super( endpointConfiguration, leaderRetriever, clusterConfiguration, restConfiguration, resourceManagerRetriever, transientBlobService, executor, metricFetcher, leaderElectionService, executionGraphCache, fatalErrorHandler); }
Example #16
Source File: JobDetailsHandler.java From flink with Apache License 2.0 | 6 votes |
public JobDetailsHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> responseHeaders, MessageHeaders<EmptyRequestBody, JobDetailsInfo, JobMessageParameters> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor, MetricFetcher metricFetcher) { super( leaderRetriever, timeout, responseHeaders, messageHeaders, executionGraphCache, executor); this.metricFetcher = Preconditions.checkNotNull(metricFetcher); }
Example #17
Source File: JobVertexDetailsHandler.java From flink with Apache License 2.0 | 6 votes |
public JobVertexDetailsHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> responseHeaders, MessageHeaders<EmptyRequestBody, JobVertexDetailsInfo, JobVertexMessageParameters> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor, MetricFetcher metricFetcher) { super( leaderRetriever, timeout, responseHeaders, messageHeaders, executionGraphCache, executor); this.metricFetcher = metricFetcher; }
Example #18
Source File: JobDetailsHandler.java From flink with Apache License 2.0 | 6 votes |
public JobDetailsHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> responseHeaders, MessageHeaders<EmptyRequestBody, JobDetailsInfo, JobMessageParameters> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor, MetricFetcher metricFetcher) { super( leaderRetriever, timeout, responseHeaders, messageHeaders, executionGraphCache, executor); this.metricFetcher = Preconditions.checkNotNull(metricFetcher); }
Example #19
Source File: TaskCheckpointStatisticDetailsHandler.java From flink with Apache License 2.0 | 6 votes |
public TaskCheckpointStatisticDetailsHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> responseHeaders, MessageHeaders<EmptyRequestBody, TaskCheckpointStatisticsWithSubtaskDetails, TaskCheckpointMessageParameters> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor, CheckpointStatsCache checkpointStatsCache) { super( leaderRetriever, timeout, responseHeaders, messageHeaders, executionGraphCache, executor, checkpointStatsCache); }
Example #20
Source File: CheckpointStatisticDetailsHandler.java From flink with Apache License 2.0 | 6 votes |
public CheckpointStatisticDetailsHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> responseHeaders, MessageHeaders<EmptyRequestBody, CheckpointStatistics, CheckpointMessageParameters> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor, CheckpointStatsCache checkpointStatsCache) { super( leaderRetriever, timeout, responseHeaders, messageHeaders, executionGraphCache, executor, checkpointStatsCache); }
Example #21
Source File: JobConfigHandler.java From flink with Apache License 2.0 | 6 votes |
public JobConfigHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> responseHeaders, MessageHeaders<EmptyRequestBody, JobConfigInfo, JobMessageParameters> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor) { super( leaderRetriever, timeout, responseHeaders, messageHeaders, executionGraphCache, executor); }
Example #22
Source File: JobPlanHandler.java From flink with Apache License 2.0 | 6 votes |
public JobPlanHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> headers, MessageHeaders<EmptyRequestBody, JobPlanInfo, JobMessageParameters> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor) { super( leaderRetriever, timeout, headers, messageHeaders, executionGraphCache, executor); }
Example #23
Source File: CheckpointConfigHandler.java From flink with Apache License 2.0 | 5 votes |
public CheckpointConfigHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> responseHeaders, MessageHeaders<EmptyRequestBody, CheckpointConfigInfo, JobMessageParameters> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor) { super( leaderRetriever, timeout, responseHeaders, messageHeaders, executionGraphCache, executor); }
Example #24
Source File: WebMonitorEndpoint.java From flink with Apache License 2.0 | 5 votes |
public WebMonitorEndpoint( RestServerEndpointConfiguration endpointConfiguration, GatewayRetriever<? extends T> leaderRetriever, Configuration clusterConfiguration, RestHandlerConfiguration restConfiguration, GatewayRetriever<ResourceManagerGateway> resourceManagerRetriever, TransientBlobService transientBlobService, ScheduledExecutorService executor, MetricFetcher metricFetcher, LeaderElectionService leaderElectionService, ExecutionGraphCache executionGraphCache, FatalErrorHandler fatalErrorHandler) throws IOException { super(endpointConfiguration); this.leaderRetriever = Preconditions.checkNotNull(leaderRetriever); this.clusterConfiguration = Preconditions.checkNotNull(clusterConfiguration); this.restConfiguration = Preconditions.checkNotNull(restConfiguration); this.resourceManagerRetriever = Preconditions.checkNotNull(resourceManagerRetriever); this.transientBlobService = Preconditions.checkNotNull(transientBlobService); this.executor = Preconditions.checkNotNull(executor); this.executionGraphCache = executionGraphCache; this.checkpointStatsCache = new CheckpointStatsCache( restConfiguration.getMaxCheckpointStatisticCacheEntries()); this.metricFetcher = metricFetcher; this.leaderElectionService = Preconditions.checkNotNull(leaderElectionService); this.fatalErrorHandler = Preconditions.checkNotNull(fatalErrorHandler); }
Example #25
Source File: DispatcherRestEndpoint.java From flink with Apache License 2.0 | 5 votes |
public DispatcherRestEndpoint( RestServerEndpointConfiguration endpointConfiguration, GatewayRetriever<DispatcherGateway> leaderRetriever, Configuration clusterConfiguration, RestHandlerConfiguration restConfiguration, GatewayRetriever<ResourceManagerGateway> resourceManagerRetriever, TransientBlobService transientBlobService, ScheduledExecutorService executor, MetricFetcher metricFetcher, LeaderElectionService leaderElectionService, ExecutionGraphCache executionGraphCache, FatalErrorHandler fatalErrorHandler) throws IOException { super( endpointConfiguration, leaderRetriever, clusterConfiguration, restConfiguration, resourceManagerRetriever, transientBlobService, executor, metricFetcher, leaderElectionService, executionGraphCache, fatalErrorHandler); webSubmissionExtension = WebMonitorExtension.empty(); }
Example #26
Source File: AbstractJobVertexHandler.java From flink with Apache License 2.0 | 5 votes |
/** * Instantiates a new Abstract job vertex handler. * * @param leaderRetriever the leader retriever * @param timeout the timeout * @param responseHeaders the response headers * @param messageHeaders the message headers * @param executionGraphCache the execution graph cache * @param executor the executor */ protected AbstractJobVertexHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> responseHeaders, MessageHeaders<EmptyRequestBody, R, M> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor) { super(leaderRetriever, timeout, responseHeaders, messageHeaders, executionGraphCache, executor); }
Example #27
Source File: JobVertexTaskManagersHandler.java From flink with Apache License 2.0 | 5 votes |
public JobVertexTaskManagersHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> responseHeaders, MessageHeaders<EmptyRequestBody, JobVertexTaskManagersInfo, JobVertexMessageParameters> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor, MetricFetcher metricFetcher) { super(leaderRetriever, timeout, responseHeaders, messageHeaders, executionGraphCache, executor); this.metricFetcher = Preconditions.checkNotNull(metricFetcher); }
Example #28
Source File: SubtaskExecutionAttemptAccumulatorsHandler.java From flink with Apache License 2.0 | 5 votes |
/** * Instantiates a new Abstract job vertex handler. * * @param leaderRetriever the leader retriever * @param timeout the timeout * @param responseHeaders the response headers * @param messageHeaders the message headers * @param executionGraphCache the execution graph cache * @param executor the executor */ public SubtaskExecutionAttemptAccumulatorsHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> responseHeaders, MessageHeaders<EmptyRequestBody, SubtaskExecutionAttemptAccumulatorsInfo, SubtaskAttemptMessageParameters> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor) { super(leaderRetriever, timeout, responseHeaders, messageHeaders, executionGraphCache, executor); }
Example #29
Source File: SubtaskExecutionAttemptAccumulatorsHandler.java From flink with Apache License 2.0 | 5 votes |
/** * Instantiates a new Abstract job vertex handler. * * @param leaderRetriever the leader retriever * @param timeout the timeout * @param responseHeaders the response headers * @param messageHeaders the message headers * @param executionGraphCache the execution graph cache * @param executor the executor */ public SubtaskExecutionAttemptAccumulatorsHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> responseHeaders, MessageHeaders<EmptyRequestBody, SubtaskExecutionAttemptAccumulatorsInfo, SubtaskAttemptMessageParameters> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor) { super(leaderRetriever, timeout, responseHeaders, messageHeaders, executionGraphCache, executor); }
Example #30
Source File: JobVertexAccumulatorsHandler.java From flink with Apache License 2.0 | 5 votes |
public JobVertexAccumulatorsHandler( GatewayRetriever<? extends RestfulGateway> leaderRetriever, Time timeout, Map<String, String> responseHeaders, MessageHeaders<EmptyRequestBody, JobVertexAccumulatorsInfo, JobVertexMessageParameters> messageHeaders, ExecutionGraphCache executionGraphCache, Executor executor) { super( leaderRetriever, timeout, responseHeaders, messageHeaders, executionGraphCache, executor); }