-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
57a6224
commit 8fa52a8
Showing
4 changed files
with
346 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,320 @@ | ||
/* Copyright (c) 2018 vesoft inc. All rights reserved. | ||
* | ||
* This source code is licensed under Apache 2.0 License, | ||
* attached with Common Clause Condition 1.0, found in the LICENSES directory. | ||
*/ | ||
|
||
#include <gtest/gtest.h> | ||
#include <rocksdb/db.h> | ||
|
||
#include "codec/RowReader.h" | ||
#include "common/base/Base.h" | ||
#include "common/fs/TempDir.h" | ||
#include "common/utils/NebulaKeyUtils.h" | ||
#include "mock/AdHocIndexManager.h" | ||
#include "mock/AdHocSchemaManager.h" | ||
#include "mock/MockCluster.h" | ||
#include "storage/index/LookupProcessor.h" | ||
#include "storage/query/GetNeighborsProcessor.h" | ||
#include "storage/test/TestUtils.h" | ||
|
||
namespace nebula { | ||
namespace storage { | ||
class SampleLimitForQueryTest : public ::testing::Test { | ||
protected: | ||
GraphSpaceID spaceId = 1; | ||
TagID tagId = 100; | ||
EdgeType edgeType = 200; | ||
IndexID tagIndex = 101; | ||
IndexID edgeIndex = 201; | ||
size_t vertexLen = 32; | ||
const std::vector<PartitionID> parts{1, 2, 3, 4, 5, 6}; | ||
|
||
private: | ||
std::unique_ptr<kvstore::NebulaStore> initKV(kvstore::KVOptions options) { | ||
HostAddr localHost; | ||
auto ioPool = std::make_shared<folly::IOThreadPoolExecutor>(4); | ||
auto workers = apache::thrift::concurrency::PriorityThreadManager::newPriorityThreadManager( | ||
1, true /*stats*/); | ||
workers->setNamePrefix("executor"); | ||
workers->start(); | ||
localHost.host = "0.0.0.0"; | ||
localHost.port = network::NetworkUtils::getAvailablePort(); | ||
auto store = | ||
std::make_unique<kvstore::NebulaStore>(std::move(options), ioPool, localHost, workers); | ||
store->init(); | ||
return store; | ||
} | ||
|
||
std::unique_ptr<kvstore::MemPartManager> memPartMan() { | ||
auto memPartMan = std::make_unique<kvstore::MemPartManager>(); | ||
// GraphSpaceID => {PartitionIDs} | ||
auto& partsMap = memPartMan->partsMap(); | ||
for (auto partId : parts) { | ||
partsMap[spaceId][partId] = meta::PartHosts(); | ||
} | ||
return memPartMan; | ||
} | ||
|
||
std::shared_ptr<meta::NebulaSchemaProvider> mockSchema() { | ||
std::shared_ptr<meta::NebulaSchemaProvider> schema(new meta::NebulaSchemaProvider(0)); | ||
schema->addField("col1", meta::cpp2::PropertyType::INT64); | ||
schema->addField("col2", meta::cpp2::PropertyType::STRING); | ||
return schema; | ||
} | ||
|
||
std::unique_ptr<meta::SchemaManager> memSchemaMan() { | ||
auto schemaMan = std::make_unique<nebula::mock::AdHocSchemaManager>(6); | ||
schemaMan->addTagSchema(spaceId, tagId, mockSchema()); | ||
schemaMan->addEdgeSchema(spaceId, edgeType, mockSchema()); | ||
return schemaMan; | ||
} | ||
|
||
std::vector<nebula::meta::cpp2::ColumnDef> genCols() { | ||
std::vector<nebula::meta::cpp2::ColumnDef> cols; | ||
meta::cpp2::ColumnDef col; | ||
col.name = "col1"; | ||
col.type.set_type(meta::cpp2::PropertyType::INT64); | ||
cols.emplace_back(std::move(col)); | ||
return cols; | ||
} | ||
|
||
std::unique_ptr<meta::IndexManager> memIndexMan(bool isEmpty = false) { | ||
auto indexMan = std::make_unique<nebula::mock::AdHocIndexManager>(); | ||
if (isEmpty) { | ||
return indexMan; | ||
} | ||
indexMan->addTagIndex(spaceId, tagId, tagIndex, genCols()); | ||
indexMan->addEdgeIndex(spaceId, edgeType, edgeIndex, genCols()); | ||
return indexMan; | ||
} | ||
|
||
protected: | ||
bool mockData() { | ||
auto tag = schemaMan_->getTagSchema(spaceId, tagId); | ||
if (!tag) { | ||
LOG(INFO) << "Space " << spaceId << ", Tag " << tagId << " invalid"; | ||
return false; | ||
} | ||
|
||
// Edge and vertex have the same schema of structure, so it's good to only generate it once. | ||
RowWriterV2 writer(tag.get()); | ||
auto r1 = writer.setValue(0, 888); | ||
if (r1 != WriteResult::SUCCEEDED) { | ||
LOG(ERROR) << "Invalid prop col1"; | ||
return false; | ||
} | ||
auto r2 = writer.setValue(1, "row"); | ||
if (r2 != WriteResult::SUCCEEDED) { | ||
LOG(ERROR) << "Invalid prop col2"; | ||
return false; | ||
} | ||
auto ret = writer.finish(); | ||
if (ret != WriteResult::SUCCEEDED) { | ||
LOG(ERROR) << "Failed to write data"; | ||
return false; | ||
} | ||
auto val = std::move(writer).moveEncodedStr(); | ||
|
||
for (auto pId : parts) { | ||
std::vector<kvstore::KV> data; | ||
for (int64_t vid = pId * 1000; vid < (pId + 1) * 1000; vid++) { | ||
auto vertex = folly::to<std::string>(vid); | ||
auto edgeKey = NebulaKeyUtils::edgeKey(8, pId, vertex, edgeType, 0, vertex); | ||
auto vertexKey = NebulaKeyUtils::vertexKey(8, pId, vertex, tagId); | ||
data.emplace_back(std::move(edgeKey), val); | ||
data.emplace_back(std::move(vertexKey), val); | ||
if (indexMan_ != nullptr) { | ||
if (indexMan_->getTagIndex(spaceId, tagIndex).ok()) { | ||
auto vertexIndexKey = IndexKeyUtils::vertexIndexKey( | ||
vertexLen, pId, tagIndex, vertex, IndexKeyUtils::encodeValues({888}, genCols())); | ||
data.emplace_back(std::move(vertexIndexKey), ""); | ||
} | ||
if (indexMan_->getEdgeIndex(spaceId, edgeIndex).ok()) { | ||
auto edgeIndexKey = | ||
IndexKeyUtils::edgeIndexKey(vertexLen, | ||
pId, | ||
edgeIndex, | ||
vertex, | ||
0, | ||
vertex, | ||
IndexKeyUtils::encodeValues({888}, genCols())); | ||
data.emplace_back(std::move(edgeIndexKey), ""); | ||
} | ||
} | ||
} | ||
folly::Baton<true, std::atomic> baton; | ||
storageKV_->asyncMultiPut(spaceId, pId, std::move(data), [&](nebula::cpp2::ErrorCode code) { | ||
EXPECT_EQ(code, nebula::cpp2::ErrorCode::SUCCEEDED); | ||
baton.post(); | ||
}); | ||
baton.wait(); | ||
} | ||
return true; | ||
} | ||
|
||
void SetUp() override { | ||
rootPath_ = new fs::TempDir("/tmp/SampleLimitForQueryTest.XXXXXX"); | ||
kvstore::KVOptions options; | ||
schemaMan_ = memSchemaMan(); | ||
indexMan_ = memIndexMan(); | ||
options.partMan_ = memPartMan(); | ||
options.schemaMan_ = schemaMan_.get(); | ||
|
||
std::vector<std::string> paths; | ||
paths.emplace_back(folly::stringPrintf("%s/disk1", rootPath_->path())); | ||
|
||
options.dataPaths_ = std::move(paths); | ||
storageKV_ = initKV(std::move(options)); | ||
mock::MockCluster::waitUntilAllElected(storageKV_.get(), spaceId, parts); | ||
|
||
storageEnv_ = std::make_unique<storage::StorageEnv>(); | ||
storageEnv_->schemaMan_ = schemaMan_.get(); | ||
storageEnv_->indexMan_ = indexMan_.get(); | ||
storageEnv_->kvstore_ = storageKV_.get(); | ||
storageEnv_->rebuildIndexGuard_ = std::make_unique<storage::IndexGuard>(); | ||
storageEnv_->verticesML_ = std::make_unique<storage::VerticesMemLock>(); | ||
storageEnv_->edgesML_ = std::make_unique<storage::EdgesMemLock>(); | ||
EXPECT_TRUE(mockData()); | ||
} | ||
|
||
void TearDown() override { delete rootPath_; } | ||
|
||
protected: | ||
fs::TempDir* rootPath_; | ||
std::unique_ptr<meta::MetaClient> metaClient_; | ||
std::unique_ptr<meta::SchemaManager> schemaMan_{nullptr}; | ||
std::unique_ptr<meta::IndexManager> indexMan_{nullptr}; | ||
std::unique_ptr<kvstore::NebulaStore> storageKV_{nullptr}; | ||
std::unique_ptr<storage::StorageEnv> storageEnv_{nullptr}; | ||
}; | ||
|
||
TEST_F(SampleLimitForQueryTest, LookupTagIndexLimit) { | ||
cpp2::LookupIndexRequest req; | ||
nebula::storage::cpp2::IndexSpec indices; | ||
req.set_space_id(spaceId); | ||
nebula::cpp2::SchemaID schemaId; | ||
schemaId.set_tag_id(tagId); | ||
indices.set_schema_id(schemaId); | ||
req.set_parts(parts); | ||
std::vector<std::string> returnCols; | ||
returnCols.emplace_back(kVid); | ||
req.set_return_columns(std::move(returnCols)); | ||
cpp2::IndexQueryContext context1; | ||
context1.set_index_id(tagIndex); | ||
decltype(indices.contexts) contexts; | ||
contexts.emplace_back(std::move(context1)); | ||
indices.set_contexts(std::move(contexts)); | ||
req.set_indices(std::move(indices)); | ||
|
||
// verify all data | ||
{ | ||
auto* processor = LookupProcessor::instance(storageEnv_.get(), nullptr, nullptr); | ||
auto fut = processor->getFuture(); | ||
processor->process(req); | ||
auto resp = std::move(fut).get(); | ||
EXPECT_EQ(0, resp.result.failed_parts.size()); | ||
EXPECT_EQ(6000, resp.get_data()->rows.size()); | ||
} | ||
|
||
// limit 5 by each part | ||
{ | ||
req.set_limit(5); | ||
auto* processor = LookupProcessor::instance(storageEnv_.get(), nullptr, nullptr); | ||
auto fut = processor->getFuture(); | ||
processor->process(req); | ||
auto resp = std::move(fut).get(); | ||
EXPECT_EQ(0, resp.result.failed_parts.size()); | ||
EXPECT_EQ(5 * parts.size(), resp.get_data()->rows.size()); | ||
} | ||
|
||
// limit 5 by each part through IndexScanNode->DataNode->FilterNode | ||
{ | ||
req.set_limit(5); | ||
cpp2::IndexColumnHint columnHint; | ||
columnHint.set_begin_value(Value(888)); | ||
columnHint.set_column_name("col1"); | ||
columnHint.set_scan_type(cpp2::ScanType::PREFIX); | ||
std::vector<cpp2::IndexColumnHint> columnHints; | ||
columnHints.emplace_back(std::move(columnHint)); | ||
req.indices_ref().value().contexts_ref().value().begin()->set_column_hints( | ||
std::move(columnHints)); | ||
|
||
auto* processor = LookupProcessor::instance(storageEnv_.get(), nullptr, nullptr); | ||
auto fut = processor->getFuture(); | ||
processor->process(req); | ||
auto resp = std::move(fut).get(); | ||
EXPECT_EQ(0, resp.result.failed_parts.size()); | ||
EXPECT_EQ(5 * parts.size(), resp.get_data()->rows.size()); | ||
} | ||
} | ||
|
||
TEST_F(SampleLimitForQueryTest, LookupEdgeIndexLimit) { | ||
cpp2::LookupIndexRequest req; | ||
nebula::storage::cpp2::IndexSpec indices; | ||
req.set_space_id(spaceId); | ||
nebula::cpp2::SchemaID schemaId; | ||
schemaId.set_edge_type(edgeType); | ||
indices.set_schema_id(schemaId); | ||
req.set_parts(parts); | ||
std::vector<std::string> returnCols; | ||
returnCols.emplace_back(kSrc); | ||
req.set_return_columns(std::move(returnCols)); | ||
cpp2::IndexQueryContext context1; | ||
context1.set_index_id(edgeIndex); | ||
decltype(indices.contexts) contexts; | ||
contexts.emplace_back(std::move(context1)); | ||
indices.set_contexts(std::move(contexts)); | ||
req.set_indices(std::move(indices)); | ||
|
||
// verify all data | ||
{ | ||
auto* processor = LookupProcessor::instance(storageEnv_.get(), nullptr, nullptr); | ||
auto fut = processor->getFuture(); | ||
processor->process(req); | ||
auto resp = std::move(fut).get(); | ||
EXPECT_EQ(0, resp.result.failed_parts.size()); | ||
EXPECT_EQ(6000, resp.get_data()->rows.size()); | ||
} | ||
|
||
// limit 5 by each part | ||
{ | ||
req.set_limit(5); | ||
auto* processor = LookupProcessor::instance(storageEnv_.get(), nullptr, nullptr); | ||
auto fut = processor->getFuture(); | ||
processor->process(req); | ||
auto resp = std::move(fut).get(); | ||
EXPECT_EQ(0, resp.result.failed_parts.size()); | ||
EXPECT_EQ(5 * parts.size(), resp.get_data()->rows.size()); | ||
} | ||
|
||
// limit 5 by each part through IndexScanNode->DataNode->FilterNode | ||
{ | ||
req.set_limit(5); | ||
cpp2::IndexColumnHint columnHint; | ||
columnHint.set_begin_value(Value(888)); | ||
columnHint.set_column_name("col1"); | ||
columnHint.set_scan_type(cpp2::ScanType::PREFIX); | ||
std::vector<cpp2::IndexColumnHint> columnHints; | ||
columnHints.emplace_back(std::move(columnHint)); | ||
req.indices_ref().value().contexts_ref().value().begin()->set_column_hints( | ||
std::move(columnHints)); | ||
|
||
auto* processor = LookupProcessor::instance(storageEnv_.get(), nullptr, nullptr); | ||
auto fut = processor->getFuture(); | ||
processor->process(req); | ||
auto resp = std::move(fut).get(); | ||
EXPECT_EQ(0, resp.result.failed_parts.size()); | ||
EXPECT_EQ(5 * parts.size(), resp.get_data()->rows.size()); | ||
} | ||
} | ||
|
||
} // namespace storage | ||
} // namespace nebula | ||
|
||
int main(int argc, char** argv) { | ||
testing::InitGoogleTest(&argc, argv); | ||
folly::init(&argc, &argv, true); | ||
google::SetStderrLogging(google::INFO); | ||
return RUN_ALL_TESTS(); | ||
} |