[KYUUBI #6964] Fix typos in serveral docs

### Why are the changes needed?

fix typos in docs

### How was this patch tested?
NO

### Was this patch authored or co-authored using generative AI tooling?
No

Closes #6964 from wenxin-cn/fix-typos-in-docs.

Closes #6964

5a50a927a [Kent Yao] style
be899c21f [10172] fix typos in docs

Lead-authored-by: wenxin-cn <wen.xin@datasw.com>
Co-authored-by: Kent Yao <yao@apache.org>
Co-authored-by: 10172 <wen.xin@datasw.com>
Signed-off-by: Kent Yao <yao@apache.org>
This commit is contained in:
wenxin-cn 2025-03-12 14:02:24 +08:00 committed by Kent Yao
parent f9272456b8
commit d0d24cd98f
No known key found for this signature in database
GPG Key ID: F7051850A0AF904D
5 changed files with 7 additions and 7 deletions

View File

@ -223,7 +223,7 @@ The `FLINK_HADOOP_CLASSPATH` is required, too.
For users who are using Hadoop 3.x, Hadoop shaded client is recommended instead of Hadoop vanilla jars.
For users who are using Hadoop 2.x, `FLINK_HADOOP_CLASSPATH` should be set to hadoop classpath to use Hadoop
vanilla jars. For users which does not use Hadoop services, e.g. HDFS, YARN at all, Hadoop client jars
vanilla jars. For users who does not use Hadoop services, e.g. HDFS, YARN at all, Hadoop client jars
is also required, and recommend to use Hadoop shaded client as Hadoop 3.x's users do.
See [HADOOP-11656](https://issues.apache.org/jira/browse/HADOOP-11656) for details of Hadoop shaded client.

View File

@ -93,10 +93,10 @@ Kyuubi supports hot upgrade one of server in a HA cluster which is transparent t
You can just start the new Kyuubi Server, and then run cmd using `bin/kyuubi-ctl`:
```shell
./bin/kyuubi-ctl delete server --host "kyuubi.host" --port "${PORT_FPR_OLD_KYUUBI_SERVER}"
./bin/kyuubi-ctl delete server --host "kyuubi.host" --port "${PORT_FOR_OLD_KYUUBI_SERVER}"
```
The `${PORT_FPR_OLD_KYUUBI_SERVER}` can be found by:
The `${PORT_FOR_OLD_KYUUBI_SERVER}` can be found by:
```shell
grep "server.KyuubiThriftBinaryFrontendService: Starting and exposing JDBC connection at" logs/kyuubi-*.out

View File

@ -90,7 +90,7 @@ These metrics include:
| `kyuubi.metadata.request.total` | | meter | 1.6.0 | <div style='width: 150pt;word-wrap: break-word;white-space: normal'> metadata requests time and rate </div> |
| `kyuubi.metadata.request.failed` | | meter | 1.6.0 | <div style='width: 150pt;word-wrap: break-word;white-space: normal'> metadata requests failure time and rate </div> |
| `kyuubi.metadata.request.retrying` | | meter | 1.6.0 | <div style='width: 150pt;word-wrap: break-word;white-space: normal'> retrying metadata requests time and rate, it is not cumulative </div> |
| `kyuubi.operartion.batch_pending_max_elapse` | | gauge | 1.10.1 | <div style='width: 150pt;word-wrap: break-word;white-space: normal'> the batch pending max elapsed time on current kyuubi instance </div> |
| `kyuubi.operation.batch_pending_max_elapse` | | gauge | 1.10.1 | <div style='width: 150pt;word-wrap: break-word;white-space: normal'> the batch pending max elapsed time on current kyuubi instance </div> |
Before v1.5.0, if you use these metrics:
- `kyuubi.statement.total`

View File

@ -19,7 +19,7 @@ Getting Started
.. note::
This page covers how to start with kyuubi quickly on you
This page covers how to start with kyuubi quickly on your
laptop in about 3~5 minutes.
Requirements

View File

@ -20,7 +20,7 @@
## Build with Apache Maven
Kyuubi Spark AuthZ Plugin is built using [Apache Maven](https://maven.apache.org).
To build it, `cd` to the root direct of kyuubi project and run:
To build it, `cd` to the root directory of kyuubi project and run:
```shell
build/mvn clean package -pl :kyuubi-spark-authz_2.12 -am -DskipTests
@ -34,7 +34,7 @@ After a while, if everything goes well, you will get the plugin finally in two p
## Build shaded jar with Apache Maven
Apache Kyuubi also provides the shaded jar for the Spark AuthZ plugin, You can run the AuthZ plugin using just a shaded jar without the additional dependency of jars,
To build it, `cd` to the root direct of kyuubi project and run:
To build it, `cd` to the root directory of kyuubi project and run:
```shell
build/mvn clean package -pl :kyuubi-spark-authz-shaded_2.12 -am -DskipTests