Skip to content

Commit 040e94f

Browse files
committed
use claude to fix more heading style violations
1 parent b37ed75 commit 040e94f

Some content is hidden

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

74 files changed

+164
-150
lines changed

docs/deployment-guides/horizontal-scaling.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This example architecture is designed to provide scalability. It includes three
1919
<ReplicationShardingTerminology />
2020

2121
## Environment {#environment}
22-
### Architecture Diagram {#architecture-diagram}
22+
### Architecture diagram {#architecture-diagram}
2323

2424
<Image img={scalingOut1} size='md' alt='Architecture diagram for 2 shards and 1 replica' />
2525

@@ -41,7 +41,7 @@ Install Clickhouse on three servers following the [instructions for your archive
4141

4242
<ConfigFileNote />
4343

44-
## chnode1 configuration {#chnode1-configuration}
44+
## Chnode1 configuration {#chnode1-configuration}
4545

4646
For `chnode1`, there are five configuration files. You may choose to combine these files into a single file, but for clarity in the documentation it may be simpler to look at them separately. As you read through the configuration files, you will see that most of the configuration is the same between `chnode1` and `chnode2`; the differences will be highlighted.
4747

@@ -183,7 +183,7 @@ Up above a few files ClickHouse Keeper was configured. This configuration file
183183
</clickhouse>
184184
```
185185

186-
## chnode2 configuration {#chnode2-configuration}
186+
## Chnode2 configuration {#chnode2-configuration}
187187

188188
As the configuration is very similar on `chnode1` and `chnode2`, only the differences will be pointed out here.
189189

@@ -309,7 +309,7 @@ The macros configuration has one of the differences between `chnode1` and `chnod
309309
</clickhouse>
310310
```
311311

312-
## chnode3 configuration {#chnode3-configuration}
312+
## Chnode3 configuration {#chnode3-configuration}
313313

314314
As `chnode3` is not storing data and is only used for ClickHouse Keeper to provide the third node in the quorum, `chnode3` has only two configuration files, one to configure the network and logging, and one to configure ClickHouse Keeper.
315315

@@ -481,7 +481,7 @@ SELECT * FROM db1.table1_dist;
481481
```
482482

483483

484-
## More information about: {#more-information-about}
484+
## More information about {#more-information-about}
485485

486486
- The [Distributed Table Engine](/engines/table-engines/special/distributed.md)
487487
- [ClickHouse Keeper](/guides/sre/keeper/index.md)

docs/deployment-guides/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: 'Deployment Guides Overview'
44
description: 'Landing page for the deployment and scaling section'
55
---
66

7-
# Deployment and Scaling
7+
# Deployment and scaling
88

99
This section covers the following topics:
1010

docs/deployment-guides/replicated.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ In this architecture, there are five servers configured. Two are used to host co
2020
<ReplicationShardingTerminology />
2121

2222
## Environment {#environment}
23-
### Architecture Diagram {#architecture-diagram}
23+
### Architecture diagram {#architecture-diagram}
2424

2525
<Image img={ReplicationArchitecture} size="md" alt="Architecture diagram for 1 shard and 2 replicas with ReplicatedMergeTree" />
2626

@@ -46,7 +46,7 @@ Install ClickHouse Keeper on the three servers `clickhouse-keeper-01`, `clickhou
4646

4747
<ConfigFileNote />
4848

49-
## clickhouse-01 configuration {#clickhouse-01-configuration}
49+
## Clickhouse-01 configuration {#clickhouse-01-configuration}
5050

5151
For clickhouse-01 there are five configuration files. You may choose to combine these files into a single file, but for clarity in the documentation it may be simpler to look at them separately. As you read through the configuration files you will see that most of the configuration is the same between clickhouse-01 and clickhouse-02; the differences will be highlighted.
5252

@@ -143,7 +143,7 @@ This configuration file `use-keeper.xml` is configuring ClickHouse Server to use
143143
</clickhouse>
144144
```
145145

146-
## clickhouse-02 configuration {#clickhouse-02-configuration}
146+
## Clickhouse-02 configuration {#clickhouse-02-configuration}
147147

148148
As the configuration is very similar on clickhouse-01 and clickhouse-02 only the differences will be pointed out here.
149149

@@ -232,7 +232,7 @@ This file is the same on both clickhouse-01 and clickhouse-02.
232232
</clickhouse>
233233
```
234234

235-
## clickhouse-keeper-01 configuration {#clickhouse-keeper-01-configuration}
235+
## Clickhouse-keeper-01 configuration {#clickhouse-keeper-01-configuration}
236236

237237
<KeeperConfigFileNote />
238238

@@ -286,7 +286,7 @@ If for any reason a Keeper node is replaced or rebuilt, do not reuse an existing
286286
</clickhouse>
287287
```
288288

289-
## clickhouse-keeper-02 configuration {#clickhouse-keeper-02-configuration}
289+
## Clickhouse-keeper-02 configuration {#clickhouse-keeper-02-configuration}
290290

291291
There is only one line difference between `clickhouse-keeper-01` and `clickhouse-keeper-02`. `server_id` is set to `2` on this node.
292292

@@ -334,7 +334,7 @@ There is only one line difference between `clickhouse-keeper-01` and `clickhouse
334334
</clickhouse>
335335
```
336336

337-
## clickhouse-keeper-03 configuration {#clickhouse-keeper-03-configuration}
337+
## Clickhouse-keeper-03 configuration {#clickhouse-keeper-03-configuration}
338338

339339
There is only one line difference between `clickhouse-keeper-01` and `clickhouse-keeper-03`. `server_id` is set to `3` on this node.
340340

docs/dictionary/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ LIMIT 4
314314
Peak memory usage: 666.82 MiB.
315315
```
316316

317-
## Advanced Dictionary Topics {#advanced-dictionary-topics}
317+
## Advanced dictionary topics {#advanced-dictionary-topics}
318318

319319
### Choosing the Dictionary `LAYOUT` {#choosing-the-dictionary-layout}
320320

docs/faq/general/columnar-database.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import Image from '@theme/IdealImage';
1010
import RowOriented from '@site/static/images/row-oriented.gif';
1111
import ColumnOriented from '@site/static/images/column-oriented.gif';
1212

13-
# What Is a Columnar Database? {#what-is-a-columnar-database}
13+
# What is a columnar database? {#what-is-a-columnar-database}
1414

1515
A columnar database stores the data of each column independently. This allows reading data from disk only for those columns that are used in any given query. The cost is that operations that affect whole rows become proportionally more expensive. The synonym for a columnar database is a column-oriented database management system. ClickHouse is a typical example of such a system.
1616

docs/faq/general/dbms-naming.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ slug: /faq/general/dbms-naming
66
description: 'Learn about What does "ClickHouse" mean?'
77
---
88

9-
# What Does "ClickHouse" Mean? {#what-does-clickhouse-mean}
9+
# What does "ClickHouse" mean? {#what-does-clickhouse-mean}
1010

1111
It's a combination of "**Click**stream" and "Data ware**House**". It comes from the original use case at Yandex.Metrica, where ClickHouse was supposed to keep records of all clicks by people from all over the Internet, and it still does the job. You can read more about this use case on [ClickHouse history](../../about-us/history.md) page.
1212

docs/faq/general/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ title: 'General Questions About ClickHouse'
77
description: 'Index page listing general questions about ClickHouse'
88
---
99

10-
# General Questions About ClickHouse
10+
# General questions about ClickHouse
1111

1212
- [What is ClickHouse?](../../intro.md)
1313
- [Why is ClickHouse so fast?](../../concepts/why-clickhouse-is-so-fast.md)

docs/faq/general/mapreduce.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: 'This page explains why you would use ClickHouse over MapReduce'
77
keywords: ['MapReduce']
88
---
99

10-
# Why Not Use Something Like MapReduce? {#why-not-use-something-like-mapreduce}
10+
# Why not use something like MapReduce? {#why-not-use-something-like-mapreduce}
1111

1212
We can refer to systems like MapReduce as distributed computing systems in which the reduce operation is based on distributed sorting. The most common open-source solution in this class is [Apache Hadoop](http://hadoop.apache.org).
1313

docs/faq/general/ne-tormozit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: 'This page explains what "Не тормозит" means'
77
keywords: ['Yandex']
88
---
99

10-
# What Does "Не тормозит" Mean? {#what-does-ne-tormozit-mean}
10+
# What does "Не тормозит" mean? {#what-does-ne-tormozit-mean}
1111

1212
We often get this question when people see vintage (limited production) ClickHouse t-shirts. They have the words **"ClickHouse не тормозит"** written in big bold text on the front.
1313

docs/faq/general/olap.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ Analytical
2020
Online
2121
: ...in real-time.
2222

23-
## OLAP from the Business Perspective {#olap-from-the-business-perspective}
23+
## OLAP from the business perspective {#olap-from-the-business-perspective}
2424

2525
In recent years, business people started to realize the value of data. Companies who make their decisions blindly, more often than not fail to keep up with the competition. The data-driven approach of successful companies forces them to collect all data that might be remotely useful for making business decisions and need mechanisms to timely analyze them. Here's where OLAP database management systems (DBMS) come in.
2626

2727
In a business sense, OLAP allows companies to continuously plan, analyze, and report operational activities, thus maximizing efficiency, reducing expenses, and ultimately conquering the market share. It could be done either in an in-house system or outsourced to SaaS providers like web/mobile analytics services, CRM services, etc. OLAP is the technology behind many BI applications (Business Intelligence).
2828

2929
ClickHouse is an OLAP database management system that is pretty often used as a backend for those SaaS solutions for analyzing domain-specific data. However, some businesses are still reluctant to share their data with third-party providers and an in-house data warehouse scenario is also viable.
3030

31-
## OLAP from the Technical Perspective {#olap-from-the-technical-perspective}
31+
## OLAP from the technical perspective {#olap-from-the-technical-perspective}
3232

3333
All database management systems could be classified into two groups: OLAP (Online **Analytical** Processing) and OLTP (Online **Transactional** Processing). Former focuses on building reports, each based on large volumes of historical data, but doing it not so frequently. While the latter usually handle a continuous stream of transactions, constantly modifying the current state of data.
3434

0 commit comments

Comments
 (0)