Skip to content

Commit cac54c5

Browse files
ZmmBigdatawuchong
authored andcommitted
[docs] Fix typos and format in installation overview page (#1391)
1 parent b9b1787 commit cac54c5

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

website/docs/install-deploy/overview.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ We have listed them in the table below the figure.
6868
<td>
6969
<p>
7070
CoordinatorServer is the name of the central work coordination component of Fluss.
71-
The coordinator server is responsible to:
71+
The coordinator server is responsible for:
7272
</p>
7373
<ul>
7474
<li>Manage the TabletServer</li>
@@ -101,15 +101,15 @@ We have listed them in the table below the figure.
101101
<td>ZooKeeper</td>
102102
<td>
103103
:::warning
104-
Zookeeper will be removed to simplify deployment in the near future. For more details, please checkout [Roadmap](/roadmap/).
104+
ZooKeeper will be removed to simplify deployment in the near future. For more details, please checkout [Roadmap](/roadmap/).
105105
:::
106106
<p>
107107
Fluss leverages ZooKeeper for distributed coordination between all running CoordinatorServer instances and for metadata management.
108108
</p>
109109
</td>
110110
<td>
111111
<ul>
112-
<li><a href="https://zookeeper.apache.org/">Zookeeper</a></li>
112+
<li><a href="https://zookeeper.apache.org/">ZooKeeper</a></li>
113113
</ul>
114114
</td>
115115
</tr>
@@ -154,7 +154,7 @@ We have listed them in the table below the figure.
154154
Fluss can be deployed in three different ways:
155155
- [Local Cluster](install-deploy/deploying-local-cluster.md)
156156
- [Distributed Cluster](install-deploy/deploying-distributed-cluster.md)
157-
- [Docker run/ Docker compose](install-deploy/deploying-with-docker.md)
157+
- [Docker run / Docker Compose](install-deploy/deploying-with-docker.md)
158158

159159
**NOTE**:
160160
- Local Cluster is for testing purpose only.

website/docs/quickstart/security.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ CALL admin_catalog.sys.add_acl(
226226
Allow `consumer` user to read data:
227227
```sql
228228
CALL admin_catalog.sys.add_acl(
229-
resource => 'cluster',
229+
resource => 'cluster',
230230
permission => 'ALLOW',
231231
principal => 'User:consumer',
232232
operation => 'READ'
@@ -242,13 +242,13 @@ CALL admin_catalog.sys.list_acl(
242242
Output will show like:
243243

244244
```text
245-
+-------------------------------------------------------------------------------------------------------+
246-
| result |
247-
+-------------------------------------------------------------------------------------------------------+
245+
+---------------------------------------------------------------------------------------------+
246+
| result |
247+
+---------------------------------------------------------------------------------------------+
248248
| resource="cluster";permission="ALLOW";principal="User:developer";operation="READ";host="*" |
249249
| resource="cluster";permission="ALLOW";principal="User:developer";operation="WRITE";host="*" |
250250
| resource="cluster";permission="ALLOW";principal="User:consumer";operation="READ";host="*" |
251-
+-------------------------------------------------------------------------------------------------------+
251+
+---------------------------------------------------------------------------------------------+
252252
3 rows in set
253253
```
254254

@@ -260,7 +260,7 @@ USE CATALOG admin_catalog;
260260
261261
-- create table using admin credentials
262262
CREATE TABLE fluss_order (
263-
`order_key` INT NOT NULL,
263+
`order_key` INT NOT NULL,
264264
`total_price` DECIMAL(15, 2),
265265
PRIMARY KEY (`order_key`) NOT ENFORCED
266266
);
@@ -540,12 +540,12 @@ CALL admin_catalog.sys.list_acl(
540540
```
541541
Output will show like:
542542
```text
543-
+----------------------------------------------------------------------------------------------------+
544-
| result |
545-
+----------------------------------------------------------------------------------------------------+
543+
+--------------------------------------------------------------------------------------------------------+
544+
| result |
545+
+--------------------------------------------------------------------------------------------------------+
546546
| resource="cluster.marketing_db";permission="ALLOW";principal="User:marketing";operation="ALL";host="*" |
547547
| resource="cluster.finance_db";permission="ALLOW";principal="User:finance";operation="ALL";host="*" |
548-
+----------------------------------------------------------------------------------------------------+
548+
+--------------------------------------------------------------------------------------------------------+
549549
2 rows in set
550550
```
551551

@@ -594,7 +594,7 @@ The `marketing` user can operate on their own database:
594594
USE CATALOG marketing_catalog;
595595
-- create table using marketing user credentials
596596
CREATE TABLE `marketing_db`.`order` (
597-
`order_key` INT NOT NULL,
597+
`order_key` INT NOT NULL,
598598
`total_price` DECIMAL(15, 2),
599599
PRIMARY KEY (`order_key`) NOT ENFORCED
600600
);
@@ -612,7 +612,7 @@ The `finance` user cannot access the `marketing` database:
612612
USE CATALOG finance_catalog;
613613
-- create table using finance user credentials
614614
CREATE TABLE `marketing_db`.`order` (
615-
`order_key` INT NOT NULL,
615+
`order_key` INT NOT NULL,
616616
`total_price` DECIMAL(15, 2),
617617
PRIMARY KEY (`order_key`) NOT ENFORCED
618618
);

0 commit comments

Comments
 (0)