Skip to content

Commit 50ae270

Browse files
committed
fix more code blocks
1 parent e2579b7 commit 50ae270

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

docs/en/guides/developer/understanding-query-execution-with-the-analyzer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ EXPLAIN PIPELINE graph=1 WITH
275275
SELECT type, min(timestamp) AS minimum_date, max(timestamp) AS maximum_date, count(*) /total_rows * 100 AS percentage FROM session_events GROUP BY type FORMAT TSV;
276276
```
277277

278-
```
278+
```response
279279
digraph
280280
{
281281
rankdir="LR";

docs/en/guides/sre/keeper/index.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ Node count: 4
238238

239239
- `srst`: Reset server statistics. The command will affect the result of `srvr`, `mntr` and `stat`.
240240

241-
```
241+
```response
242242
Server stats reset.
243243
```
244244

@@ -314,7 +314,7 @@ log_dir_size: 3875
314314

315315
- `isro`: Tests if server is running in read-only mode. The server will respond with `ro` if in read-only mode or `rw` if not in read-only mode.
316316

317-
```
317+
```response
318318
rw
319319
```
320320

@@ -886,7 +886,8 @@ This guide provides simple and minimal settings to configure ClickHouse Keeper w
886886
```
887887

888888
On `chnode2`:
889-
```
889+
6.
890+
```sql
890891
SELECT *
891892
FROM db1.table1
892893
```
@@ -1218,8 +1219,10 @@ Database must be `Atomic`, if upgrading from a previous version, the
12181219
:::
12191220

12201221
To check:
1222+
12211223
For example,
1222-
```
1224+
1225+
```sql
12231226
SELECT name, engine FROM system.databases WHERE name = 'db_uuid';
12241227
```
12251228

@@ -1256,7 +1259,7 @@ Alternatively, you can send a `reconfig` query through any ZooKeeper-compatible
12561259

12571260
A virtual node `/keeper/config` contains last committed cluster configuration in the following format:
12581261

1259-
```
1262+
```text
12601263
server.id = server_host:server_port[;server_type][;server_priority]
12611264
server.id2 = ...
12621265
...
@@ -1269,7 +1272,7 @@ server.id2 = ...
12691272

12701273
Example:
12711274

1272-
```
1275+
```sql
12731276
:) get /keeper/config
12741277
server.1=zoo1:9234;participant;1
12751278
server.2=zoo2:9234;participant;1

docs/en/managing-data/core-concepts/partitions.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,8 @@ The output above shows:
216216

217217
② Granule pruning: Row 19 to 24 of the EXPLAIN output above indicate that ClickHouse then uses the [primary index](/docs/en/optimize/sparse-primary-indexes) (created over the `town`-field) of the data part identified in step ① to
218218
further reduce the number of granules (that contain rows potentially also matching the query's `town` filter) from 11 to 1. This is also reflected in the ClickHouse-client output that we printed further above for the query run:
219-
```
219+
220+
```response
220221
... Elapsed: 0.006 sec. Processed 8.19 thousand rows, 57.34 KB (1.36 million rows/s., 9.49 MB/s.)
221222
Peak memory usage: 2.73 MiB.
222223
```

docs/en/use-cases/observability/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ We currently recommend ClickHouse for storing two types of observability data:
7171

7272
- **Logs** - Logs are time-stamped records of events occurring within a system, capturing detailed information about various aspects of software operations. The data in logs is typically unstructured or semi-structured and can include error messages, user activity logs, system changes, and other events. Logs are crucial for troubleshooting, anomaly detection, and understanding the specific events leading up to issues within the system.
7373

74-
```
74+
```response
7575
54.36.149.41 - - [22/Jan/2019:03:56:14 +0330] "GET
7676
/filter/27|13%20%D9%85%DA%AF%D8%A7%D9%BE%DB%8C%DA%A9%D8%B3%D9%84,27|%DA%A9%D9%85%D8%AA%D8%B1%20%D8%A7%D8%B2%205%20%D9%85%DA%AF%D8%A7%D9%BE%DB%8C%DA%A9%D8%B3%D9%84,p53 HTTP/1.1" 200 30577 "-" "Mozilla/5.0 (compatible; AhrefsBot/6.1; +http://ahrefs.com/robot/)" "-"
7777
```

0 commit comments

Comments
 (0)