Summary: TTLDB Support exposed in Java-API. It is now possible to open a datbase using the RocksDB time to live feature. Test Plan: make rocksdbjava make test mvn -f rocksjni.pom package @Adam please test mac osx compile Reviewers: yhchiang, adamretter, ankgup87 Subscribers: dhruba, adam Differential Revision: https://reviews.facebook.net/D31449main
parent
5ff8aec4db
commit
859c54a03d
@ -1,113 +1,169 @@ |
|||||||
// Copyright (c) 2014, Facebook, Inc. All rights reserved.
|
// Copyright (c) 2014, Facebook, Inc. All rights reserved.
|
||||||
// This source code is licensed under the BSD-style license found in the
|
// This source code is licensed under the BSD-style license found in the
|
||||||
// LICENSE file in the root directory of this source tree. An additional grant
|
// LICENSE file in the root directory of this source tree. An additional grant
|
||||||
// of patent rights can be found in the PATENTS file in the same directory.
|
// of patent rights can be found in the PATENTS file in the same directory.
|
||||||
|
|
||||||
package org.rocksdb.test; |
package org.rocksdb.test; |
||||||
|
|
||||||
import org.junit.ClassRule; |
import org.junit.ClassRule; |
||||||
import org.junit.Rule; |
import org.junit.Rule; |
||||||
import org.junit.Test; |
import org.junit.Test; |
||||||
import org.junit.rules.TemporaryFolder; |
import org.junit.rules.TemporaryFolder; |
||||||
import org.rocksdb.*; |
import org.rocksdb.*; |
||||||
|
|
||||||
import java.util.concurrent.TimeUnit; |
import java.util.ArrayList; |
||||||
|
import java.util.List; |
||||||
import static org.assertj.core.api.Assertions.assertThat; |
import java.util.concurrent.TimeUnit; |
||||||
|
|
||||||
public class TtlDBTest { |
import static org.assertj.core.api.Assertions.assertThat; |
||||||
|
|
||||||
@ClassRule |
public class TtlDBTest { |
||||||
public static final RocksMemoryResource rocksMemoryResource = |
|
||||||
new RocksMemoryResource(); |
@ClassRule |
||||||
|
public static final RocksMemoryResource rocksMemoryResource = |
||||||
@Rule |
new RocksMemoryResource(); |
||||||
public TemporaryFolder dbFolder = new TemporaryFolder(); |
|
||||||
|
@Rule |
||||||
@Test |
public TemporaryFolder dbFolder = new TemporaryFolder(); |
||||||
public void ttlDBOpen() throws RocksDBException, |
|
||||||
InterruptedException { |
@Test |
||||||
Options options = null; |
public void ttlDBOpen() throws RocksDBException, |
||||||
TtlDB ttlDB = null; |
InterruptedException { |
||||||
try { |
Options options = null; |
||||||
options = new Options(). |
TtlDB ttlDB = null; |
||||||
setCreateIfMissing(true). |
try { |
||||||
setMaxGrandparentOverlapFactor(0). |
options = new Options(). |
||||||
setMaxMemCompactionLevel(0); |
setCreateIfMissing(true). |
||||||
ttlDB = TtlDB.open(options, |
setMaxGrandparentOverlapFactor(0). |
||||||
dbFolder.getRoot().getAbsolutePath()); |
setMaxMemCompactionLevel(0); |
||||||
ttlDB.put("key".getBytes(), "value".getBytes()); |
ttlDB = TtlDB.open(options, |
||||||
assertThat(ttlDB.get("key".getBytes())). |
dbFolder.getRoot().getAbsolutePath()); |
||||||
isEqualTo("value".getBytes()); |
ttlDB.put("key".getBytes(), "value".getBytes()); |
||||||
assertThat(ttlDB.get("key".getBytes())).isNotNull(); |
assertThat(ttlDB.get("key".getBytes())). |
||||||
} finally { |
isEqualTo("value".getBytes()); |
||||||
if (ttlDB != null) { |
assertThat(ttlDB.get("key".getBytes())).isNotNull(); |
||||||
ttlDB.close(); |
} finally { |
||||||
} |
if (ttlDB != null) { |
||||||
if (options != null) { |
ttlDB.close(); |
||||||
options.dispose(); |
} |
||||||
} |
if (options != null) { |
||||||
} |
options.dispose(); |
||||||
} |
} |
||||||
|
} |
||||||
@Test |
} |
||||||
public void ttlDBOpenWithTtl() throws RocksDBException, |
|
||||||
InterruptedException { |
@Test |
||||||
Options options = null; |
public void ttlDBOpenWithTtl() throws RocksDBException, |
||||||
TtlDB ttlDB = null; |
InterruptedException { |
||||||
try { |
Options options = null; |
||||||
options = new Options(). |
TtlDB ttlDB = null; |
||||||
setCreateIfMissing(true). |
try { |
||||||
setMaxGrandparentOverlapFactor(0). |
options = new Options(). |
||||||
setMaxMemCompactionLevel(0); |
setCreateIfMissing(true). |
||||||
ttlDB = TtlDB.open(options, dbFolder.getRoot().getAbsolutePath(), |
setMaxGrandparentOverlapFactor(0). |
||||||
1, false); |
setMaxMemCompactionLevel(0); |
||||||
ttlDB.put("key".getBytes(), "value".getBytes()); |
ttlDB = TtlDB.open(options, dbFolder.getRoot().getAbsolutePath(), |
||||||
assertThat(ttlDB.get("key".getBytes())). |
1, false); |
||||||
isEqualTo("value".getBytes()); |
ttlDB.put("key".getBytes(), "value".getBytes()); |
||||||
TimeUnit.SECONDS.sleep(2); |
assertThat(ttlDB.get("key".getBytes())). |
||||||
|
isEqualTo("value".getBytes()); |
||||||
ttlDB.compactRange(); |
TimeUnit.SECONDS.sleep(2); |
||||||
assertThat(ttlDB.get("key".getBytes())).isNull(); |
|
||||||
} finally { |
ttlDB.compactRange(); |
||||||
if (ttlDB != null) { |
assertThat(ttlDB.get("key".getBytes())).isNull(); |
||||||
ttlDB.close(); |
} finally { |
||||||
} |
if (ttlDB != null) { |
||||||
if (options != null) { |
ttlDB.close(); |
||||||
options.dispose(); |
} |
||||||
} |
if (options != null) { |
||||||
} |
options.dispose(); |
||||||
} |
} |
||||||
|
} |
||||||
@Test |
} |
||||||
public void createTtlColumnFamily() throws RocksDBException, |
|
||||||
InterruptedException { |
@Test |
||||||
Options options = null; |
public void ttlDbOpenWithColumnFamilies() throws RocksDBException, InterruptedException { |
||||||
TtlDB ttlDB = null; |
DBOptions dbOptions = null; |
||||||
ColumnFamilyHandle columnFamilyHandle = null; |
TtlDB ttlDB = null; |
||||||
try { |
List<ColumnFamilyDescriptor> cfNames = |
||||||
options = new Options().setCreateIfMissing(true); |
new ArrayList<>(); |
||||||
ttlDB = TtlDB.open(options, |
List<ColumnFamilyHandle> columnFamilyHandleList = |
||||||
dbFolder.getRoot().getAbsolutePath()); |
new ArrayList<>(); |
||||||
columnFamilyHandle = ttlDB.createColumnFamilyWithTtl( |
cfNames.add(new ColumnFamilyDescriptor(RocksDB.DEFAULT_COLUMN_FAMILY)); |
||||||
new ColumnFamilyDescriptor("new_cf"), 1); |
cfNames.add(new ColumnFamilyDescriptor("new_cf".getBytes())); |
||||||
ttlDB.put(columnFamilyHandle, "key".getBytes(), |
List<Integer> ttlValues = new ArrayList<>(); |
||||||
"value".getBytes()); |
// Default column family with infinite lifetime
|
||||||
assertThat(ttlDB.get(columnFamilyHandle, "key".getBytes())). |
ttlValues.add(0); |
||||||
isEqualTo("value".getBytes()); |
// new column family with 1 second ttl
|
||||||
Thread.sleep(2500); |
ttlValues.add(1); |
||||||
ttlDB.compactRange(columnFamilyHandle); |
|
||||||
assertThat(ttlDB.get(columnFamilyHandle, "key".getBytes())).isNull(); |
try { |
||||||
} finally { |
dbOptions = new DBOptions(). |
||||||
if (columnFamilyHandle != null) { |
setCreateMissingColumnFamilies(true). |
||||||
columnFamilyHandle.dispose(); |
setCreateIfMissing(true); |
||||||
} |
ttlDB = TtlDB.open(dbOptions, dbFolder.getRoot().getAbsolutePath(), |
||||||
if (ttlDB != null) { |
cfNames, columnFamilyHandleList, ttlValues, false); |
||||||
ttlDB.close(); |
|
||||||
} |
ttlDB.put("key".getBytes(), "value".getBytes()); |
||||||
if (options != null) { |
assertThat(ttlDB.get("key".getBytes())). |
||||||
options.dispose(); |
isEqualTo("value".getBytes()); |
||||||
} |
ttlDB.put(columnFamilyHandleList.get(1), "key".getBytes(), |
||||||
} |
"value".getBytes()); |
||||||
} |
assertThat(ttlDB.get(columnFamilyHandleList.get(1), |
||||||
} |
"key".getBytes())).isEqualTo("value".getBytes()); |
||||||
|
TimeUnit.SECONDS.sleep(2); |
||||||
|
|
||||||
|
ttlDB.compactRange(); |
||||||
|
ttlDB.compactRange(columnFamilyHandleList.get(1)); |
||||||
|
|
||||||
|
assertThat(ttlDB.get("key".getBytes())).isNotNull(); |
||||||
|
assertThat(ttlDB.get(columnFamilyHandleList.get(1), |
||||||
|
"key".getBytes())).isNull(); |
||||||
|
|
||||||
|
|
||||||
|
} finally { |
||||||
|
for (ColumnFamilyHandle columnFamilyHandle : |
||||||
|
columnFamilyHandleList) { |
||||||
|
columnFamilyHandle.dispose(); |
||||||
|
} |
||||||
|
if (ttlDB != null) { |
||||||
|
ttlDB.close(); |
||||||
|
} |
||||||
|
if (dbOptions != null) { |
||||||
|
dbOptions.dispose(); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void createTtlColumnFamily() throws RocksDBException, |
||||||
|
InterruptedException { |
||||||
|
Options options = null; |
||||||
|
TtlDB ttlDB = null; |
||||||
|
ColumnFamilyHandle columnFamilyHandle = null; |
||||||
|
try { |
||||||
|
options = new Options().setCreateIfMissing(true); |
||||||
|
ttlDB = TtlDB.open(options, |
||||||
|
dbFolder.getRoot().getAbsolutePath()); |
||||||
|
columnFamilyHandle = ttlDB.createColumnFamilyWithTtl( |
||||||
|
new ColumnFamilyDescriptor("new_cf".getBytes()), 1); |
||||||
|
ttlDB.put(columnFamilyHandle, "key".getBytes(), |
||||||
|
"value".getBytes()); |
||||||
|
assertThat(ttlDB.get(columnFamilyHandle, "key".getBytes())). |
||||||
|
isEqualTo("value".getBytes()); |
||||||
|
TimeUnit.SECONDS.sleep(2); |
||||||
|
ttlDB.compactRange(columnFamilyHandle); |
||||||
|
assertThat(ttlDB.get(columnFamilyHandle, "key".getBytes())).isNull(); |
||||||
|
} finally { |
||||||
|
if (columnFamilyHandle != null) { |
||||||
|
columnFamilyHandle.dispose(); |
||||||
|
} |
||||||
|
if (ttlDB != null) { |
||||||
|
ttlDB.close(); |
||||||
|
} |
||||||
|
if (options != null) { |
||||||
|
options.dispose(); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
Loading…
Reference in new issue