blob: 64c353371f869f7ded44cdea2ac7ca5602258c82 [file] [log] [blame]
/*
* 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.gobblin.service.modules.orchestration;
import java.io.IOException;
import java.util.Objects;
import com.typesafe.config.Config;
import javax.inject.Provider;
import lombok.extern.slf4j.Slf4j;
/**
* An abstract base class for {@link MultiActiveLeaseArbiter} factories that use a specific configuration key.
* Subclasses must provide a key to use in the constructor.
*/
@Slf4j
public abstract class MultiActiveLeaseArbiterFactory implements Provider<MultiActiveLeaseArbiter> {
private final Config leaseArbiterConfig;
private final String configPrefix;
public MultiActiveLeaseArbiterFactory(Config config, String configPrefix) {
Objects.requireNonNull(config);
this.configPrefix = Objects.requireNonNull(configPrefix);
if (!config.hasPath(configPrefix)) {
throw new RuntimeException(String.format("Unable to initialize multiActiveLeaseArbiter due to missing "
+ "configurations that should be prefixed by %s.", configPrefix));
}
this.leaseArbiterConfig = config.getConfig(configPrefix);
log.info("Lease arbiter will be initialized with config {}", leaseArbiterConfig);
}
@Override
public MultiActiveLeaseArbiter get() {
try {
return new InstrumentedLeaseArbiter(this.leaseArbiterConfig, new MysqlMultiActiveLeaseArbiter(leaseArbiterConfig), configPrefix);
} catch (IOException e) {
throw new RuntimeException("Failed to initialize " + configPrefix + " lease arbiter due to ", e);
}
}
}