docs: add Tigris page under S3-compatible integrations#6445
Open
davidmyriel wants to merge 1 commit into
Open
Conversation
|
@davidmyriel is attempting to deploy a commit to the ClickHouse Team on Vercel. A member of the Team first needs to authorize it. |
Collaborator
|
@davidmyriel - Thanks for the contribution! The DocsCheck failure is a sentence-casing check on the frontmatter title. Tigris is a product name, so the fix is to add it to the proper-noun allowlist rather than change the title. Add |
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
Adds a new docs page for using Tigris (an S3-compatible object storage service) as an S3 backend for ClickHouse, mirroring the structure of the existing MinIO page (
docs/integrations/data-ingestion/s3-minio.md).Why
ClickHouse's
s3table function andS3disk type work against any S3-compatible endpoint, and the docs already include a dedicated page for MinIO. Tigris is increasingly used as a multi-region S3-compatible store, but there is no docs entry for it today, so users have to figure out the endpoint andregionhandling from the source.What's in the page
<storage_configuration>XML snippet for a backed-MergeTree disk pointed at Tigris.:::tipexplaining why<region>auto</region>is needed (SigV4 still requires a region value, even when the endpoint is global).s3()table function example.support_levelis set to'community'(Tigris is not a ClickHouse-supported core integration).Files
docs/integrations/data-ingestion/s3-tigris.md— new page.sidebars.js— one-line addition placing the entry next to the MinIO one.Docs only; no code changes.