You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: contribute/style-guide.md
+27-4Lines changed: 27 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,14 +10,29 @@ Begin every new markdown document with YAML front-matter:
10
10
11
11
```markdown
12
12
---
13
-
title: Using a clickhouse-local database
14
-
sidebar_label: Using clickhouse-local database
13
+
title: 'Using a clickhouse-local database'
14
+
sidebar_label: 'Using clickhouse-local database'
15
15
slug: /chdb/guides/clickhouse-local
16
-
description: Learn how to use a clickhouse-local database with chDB
17
-
keywords: [chdb, clickhouse-local]
16
+
description: 'Learn how to use a clickhouse-local database with chDB'
17
+
keywords: ['chdb', 'clickhouse-local']
18
18
---
19
19
```
20
20
21
+
### Associated markdown rule or CI check
22
+
23
+
#### front-matter validation
24
+
25
+
There is a custom Docusaurus plugin which runs on build that makes the following
26
+
checks on front-matter:
27
+
28
+
- title, description and slug are specified.
29
+
- keywords use flow style arrays with single quoted items e.g.
30
+
`keywords: ['integrations']`
31
+
- single quotes are used for title, description, slug, sidebar_label
32
+
- there is an empty line after the YAML frontmatter block
33
+
34
+
For implementation details see [plugins/frontmatter-validation](https://github.com/ClickHouse/clickhouse-docs/tree/main/plugins/frontmatter-validation)
35
+
21
36
## Explicit header tags
22
37
23
38
Due to the way our translation system works, it is necessary to add an explicit
@@ -191,4 +206,12 @@ export function Anchor(props) {
191
206
```
192
207
- Replace `<span id="some-id"></span>` with `Anchor id="some-id"/>`
193
208
209
+
### Dangling pages
210
+
211
+
In order to prevent pages from becoming 'floating' or 'orphaned' it is
212
+
necessary that you add a newly created page to `sidebars.js`. We have a [custom
213
+
docusaurus plugin](plugins/checkFloatingPages.js) to catch dangling pages.
214
+
215
+
If there is some specific reason that you need to bypass this check, you can
216
+
add an exception to `floating-pages-exceptions.txt` in the plugins directory.
Copy file name to clipboardExpand all lines: docs/cloud/reference/changelog.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,6 @@ import fast_releases from '@site/static/images/cloud/reference/june-13-fast-rele
27
27
import share_queries from '@site/static/images/cloud/reference/may-30-share-queries.png';
28
28
import query_endpoints from '@site/static/images/cloud/reference/may-17-query-endpoints.png';
29
29
30
-
31
30
In addition to this ClickHouse Cloud changelog, please see the [Cloud Compatibility](/cloud/reference/cloud-compatibility.md) page.
32
31
## March 7, 2025 {#march-7-2025}
33
32
@@ -305,7 +304,7 @@ Services are available in GCP `us-central-1` to customers with the **Dedicated**
305
304
306
305
We recently announced the Private Preview for Compute-Compute Separation for AWS. We're happy to announce that it is now available for GCP and Azure.
307
306
308
-
Compute-compute separation allows you to designate specific services as read-write or read-only services, allowing you to design the optimal compute configuration for your application to optimize cost and performance. Please [read the docs](/cloud/reference/compute-compute-separation) for more details.
307
+
Compute-compute separation allows you to designate specific services as read-write or read-only services, allowing you to design the optimal compute configuration for your application to optimize cost and performance. Please [read the docs](/cloud/reference/warehouses) for more details.
@@ -357,7 +356,7 @@ Please also check out our [Trust Center](https://trust.clickhouse.com/) for secu
357
356
358
357
For existing ClickHouse Cloud services, replicas handle both reads and writes, and there is no way to configure a certain replica to handle only one kind of operation. We have an upcoming new feature called Compute-compute separation that allows you to designate specific services as read-write or read-only services, allowing you to design the optimal compute configuration for your application to optimize cost and performance.
359
358
360
-
Our new compute-compute separation feature enables you to create multiple compute node groups, each with its own endpoint, that are using the same object storage folder, and thus, with the same tables, views, etc. Read more about [Compute-compute separation here](/cloud/reference/compute-compute-separation). Please [contact support](https://clickhouse.com/support/program) if you would like access to this feature in Private Preview.
359
+
Our new compute-compute separation feature enables you to create multiple compute node groups, each with its own endpoint, that are using the same object storage folder, and thus, with the same tables, views, etc. Read more about [Compute-compute separation here](/cloud/reference/warehouses). Please [contact support](https://clickhouse.com/support/program) if you would like access to this feature in Private Preview.
361
360
362
361
<img alt="Example architecture for compute-compute separation"
|[Architecture](/cloud/reference/architecture)| Discusses the architecture of ClickHouse Cloud, including storage, compute, administration, and security. |
16
16
|[SharedMergeTree](/cloud/reference/shared-merge-tree)| Explainer on SharedMergeTree, the cloud-native replacement for the ReplicatedMergeTree and analogues. |
17
-
|[Warehouses](/cloud/reference/compute-compute-separation)| Explainer on what Warehouses and Compute-Compute separation are in ClickHouse Cloud. |
17
+
|[Warehouses](/cloud/reference/warehouses)| Explainer on what Warehouses and Compute-Compute separation are in ClickHouse Cloud. |
18
18
|[BYOC (Bring Your Own Cloud)](/cloud/reference/byoc)| Explainer on the Bring Your Own Cloud (BYOC) service available with ClickHouse Cloud. |
19
19
|[Changelogs](/cloud/reference/changelogs)| Cloud Changelogs and Release Notes. |
20
20
|[Cloud Compatibility](/whats-new/cloud-compatibility)| A guide to what to expect functionally and operationally in ClickHouse Cloud. |
0 commit comments