/** * Copyright (C) 2021-present MongoDB, Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the Server Side Public License, version 1, * as published by MongoDB, Inc. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * Server Side Public License for more details. * * You should have received a copy of the Server Side Public License * along with this program. If not, see * . * * As a special exception, the copyright holders give permission to link the * code of portions of this program with the OpenSSL library under certain * conditions as described in each individual source file and distribute * linked combinations including the program with the OpenSSL library. You * must comply with the Server Side Public License in all respects for * all of the code used other than as permitted herein. If you modify file(s) * with this exception, you may extend this exception to your version of the * file(s), but you are not obligated to do so. If you do not wish to do so, * delete this exception statement from your version. If you delete this * exception statement from all source files in the program, then also delete * it in the license file. */ #include "mongo/db/query/plan_cache_key_factory.h" #include "mongo/db/query/collection_query_info.h" #include "mongo/db/query/planner_ixselect.h" #include "mongo/db/s/operation_sharding_state.h" namespace mongo { namespace plan_cache_detail { // Delimiters for cache key encoding. const char kEncodeDiscriminatorsBegin = '<'; const char kEncodeDiscriminatorsEnd = '>'; void encodeIndexabilityForDiscriminators(const MatchExpression* tree, const IndexToDiscriminatorMap& discriminators, StringBuilder* keyBuilder) { for (auto&& indexAndDiscriminatorPair : discriminators) { *keyBuilder << indexAndDiscriminatorPair.second.isMatchCompatibleWithIndex(tree); } } void encodeIndexability(const MatchExpression* tree, const PlanCacheIndexabilityState& indexabilityState, StringBuilder* keyBuilder) { if (!tree->path().empty()) { const IndexToDiscriminatorMap& discriminators = indexabilityState.getDiscriminators(tree->path()); IndexToDiscriminatorMap wildcardDiscriminators = indexabilityState.buildWildcardDiscriminators(tree->path()); if (!discriminators.empty() || !wildcardDiscriminators.empty()) { *keyBuilder << kEncodeDiscriminatorsBegin; // For each discriminator on this path, append the character '0' or '1'. encodeIndexabilityForDiscriminators(tree, discriminators, keyBuilder); encodeIndexabilityForDiscriminators(tree, wildcardDiscriminators, keyBuilder); *keyBuilder << kEncodeDiscriminatorsEnd; } } else if (tree->matchType() == MatchExpression::MatchType::NOT) { // If the node is not compatible with any type of index, add a single '0' discriminator // here. Otherwise add a '1'. *keyBuilder << kEncodeDiscriminatorsBegin; *keyBuilder << QueryPlannerIXSelect::logicalNodeMayBeSupportedByAnIndex(tree); *keyBuilder << kEncodeDiscriminatorsEnd; } for (size_t i = 0; i < tree->numChildren(); ++i) { encodeIndexability(tree->getChild(i), indexabilityState, keyBuilder); } } PlanCacheKeyInfo makePlanCacheKeyInfo(const CanonicalQuery& query, const CollectionPtr& collection) { const auto shapeString = query.encodeKey(); StringBuilder indexabilityKeyBuilder; plan_cache_detail::encodeIndexability( query.root(), CollectionQueryInfo::get(collection).getPlanCacheIndexabilityState(), &indexabilityKeyBuilder); return PlanCacheKeyInfo(shapeString, indexabilityKeyBuilder.str()); } PlanCacheKey make(const CanonicalQuery& query, const CollectionPtr& collection, PlanCacheKeyTag) { return {makePlanCacheKeyInfo(query, collection)}; } namespace { /** * Returns the highest index commit timestamp associated with an index on 'collection' that is * visible to this operation. */ boost::optional computeNewestVisibleIndexTimestamp(OperationContext* opCtx, const CollectionPtr& collection) { auto recoveryUnit = opCtx->recoveryUnit(); auto mySnapshot = recoveryUnit->getPointInTimeReadTimestamp(opCtx).get_value_or( recoveryUnit->getCatalogConflictingTimestamp()); if (mySnapshot.isNull()) { return boost::none; } Timestamp currentNewestVisible = Timestamp::min(); std::unique_ptr ii = collection->getIndexCatalog()->getIndexIterator(opCtx, /*includeUnfinishedIndexes*/ true); while (ii->more()) { const IndexCatalogEntry* ice = ii->next(); auto minVisibleSnapshot = ice->getMinimumVisibleSnapshot(); if (!minVisibleSnapshot) { continue; } if (mySnapshot < *minVisibleSnapshot) { continue; } currentNewestVisible = std::max(currentNewestVisible, *minVisibleSnapshot); } return currentNewestVisible.isNull() ? boost::optional{} : currentNewestVisible; } } // namespace sbe::PlanCacheKey make(const CanonicalQuery& query, const CollectionPtr& collection, PlanCacheKeyTag) { OperationContext* opCtx = query.getOpCtx(); auto collectionVersion = CollectionQueryInfo::get(collection).getPlanCacheInvalidatorVersion(); const auto shardVersion{OperationShardingState::get(opCtx).getShardVersion(collection->ns())}; const auto keyShardingEpoch = shardVersion ? boost::make_optional( sbe::PlanCacheKeyShardingEpoch{shardVersion->epoch(), shardVersion->getTimestamp()}) : boost::none; return {makePlanCacheKeyInfo(query, collection), collection->uuid(), collectionVersion, computeNewestVisibleIndexTimestamp(opCtx, collection), keyShardingEpoch}; } } // namespace plan_cache_detail } // namespace mongo