Skip to content

docs: add INFORMATION_SCHEMA REGION_INFO docs (EN + ZH)#2517

Closed
Copilot wants to merge 2 commits into
mainfrom
copilot/update-docs-expose-region-info
Closed

docs: add INFORMATION_SCHEMA REGION_INFO docs (EN + ZH)#2517
Copilot wants to merge 2 commits into
mainfrom
copilot/update-docs-expose-region-info

Conversation

Copilot AI commented Jun 2, 2026

Copy link
Copy Markdown
Contributor

What's Changed in this PR

This PR documents the newly exposed information_schema.region_info inspection table from GreptimeDB and adds it to the INFORMATION_SCHEMA reference index. It also includes the corresponding Chinese localization so both language tracks stay aligned.

  • INFORMATION_SCHEMA index updates

    • Added REGION_INFO entries in:
      • docs/reference/sql/information-schema/overview.md
      • i18n/zh/docusaurus-plugin-content-docs/current/reference/sql/information-schema/overview.md
  • New REGION_INFO reference page (English)

    • Added docs/reference/sql/information-schema/region-info.md
    • Documents schema columns and field semantics (runtime state/role, sequences, manifest/version metadata, options, SST format, node id)
    • Includes a practical query pattern joining with REGION_PEERS to filter by table
  • New REGION_INFO reference page (Chinese)

    • Added i18n/zh/docusaurus-plugin-content-docs/current/reference/sql/information-schema/region-info.md
    • Mirrors the English page structure and semantics for parity
USE INFORMATION_SCHEMA;
DESC REGION_INFO;

SELECT r.*
FROM REGION_INFO r
LEFT JOIN REGION_PEERS p ON r.region_id = p.region_id
WHERE p.table_name = 'region_info_case';

Checklist

  • Please confirm that all corresponding versions of the documents have been revised.
  • Please ensure that the content in sidebars.ts matches the current document structure when you changed the document structure.
  • This change requires follow-up update in localized docs.

@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Jun 2, 2026

Copy link
Copy Markdown

Deploying greptime-docs with  Cloudflare Pages  Cloudflare Pages

Latest commit: b416a8d
Status: ✅  Deploy successful!
Preview URL: https://e18a3c93.greptime-docs.pages.dev
Branch Preview URL: https://copilot-update-docs-expose-r.greptime-docs.pages.dev

View logs

Copilot AI changed the title [WIP] Update docs to expose region info inspection table docs: add INFORMATION_SCHEMA REGION_INFO docs (EN + ZH) Jun 2, 2026
Copilot AI requested a review from fengjiachun June 2, 2026 06:38
@v0y4g3r v0y4g3r closed this Jun 16, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Update docs for chore: expose region info inspection table

3 participants