You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by xu...@apache.org on 2022/01/03 04:35:14 UTC

[hudi] branch master updated: [MINOR] Update README.md (#4492)

This is an automated email from the ASF dual-hosted git repository.

xushiyan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git


The following commit(s) were added to refs/heads/master by this push:
     new 0273f2e  [MINOR] Update README.md (#4492)
0273f2e is described below

commit 0273f2e65d97374ed20813c952ca18666d876626
Author: Raymond Xu <27...@users.noreply.github.com>
AuthorDate: Sun Jan 2 20:34:37 2022 -0800

    [MINOR] Update README.md (#4492)
    
    Update Spark 3 build instructions
---
 README.md | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index f20ec82..4f48fc6 100644
--- a/README.md
+++ b/README.md
@@ -78,12 +78,19 @@ The default Scala version supported is 2.11. To build for Scala 2.12 version, bu
 mvn clean package -DskipTests -Dscala-2.12
 ```
 
-### Build with Spark 3.0.0
+### Build with Spark 3
 
-The default Spark version supported is 2.4.4. To build for Spark 3.0.0 version, build using `spark3` profile
+The default Spark version supported is 2.4.4. To build for different Spark 3 versions, use the corresponding profile
 
 ```
+# Build against Spark 3.2.0 (default build shipped with the public jars)
 mvn clean package -DskipTests -Dspark3
+
+# Build against Spark 3.1.2
+mvn clean package -DskipTests -Dspark3.1.x
+
+# Build against Spark 3.0.3
+mvn clean package -DskipTests -Dspark3.0.x
 ```
 
 ### Build without spark-avro module