This is an automated email from the ASF dual-hosted git repository.
chengpan pushed a commit to branch branch-1.7
in repository https://gitbox.apache.org/repos/asf/kyuubi.git
The following commit(s) were added to refs/heads/branch-1.7 by this push:
new 17bc0567c [KYUUBI #4727] [DOC] kyuubi-spark-lineage has no transitive
deps
17bc0567c is described below
commit 17bc0567cf0922b7647244e477505aae171bf00e
Author: Cheng Pan <[email protected]>
AuthorDate: Wed Apr 19 17:48:14 2023 +0800
[KYUUBI #4727] [DOC] kyuubi-spark-lineage has no transitive deps
### _Why are the changes needed?_
Update outdated docs
### _How was this patch tested?_
- [ ] Add some test cases that check the changes thoroughly including
negative and positive cases if possible
- [ ] Add screenshots for manual tests if appropriate
- [ ] [Run
test](https://kyuubi.readthedocs.io/en/master/develop_tools/testing.html#running-tests)
locally before make a pull request
Closes #4727 from pan3793/lineage-doc.
Closes #4727
b6843b282 [Cheng Pan] [DOC] kyuubi-spark-lineage has no transitive deps
Authored-by: Cheng Pan <[email protected]>
Signed-off-by: odone <[email protected]>
---
docs/extensions/engines/spark/lineage.md | 5 ++---
extensions/spark/kyuubi-spark-lineage/README.md | 2 +-
2 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/docs/extensions/engines/spark/lineage.md
b/docs/extensions/engines/spark/lineage.md
index 8f2f76c9f..c4b25320e 100644
--- a/docs/extensions/engines/spark/lineage.md
+++ b/docs/extensions/engines/spark/lineage.md
@@ -101,13 +101,12 @@ Kyuubi Spark Lineage Listener Extension is built using
[Apache Maven](https://ma
To build it, `cd` to the root direct of kyuubi project and run:
```shell
-build/mvn clean package -pl :kyuubi-spark-lineage_2.12 -DskipTests
+build/mvn clean package -pl :kyuubi-spark-lineage_2.12 -am -DskipTests
```
After a while, if everything goes well, you will get the plugin finally in two
parts:
- The main plugin jar, which is under
`./extensions/spark/kyuubi-spark-lineage/target/kyuubi-spark-lineage_${scala.binary.version}-${project.version}.jar`
-- The least transitive dependencies needed, which are under
`./extensions/spark/kyuubi-spark-lineage/target/scala-${scala.binary.version}/jars`
### Build against Different Apache Spark Versions
@@ -118,7 +117,7 @@ Sometimes, it may be incompatible with other Spark
distributions, then you may n
For example,
```shell
-build/mvn clean package -pl :kyuubi-spark-lineage_2.12 -DskipTests
-Dspark.version=3.1.2
+build/mvn clean package -pl :kyuubi-spark-lineage_2.12 -am -DskipTests
-Dspark.version=3.1.2
```
The available `spark.version`s are shown in the following table.
diff --git a/extensions/spark/kyuubi-spark-lineage/README.md
b/extensions/spark/kyuubi-spark-lineage/README.md
index e70acc015..10c1a3e90 100644
--- a/extensions/spark/kyuubi-spark-lineage/README.md
+++ b/extensions/spark/kyuubi-spark-lineage/README.md
@@ -26,7 +26,7 @@
## Build
```shell
-build/mvn clean package -pl :kyuubi-spark-lineage_2.12 -Dspark.version=3.2.1
+build/mvn clean package -pl :kyuubi-spark-lineage_2.12 -am
-Dspark.version=3.2.1
```
### Supported Apache Spark Versions