Skip to content

Commit

Permalink
pick_27612_to_2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LemonLiTree committed Jan 24, 2024
1 parent d2bf26e commit c45e777
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/en/docs/admin-manual/multi-tenant.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
```

Expand All @@ -262,7 +262,7 @@ 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"
)
```

Expand Down
4 changes: 2 additions & 2 deletions docs/zh-CN/docs/admin-manual/multi-tenant.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
```

Expand All @@ -260,7 +260,7 @@ 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"
)
```

Expand Down

0 comments on commit c45e777

Please sign in to comment.