This is an automated email from the ASF dual-hosted git repository.
zykkk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 27e1b2ac2dd [docs](fix) fix document error (#27612)
27e1b2ac2dd is described below
commit 27e1b2ac2ddc13f057b816804b5bf20d26b31495
Author: Liqf <[email protected]>
AuthorDate: Mon Dec 4 14:30:41 2023 +0800
[docs](fix) fix document error (#27612)
---
docs/en/docs/admin-manual/multi-tenant.md | 6 +++---
docs/zh-CN/docs/admin-manual/multi-tenant.md | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/docs/en/docs/admin-manual/multi-tenant.md
b/docs/en/docs/admin-manual/multi-tenant.md
index b5659a7897e..8ba9cd59c3e 100644
--- a/docs/en/docs/admin-manual/multi-tenant.md
+++ b/docs/en/docs/admin-manual/multi-tenant.md
@@ -251,7 +251,7 @@ Through the above 4 steps, we can smoothly use the resource
division function af
```sql
CREATE DATABASE db1 PROPERTIES (
- "replication_allocation" = "tag.location.group_a:1, tag.location.group_b:2"
+ "replication_allocation" = "tag.location.group_c:1, tag.location.group_b:2"
)
```
@@ -262,10 +262,10 @@ Through the above 4 steps, we can smoothly use the
resource division function af
(k1 int, k2 int)
distributed by hash(k1) buckets 1
properties(
- "replication_allocation"="tag.location.group_c:1, tag.location.group_b:2"
+ "replication_allocation"="tag.location.group_a:1, tag.location.group_b:2"
)
```
The table creation statements for table2, table3, and table4 do not need to
specify `replication_allocation` again.
- Note: Changing the replica distribution policy of the database will not
affect existing tables.
\ No newline at end of file
+ Note: Changing the replica distribution policy of the database will not
affect existing tables.
diff --git a/docs/zh-CN/docs/admin-manual/multi-tenant.md
b/docs/zh-CN/docs/admin-manual/multi-tenant.md
index ec24a513825..1f209702a3b 100644
--- a/docs/zh-CN/docs/admin-manual/multi-tenant.md
+++ b/docs/zh-CN/docs/admin-manual/multi-tenant.md
@@ -249,7 +249,7 @@ FE 不参与用户数据的处理计算等工作,因此是一个资源消耗
```sql
CREATE DATABASE db1 PROPERTIES (
- "replication_allocation" = "tag.location.group_a:1, tag.location.group_b:2"
+ "replication_allocation" = "tag.location.group_c:1, tag.location.group_b:2"
)
```
@@ -260,10 +260,10 @@ FE 不参与用户数据的处理计算等工作,因此是一个资源消耗
(k1 int, k2 int)
distributed by hash(k1) buckets 1
properties(
- "replication_allocation"="tag.location.group_c:1, tag.location.group_b:2"
+ "replication_allocation"="tag.location.group_a:1, tag.location.group_b:2"
)
```
table2,table3,table4的建表语句无需再指定`replication_allocation`。
- 注意事项:更改database的副本分布策略不会对已有的table产生影响。
\ No newline at end of file
+ 注意事项:更改database的副本分布策略不会对已有的table产生影响。
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]