docs: unlist replica-aware routing from nav and search#250
Merged
Conversation
Contributor
Author
|
Preview deployment for your docs. Learn more about Mintlify Previews.
|
Blargian
approved these changes
Jun 24, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Port ClickHouse/clickhouse-docs#6435 (DOC-849): retire the replica-aware routing page without deleting it, since some users are still on the feature. The page stays reachable at its direct URL (
/manage/replica-aware-routing) but is removed from navigation and excluded from search.Changes
products/cloud/navigation.json— remove thereplica-aware-routingentry from the Cloud infrastructure group.products/cloud/features/infrastructure/replica-aware-routing.mdx— addnoindex: trueto the frontmatter (Mintlify equivalent of Docusaurusunlisted: truefor search/sitemap exclusion).Context
Upstream uses Docusaurus
unlisted: true, which drops a page from the autogenerated sidebar, the sitemap, and tags itnoindex. Mintlify has no single equivalent — navigation is explicit, so removing the entry fromnavigation.jsonhandles the sidebar/sitemap side, andnoindex: truein frontmatter handles the search/indexing side.Ambiguity / notes for reviewers
es/,ja/,ko/,pt-BR/,ru/,zh/products/cloud/navigation.jsonstill list this page). If those should also drop the entry, that needs a follow-up.scripts/search/index_pages.py) to honorunlisted/draftfrontmatter. That script does not exist in this repo (Mintlify ships its own search), so nothing to port there.