-
Notifications
You must be signed in to change notification settings - Fork 292
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2779 from Blargian/menu-improvement
Clickable breadcrumbs
- Loading branch information
Showing
68 changed files
with
1,060 additions
and
324 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
title: chDB Guides | ||
slug: /en/chdb/guides | ||
description: Index page for chDB guides | ||
keywords: [chdb, guides] | ||
--- | ||
|
||
import TableOfContentsJSON from './table_of_contents.json' | ||
import { TableOfContents } from '/src/components/TableOfContents' | ||
|
||
Take a look at our chDB developer guides below: | ||
|
||
<TableOfContents items={TableOfContentsJSON} /> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
[ | ||
{ | ||
"title": "How to query Apache Arrow with chDB", | ||
"slug": "/en/chdb/guides/apache-arrow" | ||
}, | ||
{ | ||
"title": "How to query Pandas DataFrames with chDB", | ||
"slug": "/en/chdb/guides/pandas" | ||
}, | ||
{ | ||
"title": "How to query Parquet files", | ||
"slug": "/en/chdb/guides/querying-parquet" | ||
}, | ||
{ | ||
"title": "How to query a remote ClickHouse server", | ||
"slug": "/en/chdb/guides/query-remote-clickhouse" | ||
}, | ||
{ | ||
"title": "How to query data in an S3 bucket", | ||
"slug": "/en/chdb/guides/querying-s3" | ||
}, | ||
{ | ||
"title": "JupySQL and chDB", | ||
"slug": "/en/chdb/guides/jupysql" | ||
}, | ||
{ | ||
"title": "Using a clickhouse-local database", | ||
"slug": "/en/chdb/guides/clickhouse-local" | ||
} | ||
] |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
title: Language Integrations Index | ||
slug: /en/chdb/install | ||
description: Index page for chDB language integrations | ||
keywords: [python, NodeJS, Go, Rust, Bun, C, C++] | ||
--- | ||
|
||
Instructions for how to get setup with chDB are available below for the following languages and runtimes: | ||
|
||
| Language | | ||
|----------------------------------------| | ||
| [Python](/docs/en/chdb/install/python) | | ||
| [NodeJS](/docs/en/chdb/install/nodejs) | | ||
| [Go](/docs/en/chdb/install/go) | | ||
| [Rust](/docs/en/chdb/install/rust) | | ||
| [Bun](/docs/en/chdb/install/bun) | | ||
| [C and C++](/docs/en/chdb/install/c) | |
2 changes: 1 addition & 1 deletion
2
docs/en/chdb/data-formats.md → docs/en/chdb/reference/data-formats.md
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: chDB Technical Reference | ||
slug: /en/chdb/reference | ||
description: Data Formats for chDB | ||
keywords: [chdb, data formats] | ||
--- | ||
|
||
| Reference page | | ||
|----------------------| | ||
| [Data Formats](/en/chdb/reference/data-formats) | | ||
| [SQL Reference](/en/chdb/reference/sql-reference) | |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
title: SQL Reference | ||
sidebar_label: SQL Reference | ||
slug: /en/chdb/reference/sql-reference | ||
description: SQL Reference for chDB | ||
keywords: [chdb, sql reference] | ||
--- | ||
|
||
chdb supports the same SQL syntax, statements, engines and functions as ClickHouse: | ||
|
||
| Topic | | ||
|----------------------------| | ||
| [SQL Syntax](/docs/en/sql-reference/syntax) | | ||
| [Statements](/docs/en/sql-reference/statements) | | ||
| [Table Engines](/docs/en/engines/table-engines) | | ||
| [Database Engines](/docs/en/engines/database-engines) | | ||
| [Regular Functions](/docs/en/sql-reference/functions) | | ||
| [Aggregate Functions](/docs/en/sql-reference/aggregate-functions) | | ||
| [Table Functions](/docs/en/sql-reference/table-functions) | | ||
| [Window Functions](/docs/en/sql-reference/window-functions) | | ||
|
||
For further information and examples, see the [ClickHouse SQL Reference](/docs/en/sql-reference). |
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
slug: /en/cloud/bestpractices | ||
keywords: [Cloud, Best Practices, Bulk Inserts, Asynchronous Inserts, Avoid Mutations, Avoid Nullable Columns, Avoid Optimize Final, Low Cardinality Partitioning Key] | ||
title: Overview | ||
hide_title: true | ||
--- | ||
|
||
# Best Practices in ClickHouse | ||
|
||
This section provides six best practices you will want to follow to get the most out of ClickHouse Cloud. | ||
|
||
| Best Practice | | ||
|------------------------------------------------------------------------------------------------------------| | ||
| [Use Bulk Inserts](/docs/en/cloud/bestpractices/bulk-inserts) | | ||
| [Asynchronous Inserts](/docs/en/cloud/bestpractices/asynchronous-inserts) | | ||
| [Avoid Mutations](/docs/en/cloud/bestpractices/avoid-mutations) | | ||
| [Avoid Nullable Columns](/docs/en/cloud/bestpractices/avoid-nullable-columns) | | ||
| [Avoid Optimize Final](/docs/en/cloud/bestpractices/avoid-optimize-final) | | ||
| [Choose a Low Cardinality Partitioning Key](/docs/en/cloud/bestpractices/low-cardinality-partitioning-key) | |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[ | ||
{ | ||
"title": "v24.10 Changelog for Cloud", | ||
"slug": "/en/changelogs/24.10" | ||
}, | ||
{ | ||
"title": "v24.5 Changelog for Cloud", | ||
"slug": "/en/changelogs/24.5" | ||
}, | ||
{ | ||
"title": "v24.6 Changelog for Cloud", | ||
"slug": "/en/changelogs/24.6" | ||
}, | ||
{ | ||
"title": "v24.8 Changelog for Cloud", | ||
"slug": "/en/changelogs/24.8" | ||
} | ||
] |
4 changes: 2 additions & 2 deletions
4
docs/en/get-started/cloud-quick-start.md → ...en/cloud/get-started/cloud-quick-start.md
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
slug: en/cloud/get-started | ||
title: Get Started | ||
description: Get Started Table Of Contents | ||
keywords: [Cloud Quick Start, SQL Console, Query Insights, Query API Endpoints, Dashboards, Cloud Support] | ||
--- | ||
|
||
Welcome to ClickHouse Cloud! Explore the pages below to learn more about what ClickHouse Cloud has to offer. | ||
|
||
| Page | Description | | ||
|--------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------| | ||
| [Overview](/docs/en/cloud/overview) | Overview of the benefits of using ClickHouse Cloud and what version of ClickHouse is used for it. | | ||
| [Cloud Quick Start](/docs/en/cloud/get-started/cloud-quick-start) | Quick start guide to get up and running with Cloud. | | ||
| [SQL Console](/docs/en/cloud/get-started/sql-console) | Learn about the interactive SQL console available in CLoud | | ||
| [Query Insights](/docs/en/cloud/get-started/query-insights) | Learn about how Cloud's Query Insights feature makes ClickHouse's built-in query log easier to use through various visualizations and tables. | | ||
| [Query Endpoints](/docs/en/cloud/get-started/query-endpoints) | Learn about the Query API Endpoints feature which allows you to create an API endpoint directly from any saved SQL query in the ClickHouse Cloud console. | | ||
| [Dashboards](/docs/en/cloud/manage/dashboards) | Learn about how SQL Console’s dashboards feature allows you to collect and share visualizations from saved queries. | | ||
| [Cloud Support](/docs/en/cloud/support) | Learn more about Support Services for ClickHouse Cloud users and customers. | |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
title: Cloud API | ||
slug: /en/cloud/manage/api/ | ||
--- | ||
|
||
| Page | Description | | ||
|--------------------|----------------------------------| | ||
| [Invitations](/docs/en/cloud/manage/api/invitations-api-reference) | API reference for invitations. | | ||
| [Keys](/docs/en/cloud/manage/api/keys-api-reference) | API reference for keys. | | ||
| [Members](/docs/en/cloud/manage/api/members-api-reference) | API reference for requests. | | ||
| [Organizations](/docs/en/cloud/manage/api/organizations-api-reference) | API reference for organizations. | | ||
| [Services](/docs/en/cloud/manage/api/services-api-reference) | API reference for services. | |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
title: Cloud API | ||
slug: en/cloud/manage/api | ||
--- | ||
|
||
| Page | Description | | ||
|-------------------------|--------------------------------------------------------------------------------------------------------------------------------------| | ||
| [Overview](/docs/en/cloud/manage/api/api-overview) | Provides an overview of rate limits, Terraform Provider, Swagger (OpenAPI) Endpoint and UI and available support. | | ||
| [Managing API Keys](/docs/en/cloud/manage/openapi)| Learn more about Cloud's API utilizing OpenAPI that allows you to programmatically manage your account and aspects of your services. | | ||
| [API Reference](/docs/en/cloud/manage/api) | API reference documentation. | |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
--- | ||
sidebar_label: Overview | ||
slug: /en/manage/billing | ||
slug: /en/cloud/manage/billing/overview | ||
title: Billing | ||
--- | ||
|
||
|
Oops, something went wrong.