org.apache.flink.runtime.dispatcher.DispatcherServices Maven / Gradle / Ivy
The newest version!
/*
* 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.dispatcher;
import org.apache.flink.configuration.Configuration;
import org.apache.flink.core.failure.FailureEnricher;
import org.apache.flink.runtime.blob.BlobServer;
import org.apache.flink.runtime.dispatcher.cleanup.CleanupRunnerFactory;
import org.apache.flink.runtime.heartbeat.HeartbeatServices;
import org.apache.flink.runtime.highavailability.HighAvailabilityServices;
import org.apache.flink.runtime.highavailability.JobResultStore;
import org.apache.flink.runtime.jobmanager.JobGraphWriter;
import org.apache.flink.runtime.metrics.groups.JobManagerMetricGroup;
import org.apache.flink.runtime.resourcemanager.ResourceManagerGateway;
import org.apache.flink.runtime.rpc.FatalErrorHandler;
import org.apache.flink.runtime.webmonitor.retriever.GatewayRetriever;
import org.apache.flink.util.Preconditions;
import javax.annotation.Nullable;
import java.util.Collection;
import java.util.concurrent.Executor;
/** {@link Dispatcher} services container. */
public class DispatcherServices {
private final Configuration configuration;
private final HighAvailabilityServices highAvailabilityServices;
private final GatewayRetriever resourceManagerGatewayRetriever;
private final BlobServer blobServer;
private final HeartbeatServices heartbeatServices;
private final JobManagerMetricGroup jobManagerMetricGroup;
private final ExecutionGraphInfoStore executionGraphInfoStore;
private final FatalErrorHandler fatalErrorHandler;
private final HistoryServerArchivist historyServerArchivist;
@Nullable private final String metricQueryServiceAddress;
private final DispatcherOperationCaches operationCaches;
private final JobGraphWriter jobGraphWriter;
private final JobResultStore jobResultStore;
private final JobManagerRunnerFactory jobManagerRunnerFactory;
private final CleanupRunnerFactory cleanupRunnerFactory;
private final Executor ioExecutor;
private final Collection failureEnrichers;
DispatcherServices(
Configuration configuration,
HighAvailabilityServices highAvailabilityServices,
GatewayRetriever resourceManagerGatewayRetriever,
BlobServer blobServer,
HeartbeatServices heartbeatServices,
ExecutionGraphInfoStore executionGraphInfoStore,
FatalErrorHandler fatalErrorHandler,
HistoryServerArchivist historyServerArchivist,
@Nullable String metricQueryServiceAddress,
DispatcherOperationCaches operationCaches,
JobManagerMetricGroup jobManagerMetricGroup,
JobGraphWriter jobGraphWriter,
JobResultStore jobResultStore,
JobManagerRunnerFactory jobManagerRunnerFactory,
CleanupRunnerFactory cleanupRunnerFactory,
Executor ioExecutor,
Collection failureEnrichers) {
this.configuration = Preconditions.checkNotNull(configuration, "Configuration");
this.highAvailabilityServices =
Preconditions.checkNotNull(highAvailabilityServices, "HighAvailabilityServices");
this.resourceManagerGatewayRetriever =
Preconditions.checkNotNull(
resourceManagerGatewayRetriever, "ResourceManagerGatewayRetriever");
this.blobServer = Preconditions.checkNotNull(blobServer, "BlobServer");
this.heartbeatServices = Preconditions.checkNotNull(heartbeatServices, "HeartBeatServices");
this.executionGraphInfoStore =
Preconditions.checkNotNull(executionGraphInfoStore, "ExecutionGraphInfoStore");
this.fatalErrorHandler = Preconditions.checkNotNull(fatalErrorHandler, "FatalErrorHandler");
this.historyServerArchivist =
Preconditions.checkNotNull(historyServerArchivist, "HistoryServerArchivist");
this.metricQueryServiceAddress = metricQueryServiceAddress;
this.operationCaches = Preconditions.checkNotNull(operationCaches, "OperationCaches");
this.jobManagerMetricGroup =
Preconditions.checkNotNull(jobManagerMetricGroup, "JobManagerMetricGroup");
this.jobGraphWriter = Preconditions.checkNotNull(jobGraphWriter, "JobGraphWriter");
this.jobResultStore = Preconditions.checkNotNull(jobResultStore, "JobResultStore");
this.jobManagerRunnerFactory =
Preconditions.checkNotNull(jobManagerRunnerFactory, "JobManagerRunnerFactory");
this.cleanupRunnerFactory =
Preconditions.checkNotNull(cleanupRunnerFactory, "CleanupRunnerFactory");
this.ioExecutor = Preconditions.checkNotNull(ioExecutor, "IOExecutor");
this.failureEnrichers = Preconditions.checkNotNull(failureEnrichers, "FailureEnrichers");
}
public Configuration getConfiguration() {
return configuration;
}
public HighAvailabilityServices getHighAvailabilityServices() {
return highAvailabilityServices;
}
public GatewayRetriever getResourceManagerGatewayRetriever() {
return resourceManagerGatewayRetriever;
}
public BlobServer getBlobServer() {
return blobServer;
}
public HeartbeatServices getHeartbeatServices() {
return heartbeatServices;
}
public JobManagerMetricGroup getJobManagerMetricGroup() {
return jobManagerMetricGroup;
}
public ExecutionGraphInfoStore getArchivedExecutionGraphStore() {
return executionGraphInfoStore;
}
public FatalErrorHandler getFatalErrorHandler() {
return fatalErrorHandler;
}
public HistoryServerArchivist getHistoryServerArchivist() {
return historyServerArchivist;
}
@Nullable
public String getMetricQueryServiceAddress() {
return metricQueryServiceAddress;
}
public DispatcherOperationCaches getOperationCaches() {
return operationCaches;
}
public JobGraphWriter getJobGraphWriter() {
return jobGraphWriter;
}
public JobResultStore getJobResultStore() {
return jobResultStore;
}
JobManagerRunnerFactory getJobManagerRunnerFactory() {
return jobManagerRunnerFactory;
}
CleanupRunnerFactory getCleanupRunnerFactory() {
return cleanupRunnerFactory;
}
public Executor getIoExecutor() {
return ioExecutor;
}
public Collection getFailureEnrichers() {
return failureEnrichers;
}
public static DispatcherServices from(
PartialDispatcherServicesWithJobPersistenceComponents
partialDispatcherServicesWithJobPersistenceComponents,
JobManagerRunnerFactory jobManagerRunnerFactory,
CleanupRunnerFactory cleanupRunnerFactory) {
return new DispatcherServices(
partialDispatcherServicesWithJobPersistenceComponents.getConfiguration(),
partialDispatcherServicesWithJobPersistenceComponents.getHighAvailabilityServices(),
partialDispatcherServicesWithJobPersistenceComponents
.getResourceManagerGatewayRetriever(),
partialDispatcherServicesWithJobPersistenceComponents.getBlobServer(),
partialDispatcherServicesWithJobPersistenceComponents.getHeartbeatServices(),
partialDispatcherServicesWithJobPersistenceComponents
.getArchivedExecutionGraphStore(),
partialDispatcherServicesWithJobPersistenceComponents.getFatalErrorHandler(),
partialDispatcherServicesWithJobPersistenceComponents.getHistoryServerArchivist(),
partialDispatcherServicesWithJobPersistenceComponents
.getMetricQueryServiceAddress(),
partialDispatcherServicesWithJobPersistenceComponents.getOperationCaches(),
partialDispatcherServicesWithJobPersistenceComponents
.getJobManagerMetricGroupFactory()
.create(),
partialDispatcherServicesWithJobPersistenceComponents.getJobGraphWriter(),
partialDispatcherServicesWithJobPersistenceComponents.getJobResultStore(),
jobManagerRunnerFactory,
cleanupRunnerFactory,
partialDispatcherServicesWithJobPersistenceComponents.getIoExecutor(),
partialDispatcherServicesWithJobPersistenceComponents.getFailureEnrichers());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy