Skip to content

Commit

Permalink
Added /zh docs
Browse files Browse the repository at this point in the history
  • Loading branch information
rfraposa committed Apr 10, 2022
1 parent 5cd2e34 commit be0d0ba
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 11 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
node_modules
.docusaurus
build
docs/en/reference
docs/ru
docs/zh

**/.DS_Store
run.sh
6 changes: 3 additions & 3 deletions docs/en/about-us/distinctive-features.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Having a data physically sorted by primary key makes it possible to extract data

## Secondary Indexes {#secondary-indexes}

Unlike other database management systems, secondary indexes in ClickHouse does not point to specific rows or row ranges. Instead, they allow the database to know in advance that all rows in some data parts wouldn’t match the query filtering conditions and do not read them at all, thus they are called [data skipping indexes](../en/engines/table-engines/mergetree-family/mergetree.md#table_engine-mergetree-data_skipping-indexes).
Unlike other database management systems, secondary indexes in ClickHouse does not point to specific rows or row ranges. Instead, they allow the database to know in advance that all rows in some data parts wouldn’t match the query filtering conditions and do not read them at all, thus they are called [data skipping indexes](../reference/engines/table-engines/mergetree-family/mergetree.md#table_engine-mergetree-data_skipping-indexes).

## Suitable for Online Queries {#suitable-for-online-queries}

Expand All @@ -82,11 +82,11 @@ ClickHouse adaptively chooses how to [JOIN](../reference/sql-reference/statement

ClickHouse uses asynchronous multi-master replication. After being written to any available replica, all the remaining replicas retrieve their copy in the background. The system maintains identical data on different replicas. Recovery after most failures is performed automatically, or semi-automatically in complex cases.

For more information, see the section [Data replication](../en/engines/table-engines/mergetree-family/replication.md).
For more information, see the section [Data replication](../reference/engines/table-engines/mergetree-family/replication.md).

## Role-Based Access Control {#role-based-access-control}

ClickHouse implements user account management using SQL queries and allows for [role-based access control configuration](../en/operations/access-rights.md) similar to what can be found in ANSI SQL standard and popular relational database management systems.
ClickHouse implements user account management using SQL queries and allows for [role-based access control configuration](../reference/operations/access-rights.md) similar to what can be found in ANSI SQL standard and popular relational database management systems.

## Features that Can Be Considered Disadvantages {#clickhouse-features-that-can-be-considered-disadvantages}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ collapsed: true
link:
type: generated-index
title: Example Datasets
slug: /en/example-datasets
slug: /en/getting-started/example-datasets
1 change: 1 addition & 0 deletions docs/en/reference/sql-reference/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
sidebar_position: 28
sidebar_label: SQL Reference
slug: en/sql-reference/
---

# SQL Reference {#sql-reference}
Expand Down
4 changes: 4 additions & 0 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@ const config = {
{
label: 'Russian',
to: '/ru',
},
{
label: 'Chinese',
to: '/zh',
}
]
},
Expand Down
20 changes: 13 additions & 7 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,31 +6,31 @@ const sidebars = {
'en/tutorial',
{
type: 'category',
label: 'Connect a UI',
label: 'Integrations',
link: {
type: 'generated-index',
slug: '/en/connect-a-ui'
slug: '/en/integrations'
},
collapsed: true,
items: [
{
type: 'autogenerated',
dirName: 'en/connect-a-ui',
dirName: 'en/integrations',
}
]
},
{
type: 'category',
label: 'Integrations',
label: 'Connect a UI',
link: {
type: 'generated-index',
slug: '/en/integrations'
slug: '/en/connect-a-ui'
},
collapsed: true,
items: [
{
type: 'autogenerated',
dirName: 'en/integrations',
dirName: 'en/connect-a-ui',
}
]
},
Expand Down Expand Up @@ -116,6 +116,12 @@ const sidebars = {
dirName: 'ru',
},
],
};
chinese: [
{
type: 'autogenerated',
dirName: 'zh',
},
],
};

module.exports = sidebars;

0 comments on commit be0d0ba

Please sign in to comment.