Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't use zero cost estimate for cached subtrees #1783

Merged
merged 2 commits into from
Feb 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions src/engine/QueryExecutionTree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,15 @@ QueryExecutionTree::selectedVariablesToColumnIndices(

// _____________________________________________________________________________
size_t QueryExecutionTree::getCostEstimate() {
if (cachedResult_) {
// result is pinned in cache. Nothing to compute
// If the result is cached and `zero-cost-estimate-for-cached-subtrees` is set
// to `true`, we set the cost estimate to zero.
if (cachedResult_ &&
RuntimeParameters().get<"zero-cost-estimate-for-cached-subtree">()) {
return 0;
}

// Otherwise, we return the cost estimate of the root operation. For index
// scans, we assume one unit of work per result row.
if (getRootOperation()->isIndexScanWithNumVariables(1)) {
return getSizeEstimate();
} else {
Expand Down
3 changes: 3 additions & 0 deletions src/global/RuntimeParameters.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ inline auto& RuntimeParameters() {
// its size estimate will be the size of the block divided by this
// value.
SizeT<"small-index-scan-size-estimate-divisor">{5},
// Determines whether the cost estimate for a cached subtree should be
// set to zero in query planning.
Bool<"zero-cost-estimate-for-cached-subtree">{false},
};
}();
return params;
Expand Down
17 changes: 15 additions & 2 deletions test/OperationTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -242,15 +242,28 @@ TEST(OperationTest, estimatesForCachedResults) {

[[maybe_unused]] auto res = qet->getResult();
}
// The result is now cached inside the static execution context, if we create
// the same operation again, the cost estimate is 0. The size estimate doesn't
// The result is now cached inside the static execution context. If we create
// the same operation again and `zero-cost-estimate-for-cached-subtrees` is
// set to `true`, the cost estimate should be zero. The size estimate does not
// change (see the `getCostEstimate` function for details on why).
{
auto restoreWhenScopeEnds =
setRuntimeParameterForTest<"zero-cost-estimate-for-cached-subtree">(
true);
auto qet = makeQet();
EXPECT_EQ(qet->getCacheKey(), qet->getRootOperation()->getCacheKey());
EXPECT_EQ(qet->getSizeEstimate(), 24u);
EXPECT_EQ(qet->getCostEstimate(), 0u);
}
{
auto restoreWhenScopeEnds =
setRuntimeParameterForTest<"zero-cost-estimate-for-cached-subtree">(
false);
auto qet = makeQet();
EXPECT_EQ(qet->getCacheKey(), qet->getRootOperation()->getCacheKey());
EXPECT_EQ(qet->getSizeEstimate(), 24u);
EXPECT_EQ(qet->getCostEstimate(), 210u);
}
}

// ________________________________________________
Expand Down
Loading