534c255c7a
Summary: Major changes in this PR: * Implement CassandraCompactionFilter to remove expired columns and rows (if all column expired) * Move cassandra related code from utilities/merge_operators/cassandra to utilities/cassandra/* * Switch to use shared_ptr<> from uniqu_ptr for Column membership management in RowValue. Since columns do have multiple owners in Merge and GC process, use shared_ptr helps make RowValue immutable. * Rename cassandra_merge_test to cassandra_functional_test and add two TTL compaction related tests there. Closes https://github.com/facebook/rocksdb/pull/2588 Differential Revision: D5430010 Pulled By: wpc fbshipit-source-id: 9566c21e06de17491d486a68c70f52d501f27687
70 lines
2.4 KiB
C++
70 lines
2.4 KiB
C++
// Copyright (c) 2017-present, Facebook, Inc. All rights reserved.
|
|
// 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
|
|
// of patent rights can be found in the PATENTS file in the same directory.
|
|
// This source code is also licensed under the GPLv2 license found in the
|
|
// COPYING file in the root directory of this source tree.
|
|
|
|
#include "test_utils.h"
|
|
|
|
namespace rocksdb {
|
|
namespace cassandra {
|
|
const char kData[] = {'d', 'a', 't', 'a'};
|
|
const char kExpiringData[] = {'e', 'd', 'a', 't', 'a'};
|
|
const int32_t kLocalDeletionTime = 1;
|
|
const int32_t kTtl = 86400;
|
|
const int8_t kColumn = 0;
|
|
const int8_t kTombstone = 1;
|
|
const int8_t kExpiringColumn = 2;
|
|
|
|
std::shared_ptr<ColumnBase> CreateTestColumn(int8_t mask,
|
|
int8_t index,
|
|
int64_t timestamp) {
|
|
if ((mask & ColumnTypeMask::DELETION_MASK) != 0) {
|
|
return std::shared_ptr<Tombstone>(new Tombstone(
|
|
mask, index, kLocalDeletionTime, timestamp));
|
|
} else if ((mask & ColumnTypeMask::EXPIRATION_MASK) != 0) {
|
|
return std::shared_ptr<ExpiringColumn>(new ExpiringColumn(
|
|
mask, index, timestamp, sizeof(kExpiringData), kExpiringData, kTtl));
|
|
} else {
|
|
return std::shared_ptr<Column>(
|
|
new Column(mask, index, timestamp, sizeof(kData), kData));
|
|
}
|
|
}
|
|
|
|
RowValue CreateTestRowValue(
|
|
std::vector<std::tuple<int8_t, int8_t, int64_t>> column_specs) {
|
|
std::vector<std::shared_ptr<ColumnBase>> columns;
|
|
int64_t last_modified_time = 0;
|
|
for (auto spec: column_specs) {
|
|
auto c = CreateTestColumn(std::get<0>(spec), std::get<1>(spec),
|
|
std::get<2>(spec));
|
|
last_modified_time = std::max(last_modified_time, c -> Timestamp());
|
|
columns.push_back(std::move(c));
|
|
}
|
|
return RowValue(std::move(columns), last_modified_time);
|
|
}
|
|
|
|
RowValue CreateRowTombstone(int64_t timestamp) {
|
|
return RowValue(kLocalDeletionTime, timestamp);
|
|
}
|
|
|
|
void VerifyRowValueColumns(
|
|
std::vector<std::shared_ptr<ColumnBase>> &columns,
|
|
std::size_t index_of_vector,
|
|
int8_t expected_mask,
|
|
int8_t expected_index,
|
|
int64_t expected_timestamp
|
|
) {
|
|
EXPECT_EQ(expected_timestamp, columns[index_of_vector]->Timestamp());
|
|
EXPECT_EQ(expected_mask, columns[index_of_vector]->Mask());
|
|
EXPECT_EQ(expected_index, columns[index_of_vector]->Index());
|
|
}
|
|
|
|
int64_t ToMicroSeconds(int64_t seconds) {
|
|
return seconds * (int64_t)1000000;
|
|
}
|
|
|
|
}
|
|
}
|