com.palantir.atlasdb.config.LeaderConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of atlasdb-api Show documentation
Show all versions of atlasdb-api Show documentation
Palantir open source project
/*
* (c) Copyright 2018 Palantir Technologies Inc. All rights reserved.
*
* Licensed 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 com.palantir.atlasdb.config;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.palantir.conjure.java.api.config.ssl.SslConfiguration;
import com.palantir.logsafe.DoNotLog;
import com.palantir.logsafe.Preconditions;
import com.palantir.logsafe.SafeArg;
import java.io.File;
import java.time.Duration;
import java.util.Optional;
import java.util.Set;
import org.immutables.value.Value;
@DoNotLog
@JsonDeserialize(as = ImmutableLeaderConfig.class)
@JsonSerialize(as = ImmutableLeaderConfig.class)
@Value.Immutable
@SuppressWarnings("DesignForExtension")
public abstract class LeaderConfig {
public abstract int quorumSize();
@Value.Default
public File learnerLogDir() {
return new File("var/data/paxos/learner");
}
@Value.Default
public File acceptorLogDir() {
return new File("var/data/paxos/acceptor");
}
public abstract String localServer();
public abstract Set leaders();
public abstract Optional sslConfiguration();
@Value.Default
long pingRateMs() {
return 5000L;
}
@JsonIgnore
@Value.Derived
@Value.Auxiliary
public Duration pingRate() {
return Duration.ofMillis(pingRateMs());
}
@Value.Default
long randomWaitBeforeProposingLeadershipMs() {
return 1000L;
}
@JsonIgnore
@Value.Derived
@Value.Auxiliary
public Duration randomWaitBeforeProposingLeadership() {
return Duration.ofMillis(randomWaitBeforeProposingLeadershipMs());
}
@Value.Default
long leaderPingResponseWaitMs() {
return 5000L;
}
@JsonIgnore
@Value.Derived
@Value.Auxiliary
public Duration leaderPingResponseWait() {
return Duration.ofMillis(leaderPingResponseWaitMs());
}
@JsonIgnore
@Value.Default
public Duration leaderAddressCacheTtl() {
return Duration.ofSeconds(15);
}
@Value.Check
protected final void check() {
Preconditions.checkState(
quorumSize() == 1 && leaders().size() == 1,
"AtlasDb no longer supports multi-node embedded services",
SafeArg.of("quorumSize", quorumSize()),
SafeArg.of("leaders", leaders()));
Preconditions.checkArgument(
leaders().contains(localServer()),
"The localServer must included in the leader entries.",
SafeArg.of("localServer", localServer()),
SafeArg.of("leaders", leaders()));
}
}