This is an automated email from the ASF dual-hosted git repository.
yao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kyuubi.git
The following commit(s) were added to refs/heads/master by this push:
new d0d24cd98f [KYUUBI #6964] Fix typos in serveral docs
d0d24cd98f is described below
commit d0d24cd98f79e937f043c2348f86fe55dfd21bca
Author: wenxin-cn <[email protected]>
AuthorDate: Wed Mar 12 14:02:24 2025 +0800
[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 <[email protected]>
Co-authored-by: Kent Yao <[email protected]>
Co-authored-by: 10172 <[email protected]>
Signed-off-by: Kent Yao <[email protected]>
---
docs/deployment/engine_on_yarn.md | 2 +-
docs/deployment/high_availability_guide.md | 4 ++--
docs/monitor/metrics.md | 2 +-
docs/quick_start/quick_start.rst | 2 +-
docs/security/authorization/spark/build.md | 4 ++--
5 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/docs/deployment/engine_on_yarn.md
b/docs/deployment/engine_on_yarn.md
index 523b3da03a..e8c0deceb5 100644
--- a/docs/deployment/engine_on_yarn.md
+++ b/docs/deployment/engine_on_yarn.md
@@ -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.
diff --git a/docs/deployment/high_availability_guide.md
b/docs/deployment/high_availability_guide.md
index 883633e037..13eb7ee681 100644
--- a/docs/deployment/high_availability_guide.md
+++ b/docs/deployment/high_availability_guide.md
@@ -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
diff --git a/docs/monitor/metrics.md b/docs/monitor/metrics.md
index fd8eb3afaa..58a078e470 100644
--- a/docs/monitor/metrics.md
+++ b/docs/monitor/metrics.md
@@ -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`
diff --git a/docs/quick_start/quick_start.rst b/docs/quick_start/quick_start.rst
index 76139dd96a..f638dd9cba 100644
--- a/docs/quick_start/quick_start.rst
+++ b/docs/quick_start/quick_start.rst
@@ -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
diff --git a/docs/security/authorization/spark/build.md
b/docs/security/authorization/spark/build.md
index a707f0ca5d..d81c15bc1c 100644
--- a/docs/security/authorization/spark/build.md
+++ b/docs/security/authorization/spark/build.md
@@ -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