Skip to content

Commit df4c51f

Browse files
authored
Merge pull request #4424 from ClickHouse/alvaro-nino-replication-errors
Fixed errors in 01_1_shard_2_replicas.md
2 parents 2b001e0 + 81e547f commit df4c51f

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

docs/deployment-guides/replication-sharding-examples/01_1_shard_2_replicas.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -633,8 +633,8 @@ FROM url(
633633
county String,
634634
d String,
635635
e String'
636-
) SETTINGS max_http_get_redirects=10;
637-
LIMIT 10000;
636+
) LIMIT 10000
637+
SETTINGS max_http_get_redirects=10;
638638
```
639639

640640
Notice that the data is completely replicated on each host:
@@ -772,8 +772,7 @@ FROM url(
772772
county String,
773773
d String,
774774
e String'
775-
) SETTINGS max_http_get_redirects=10
776-
LIMIT 10000;
775+
) SETTINGS max_http_get_redirects=10;
777776
```
778777

779778
Query the table from `clickhouse-02` or `clickhouse-01`:

0 commit comments

Comments
 (0)