org.apache.flink.runtime.minicluster.MiniClusterConfiguration Maven / Gradle / Ivy
/*
* 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.minicluster;
import org.apache.flink.api.common.time.Time;
import org.apache.flink.configuration.ConfigConstants;
import org.apache.flink.configuration.Configuration;
import org.apache.flink.configuration.JobManagerOptions;
import org.apache.flink.configuration.RestOptions;
import org.apache.flink.configuration.TaskManagerOptions;
import org.apache.flink.configuration.UnmodifiableConfiguration;
import org.apache.flink.runtime.akka.AkkaUtils;
import org.apache.flink.util.Preconditions;
import javax.annotation.Nullable;
import scala.concurrent.duration.FiniteDuration;
import static org.apache.flink.runtime.minicluster.MiniClusterConfiguration.RpcServiceSharing.SHARED;
/**
* Configuration object for the {@link MiniCluster}.
*/
public class MiniClusterConfiguration {
private final UnmodifiableConfiguration configuration;
private final int numTaskManagers;
private final RpcServiceSharing rpcServiceSharing;
@Nullable
private final String commonBindAddress;
// ------------------------------------------------------------------------
// Construction
// ------------------------------------------------------------------------
public MiniClusterConfiguration(
Configuration configuration,
int numTaskManagers,
RpcServiceSharing rpcServiceSharing,
@Nullable String commonBindAddress) {
this.configuration = new UnmodifiableConfiguration(Preconditions.checkNotNull(configuration));
this.numTaskManagers = numTaskManagers;
this.rpcServiceSharing = Preconditions.checkNotNull(rpcServiceSharing);
this.commonBindAddress = commonBindAddress;
}
// ------------------------------------------------------------------------
// getters
// ------------------------------------------------------------------------
public RpcServiceSharing getRpcServiceSharing() {
return rpcServiceSharing;
}
public int getNumTaskManagers() {
return numTaskManagers;
}
public String getJobManagerBindAddress() {
return commonBindAddress != null ?
commonBindAddress :
configuration.getString(JobManagerOptions.ADDRESS, "localhost");
}
public String getTaskManagerBindAddress() {
return commonBindAddress != null ?
commonBindAddress :
configuration.getString(ConfigConstants.TASK_MANAGER_HOSTNAME_KEY, "localhost");
}
public String getResourceManagerBindAddress() {
return commonBindAddress != null ?
commonBindAddress :
configuration.getString(JobManagerOptions.ADDRESS, "localhost"); // TODO: Introduce proper configuration constant for the resource manager hostname
}
public Time getRpcTimeout() {
FiniteDuration duration = AkkaUtils.getTimeout(configuration);
return Time.of(duration.length(), duration.unit());
}
public UnmodifiableConfiguration getConfiguration() {
return configuration;
}
@Override
public String toString() {
return "MiniClusterConfiguration {" +
"singleRpcService=" + rpcServiceSharing +
", numTaskManagers=" + numTaskManagers +
", commonBindAddress='" + commonBindAddress + '\'' +
", config=" + configuration +
'}';
}
// ----------------------------------------------------------------------------------
// Enums
// ----------------------------------------------------------------------------------
/**
* Enum which defines whether the mini cluster components use a shared RpcService
* or whether every component gets its own dedicated RpcService started.
*/
public enum RpcServiceSharing {
SHARED, // a single shared rpc service
DEDICATED // every component gets his own dedicated rpc service
}
// ----------------------------------------------------------------------------------
// Builder
// ----------------------------------------------------------------------------------
/**
* Builder for the MiniClusterConfiguration.
*/
public static class Builder {
private Configuration configuration = new Configuration();
private int numTaskManagers = 1;
private int numSlotsPerTaskManager = 1;
private RpcServiceSharing rpcServiceSharing = SHARED;
@Nullable
private String commonBindAddress = null;
public Builder setConfiguration(Configuration configuration1) {
this.configuration = Preconditions.checkNotNull(configuration1);
return this;
}
public Builder setNumTaskManagers(int numTaskManagers) {
this.numTaskManagers = numTaskManagers;
return this;
}
public Builder setNumSlotsPerTaskManager(int numSlotsPerTaskManager) {
this.numSlotsPerTaskManager = numSlotsPerTaskManager;
return this;
}
public Builder setRpcServiceSharing(RpcServiceSharing rpcServiceSharing) {
this.rpcServiceSharing = Preconditions.checkNotNull(rpcServiceSharing);
return this;
}
public Builder setCommonBindAddress(String commonBindAddress) {
this.commonBindAddress = commonBindAddress;
return this;
}
public MiniClusterConfiguration build() {
final Configuration modifiedConfiguration = new Configuration(configuration);
modifiedConfiguration.setInteger(TaskManagerOptions.NUM_TASK_SLOTS, numSlotsPerTaskManager);
modifiedConfiguration.setString(
RestOptions.ADDRESS,
modifiedConfiguration.getString(RestOptions.ADDRESS, "localhost"));
return new MiniClusterConfiguration(
modifiedConfiguration,
numTaskManagers,
rpcServiceSharing,
commonBindAddress);
}
}
}