Skip to content

Commit 570b3a4

Browse files
HYBGpan3793
authored andcommitted
[KYUUBI #3502] [DOCS] Fix typo and use beeline provided by Kyuubi
1. Fix typo ${SPAAK_HOME} 2. Change ${SPAAK_HOME} to ${KYUUBI_HOME} Closes #3502 from HYBG-1126/master. Closes #3502 acf43e0 [海洋饼干] 更新文档docs/deployment/kyuubi_on_kubernetes.md 1、61行${SPAAK_HOME}为${SPARK_HOME} 2、91、96行,${SPAAK_HOME}应为${KYUUBI_HOME} Lead-authored-by: HYBG <hybg1126@outlook.com> Co-authored-by: 海洋饼干 <hybg1126@outlook.com> Signed-off-by: Cheng Pan <chengpan@apache.org>
1 parent 95e3558 commit 570b3a4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/deployment/kyuubi_on_kubernetes.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Examples:
5858

5959
`${KYUUBI_HOME}/bin/docker-image-tool.sh` use `Kyuubi Version` as default docker tag and always build `${repo}/kyuubi:${tag}` image.
6060

61-
The script can also help build external Spark into a Kyuubi image that acts as a client for submitting tasks by `-s ${SPAAK_HOME}`.
61+
The script can also help build external Spark into a Kyuubi image that acts as a client for submitting tasks by `-s ${SPARK_HOME}`.
6262

6363
Of course, if you have an image that contains the Spark binary package, you don't have to copy Spark locally. Make your Spark Image as BASE_IMAGE by using the `-S ${SPARK_HOME_IN_DOCKER}` and `-b BASE_IMAGE=${SPARK_IMAGE}` arguments.
6464

@@ -88,12 +88,12 @@ If you do not use Service or HostNetwork to get the IP address of the node where
8888
You should connect like:
8989
```shell
9090
kubectl exec -it kyuubi-example -- /bin/bash
91-
${SPARK_HOME}/bin/beeline -u 'jdbc:hive2://localhost:10009'
91+
${KYUUBI_HOME}/bin/beeline -u 'jdbc:hive2://localhost:10009'
9292
```
9393

9494
Or you can submit tasks directly through local beeline:
9595
```shell
96-
${SPARK_HOME}/bin/beeline -u 'jdbc:hive2://${hostname}:${port}'
96+
${KYUUBI_HOME}/bin/beeline -u 'jdbc:hive2://${hostname}:${port}'
9797
```
9898
As using service nodePort, port means nodePort and hostname means any hostname of kubernetes node.
9999

0 commit comments

Comments
 (0)