com.palantir.atlasdb.keyvalue.dbkvs.timestamp.MultiSequenceTimestampSeriesProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of atlasdb-dbkvs Show documentation
Show all versions of atlasdb-dbkvs Show documentation
Palantir open source project
/*
* (c) Copyright 2020 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.keyvalue.dbkvs.timestamp;
import com.google.common.base.Preconditions;
import com.google.common.collect.ImmutableSet;
import com.palantir.atlasdb.keyvalue.api.KeyValueService;
import com.palantir.atlasdb.keyvalue.api.TableReference;
import com.palantir.atlasdb.keyvalue.api.TimestampSeries;
import com.palantir.atlasdb.keyvalue.api.TimestampSeriesProvider;
import com.palantir.atlasdb.keyvalue.dbkvs.impl.ConnectionManagerAwareDbKvs;
import com.palantir.exception.PalantirSqlException;
import com.palantir.logsafe.logger.SafeLogger;
import com.palantir.logsafe.logger.SafeLoggerFactory;
import com.palantir.nexus.db.pool.ConnectionManager;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.Set;
import org.apache.commons.dbutils.QueryRunner;
/**
* Reads all of the series from a timestamp table written to by timestamp bound stores using the
* {@link MultiSequencePhysicalBoundStoreStrategy} strategy.
*/
public final class MultiSequenceTimestampSeriesProvider implements TimestampSeriesProvider {
private static final SafeLogger log = SafeLoggerFactory.get(MultiSequenceTimestampSeriesProvider.class);
private final ConnectionManager connManager;
private final TableReference timestampTable;
private MultiSequenceTimestampSeriesProvider(ConnectionManager connManager, TableReference timestampTable) {
this.connManager = connManager;
this.timestampTable = timestampTable;
}
public static TimestampSeriesProvider create(
KeyValueService rawKvs, TableReference tableReference, boolean initializeAsync) {
if (initializeAsync) {
log.warn("Asynchronous initialization not implemented, will initialize synchronously.");
}
Preconditions.checkArgument(
rawKvs instanceof ConnectionManagerAwareDbKvs,
"DbAtlasDbFactory expects a raw kvs of type ConnectionManagerAwareDbKvs, found %s",
rawKvs.getClass());
ConnectionManagerAwareDbKvs dbkvs = (ConnectionManagerAwareDbKvs) rawKvs;
return new MultiSequenceTimestampSeriesProvider(dbkvs.getConnectionManager(), tableReference);
}
@Override
public Set getKnownSeries() {
try (Connection connection = connManager.getConnection()) {
String sql = String.format("SELECT client FROM %s FOR UPDATE", timestampTable.getQualifiedName());
QueryRunner runner = new QueryRunner();
return runner.query(connection, sql, rs -> {
ImmutableSet.Builder series = ImmutableSet.builder();
while (rs.next()) {
series.add(TimestampSeries.of(rs.getString("client")));
}
return series.build();
});
} catch (SQLException e) {
throw PalantirSqlException.create(e);
}
}
}