blob: 42b9b77d2d87471051cd3a5858b5cc490a1f4480 [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.hadoop.hdds.utils.db;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.time.Duration;
import java.time.Instant;
import org.apache.commons.lang3.StringUtils;
import org.rocksdb.Checkpoint;
import org.rocksdb.RocksDB;
import org.rocksdb.RocksDBException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* RocksDB Checkpoint Manager, used to create and cleanup checkpoints.
*/
public class RDBCheckpointManager {
private final Checkpoint checkpoint;
private final RocksDB db;
public static final String RDB_CHECKPOINT_DIR_PREFIX = "rdb_checkpoint_";
private static final Logger LOG =
LoggerFactory.getLogger(RDBCheckpointManager.class);
private String checkpointNamePrefix = "";
public RDBCheckpointManager(RocksDB rocksDB) {
this.db = rocksDB;
this.checkpoint = Checkpoint.create(rocksDB);
}
/**
* Create a checkpoint manager with a prefix to be added to the
* snapshots created.
*
* @param rocksDB DB instance
* @param checkpointPrefix prefix string.
*/
public RDBCheckpointManager(RocksDB rocksDB, String checkpointPrefix) {
this.db = rocksDB;
this.checkpointNamePrefix = checkpointPrefix;
this.checkpoint = Checkpoint.create(rocksDB);
}
/**
* Create RocksDB snapshot by saving a checkpoint to a directory.
*
* @param parentDir The directory where the checkpoint needs to be created.
* @return RocksDB specific Checkpoint information object.
*/
public RocksDBCheckpoint createCheckpoint(String parentDir) {
try {
long currentTime = System.currentTimeMillis();
String checkpointDir = StringUtils.EMPTY;
if (StringUtils.isNotEmpty(checkpointNamePrefix)) {
checkpointDir += checkpointNamePrefix;
}
checkpointDir += "_" + RDB_CHECKPOINT_DIR_PREFIX + currentTime;
Path checkpointPath = Paths.get(parentDir, checkpointDir);
Instant start = Instant.now();
checkpoint.createCheckpoint(checkpointPath.toString());
Instant end = Instant.now();
long duration = Duration.between(start, end).toMillis();
LOG.info("Created checkpoint at " + checkpointPath.toString() + " in "
+ duration + " milliseconds");
return new RocksDBCheckpoint(
checkpointPath,
currentTime,
db.getLatestSequenceNumber(), //Best guesstimate here. Not accurate.
duration);
} catch (RocksDBException e) {
LOG.error("Unable to create RocksDB Snapshot.", e);
}
return null;
}
}