HDDS-1829 On OM reload/restart OmMetrics#numKeys should be updated. Contributed by Siyao Meng.

This commit is contained in:
Siyao Meng 2019-08-08 13:38:10 -07:00 committed by Arpit Agarwal
parent b0799148cf
commit 14a4ce3cee
8 changed files with 85 additions and 2 deletions

View File

@ -183,4 +183,14 @@ public String getName() throws IOException {
public void close() throws Exception {
// Nothing do for a Column Family.
}
@Override
public long getEstimatedKeyCount() throws IOException {
try {
return db.getLongProperty(handle, "rocksdb.estimate-num-keys");
} catch (RocksDBException e) {
throw toIOException(
"Failed to get estimated key count of table " + getName(), e);
}
}
}

View File

@ -111,6 +111,13 @@ void putWithBatch(BatchOperation batch, KEY key, VALUE value)
*/
String getName() throws IOException;
/**
* Returns the key count of this Table. Note the result can be inaccurate.
* @return Estimated key count of this Table
* @throws IOException on failure
*/
long getEstimatedKeyCount() throws IOException;
/**
* Add entry to the table cache.
*

View File

@ -205,6 +205,11 @@ public String getName() throws IOException {
return rawTable.getName();
}
@Override
public long getEstimatedKeyCount() throws IOException {
return rawTable.getEstimatedKeyCount();
}
@Override
public void close() throws Exception {
rawTable.close();

View File

@ -51,7 +51,8 @@ public class TestRDBTableStore {
Arrays.asList(DFSUtil.bytes2String(RocksDB.DEFAULT_COLUMN_FAMILY),
"First", "Second", "Third",
"Fourth", "Fifth",
"Sixth", "Seventh");
"Sixth", "Seventh",
"Eighth");
@Rule
public TemporaryFolder folder = new TemporaryFolder();
private RDBStore rdbStore = null;
@ -247,4 +248,22 @@ public void testIsExist() throws Exception {
Assert.assertFalse(testTable.isExist(invalidKey));
}
}
@Test
public void testCountEstimatedRowsInTable() throws Exception {
try (Table<byte[], byte[]> testTable = rdbStore.getTable("Eighth")) {
// Add a few keys
final int numKeys = 12345;
for (int i = 0; i < numKeys; i++) {
byte[] key =
RandomStringUtils.random(10).getBytes(StandardCharsets.UTF_8);
byte[] value =
RandomStringUtils.random(10).getBytes(StandardCharsets.UTF_8);
testTable.put(key, value);
}
long keyCount = testTable.getEstimatedKeyCount();
// The result should be larger than zero but not exceed(?) numKeys
Assert.assertTrue(keyCount > 0 && keyCount <= numKeys);
}
}
}

View File

@ -55,7 +55,8 @@ public class TestTypedRDBTableStore {
Arrays.asList(DFSUtil.bytes2String(RocksDB.DEFAULT_COLUMN_FAMILY),
"First", "Second", "Third",
"Fourth", "Fifth",
"Sixth", "Seven", "Eighth");
"Sixth", "Seven", "Eighth",
"Ninth");
@Rule
public TemporaryFolder folder = new TemporaryFolder();
private RDBStore rdbStore = null;
@ -351,4 +352,22 @@ public void testIsExistCache() throws Exception {
Assert.assertFalse(testTable.isExist(key));
}
}
@Test
public void testCountEstimatedRowsInTable() throws Exception {
try (Table<String, String> testTable = createTypedTable(
"Ninth")) {
// Add a few keys
final int numKeys = 12345;
for (int i = 0; i < numKeys; i++) {
String key =
RandomStringUtils.random(10);
String value = RandomStringUtils.random(10);
testTable.put(key, value);
}
long keyCount = testTable.getEstimatedKeyCount();
// The result should be larger than zero but not exceed(?) numKeys
Assert.assertTrue(keyCount > 0 && keyCount <= numKeys);
}
}
}

View File

@ -316,4 +316,15 @@ String getMultipartKey(String volume, String bucket, String key, String
*/
<KEY, VALUE> long countRowsInTable(Table<KEY, VALUE> table)
throws IOException;
/**
* Returns an estimated number of rows in a table. This is much quicker
* than {@link OMMetadataManager#countRowsInTable} but the result can be
* inaccurate.
* @param table Table
* @return long Estimated number of rows in the table.
* @throws IOException
*/
<KEY, VALUE> long countEstimatedRowsInTable(Table<KEY, VALUE> table)
throws IOException;
}

View File

@ -816,6 +816,16 @@ public <KEY, VALUE> long countRowsInTable(Table<KEY, VALUE> table)
return count;
}
@Override
public <KEY, VALUE> long countEstimatedRowsInTable(Table<KEY, VALUE> table)
throws IOException {
long count = 0;
if (table != null) {
count = table.getEstimatedKeyCount();
}
return count;
}
@Override
public Table<String, S3SecretValue> getS3SecretTable() {
return s3SecretTable;

View File

@ -3270,6 +3270,8 @@ void reloadOMState(long newSnapshotIndex) throws IOException {
.getVolumeTable()));
metrics.setNumBuckets(metadataManager.countRowsInTable(metadataManager
.getBucketTable()));
metrics.setNumKeys(metadataManager.countEstimatedRowsInTable(metadataManager
.getKeyTable()));
// Delete the omMetrics file if it exists and save the a new metrics file
// with new data