Skip to content

Commit 7f6a0d2

Browse files
authored
Merge branch 'main' into Blargian-patch-399150
2 parents 04c513c + 7399b3f commit 7f6a0d2

File tree

268 files changed

+16189
-2677
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

268 files changed

+16189
-2677
lines changed

docs/about-us/cloud.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
slug: /about-us/cloud
3-
sidebar_label: 'Cloud Service'
3+
sidebar_label: 'Cloud service'
44
sidebar_position: 10
55
description: 'ClickHouse Cloud'
66
title: 'ClickHouse Cloud'

docs/about-us/history.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
slug: /about-us/history
3-
sidebar_label: 'ClickHouse History'
3+
sidebar_label: 'ClickHouse history'
44
sidebar_position: 40
55
description: 'History of ClickHouse development'
66
keywords: ['history','development','Metrica']

docs/about-us/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ the table of contents below for a list of pages in this section of the docs.
1212

1313
| Page | Description |
1414
|----------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
15-
| [What is ClickHouse](/about-clickhouse) | Introduces ClickHouse's core features, architecture, and uses, providing a concise overview for new users. |
1615
| [Adopters](/about-us/adopters) | A list of companies using ClickHouse and their success stories, assembled from public sources |
1716
| [Support](/about-us/support) | An introduction to ClickHouse Cloud support services and their mission. |
1817
| [Beta features and experimental features](/beta-and-experimental-features) | Learn about how ClickHouse uses "Beta" and "Experimental" labels to distinguish between officially supported and early-stage, unsupported features due to varied development speeds from community contributions. |

docs/about-us/intro.mdx

Lines changed: 0 additions & 11 deletions
This file was deleted.

docs/about-us/support.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ doc_type: 'reference'
99

1010
# ClickHouse Cloud support services
1111

12-
ClickHouse provides Support Services for our ClickHouse Cloud users and customers. Our objective is a Support Services team that represents the ClickHouse product – unparalleled performance, ease of use, and exceptionally fast, high-quality results. For details, [visit our ClickHouse Support Program](https://clickhouse.com/support/program/) page.
12+
ClickHouse provides support services for our ClickHouse Cloud users and customers. Our objective is a support services team that represents the ClickHouse product – unparalleled performance, ease of use, and exceptionally fast, high-quality results. For details, [visit our ClickHouse Support Program](https://clickhouse.com/support/program/) page.
1313

1414
[Login to the Cloud console](https://console.clickhouse.cloud/support) and select **Help -> Support** from the menu options to open a new support case and view the status of your submitted cases.
1515

1616
You can also subscribe to our [status page](https://status.clickhouse.com) to get notified quickly about any incidents affecting our platform.
1717

1818
:::note
19-
Please note that only Subscription Customers have a Service Level Agreement on Support Incidents. If you are not currently a ClickHouse Cloud user – while we will try to answer your question, we'd encourage you to go instead to one of our Community resources:
19+
Please note that only subscription customers have a service level agreement on support incidents. If you are not currently a ClickHouse Cloud user – while we will try to answer your question, we'd encourage you to go instead to one of our community resources:
2020

21-
- [ClickHouse Community Slack Channel](https://clickhouse.com/slack)
22-
- [Other Community Options](https://github.com/ClickHouse/ClickHouse/blob/master/README.md#useful-links)
21+
- [ClickHouse community Slack channel](https://clickhouse.com/slack)
22+
- [Other community options](https://github.com/ClickHouse/ClickHouse/blob/master/README.md#useful-links)
2323
:::

docs/best-practices/avoid_optimize_final.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
slug: /best-practices/avoid-optimize-final
33
sidebar_position: 10
4-
sidebar_label: 'Avoid Optimize Final'
4+
sidebar_label: 'Avoid optimize final'
55
title: 'Avoid OPTIMIZE FINAL'
66
description: 'Page describing why you should avoid the OPTIMIZE FINAL clause in ClickHouse'
77
keywords: ['avoid OPTIMIZE FINAL', 'background merges']

docs/best-practices/choosing_a_primary_key.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
slug: /best-practices/choosing-a-primary-key
33
sidebar_position: 10
4-
sidebar_label: 'Choosing a Primary Key'
4+
sidebar_label: 'Choosing a primary key'
55
title: 'Choosing a Primary Key'
66
description: 'Page describing how to choose a primary key in ClickHouse'
77
keywords: ['primary key']

docs/best-practices/json_type.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ show_related_blogs: true
99
doc_type: 'reference'
1010
---
1111

12-
ClickHouse now offers a native JSON column type designed for semi-structured and dynamic data. It's important to clarify that **this is a column type, not a data format**—you can insert JSON into ClickHouse as a string or via supported formats like [JSONEachRow](/docs/interfaces/formats/JSONEachRow), but that does not imply using the JSON column type. Users should only use the JSON type when the structure of their data is dynamic, not when they simply happen to store JSON.
12+
ClickHouse now offers a native JSON column type designed for semi-structured and dynamic data. It's important to clarify that **this is a column type, not a data format**—you can insert JSON into ClickHouse as a string or via supported formats like [JSONEachRow](/interfaces/formats/JSONEachRow), but that does not imply using the JSON column type. Users should only use the JSON type when the structure of their data is dynamic, not when they simply happen to store JSON.
1313

1414
## When to use the JSON type {#when-to-use-the-json-type}
1515

docs/best-practices/minimize_optimize_joins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
slug: /best-practices/minimize-optimize-joins
33
sidebar_position: 10
4-
sidebar_label: 'Minimize and Optimize JOINs'
4+
sidebar_label: 'Minimize and optimize JOINs'
55
title: 'Minimize and optimize JOINs'
66
description: 'Page describing best practices for JOINs'
77
keywords: ['JOIN', 'Parallel Hash JOIN']

docs/best-practices/partitioning_keys.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
slug: /best-practices/choosing-a-partitioning-key
33
sidebar_position: 10
4-
sidebar_label: 'Choosing a Partitioning Key'
4+
sidebar_label: 'Choosing a partitioning key'
55
title: 'Choosing a Partitioning Key'
66
description: 'Page describing how to choose a partitioning key'
77
keywords: ['partitioning key']

0 commit comments

Comments
 (0)