Skip to content

Commit b498244

Browse files
committed
[doc] fix typos, format in installation overview
1 parent 5c4225e commit b498244

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
@@ -70,7 +70,7 @@ We have listed them in the table below the figure.
7070
<td>
7171
<p>
7272
CoordinatorServer is the name of the central work coordination component of Fluss.
73-
The coordinator server is responsible to:
73+
The coordinator server is responsible for:
7474
</p>
7575
<ul>
7676
<li>Manage the TabletServer</li>
@@ -103,15 +103,15 @@ We have listed them in the table below the figure.
103103
<td>ZooKeeper</td>
104104
<td>
105105
:::warning
106-
Zookeeper will be removed to simplify deployment in the near future. For more details, please checkout [Roadmap](/roadmap/).
106+
ZooKeeper will be removed to simplify deployment in the near future. For more details, please checkout [Roadmap](/roadmap/).
107107
:::
108108
<p>
109109
Fluss leverages ZooKeeper for distributed coordination between all running CoordinatorServer instances and for metadata management.
110110
</p>
111111
</td>
112112
<td>
113113
<ul>
114-
<li><a href="https://zookeeper.apache.org/">Zookeeper</a></li>
114+
<li><a href="https://zookeeper.apache.org/">ZooKeeper</a></li>
115115
</ul>
116116
</td>
117117
</tr>
@@ -156,7 +156,7 @@ We have listed them in the table below the figure.
156156
Fluss can be deployed in three different ways:
157157
- [Local Cluster](install-deploy/deploying-local-cluster.md)
158158
- [Distributed Cluster](install-deploy/deploying-distributed-cluster.md)
159-
- [Docker run/ Docker compose](install-deploy/deploying-with-docker.md)
159+
- [Docker run / Docker Compose](install-deploy/deploying-with-docker.md)
160160

161161
**NOTE**:
162162
- 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)