This is an automated email from the ASF dual-hosted git repository.
comphead pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-comet.git
The following commit(s) were added to refs/heads/main by this push:
new 6828dc48a chore: update `Iceberg` install docs (#2824)
6828dc48a is described below
commit 6828dc48a891b785405eaf4666f31962b8a68eca
Author: Oleks V <[email protected]>
AuthorDate: Tue Nov 25 09:07:23 2025 -0800
chore: update `Iceberg` install docs (#2824)
---
docs/source/user-guide/latest/iceberg.md | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/docs/source/user-guide/latest/iceberg.md
b/docs/source/user-guide/latest/iceberg.md
index 9cc273d54..0813eeeb2 100644
--- a/docs/source/user-guide/latest/iceberg.md
+++ b/docs/source/user-guide/latest/iceberg.md
@@ -56,8 +56,7 @@ git apply ../datafusion-comet/dev/diffs/iceberg/1.8.1.diff
Perform a clean build
```shell
-./gradlew clean
-./gradlew build -x test -x integrationTest
+./gradlew clean build -x test -x integrationTest
```
## Test
@@ -72,9 +71,8 @@ Launch Spark Shell:
```shell
$SPARK_HOME/bin/spark-shell \
- --jars $COMET_JAR,$ICEBERG_JAR \
- --conf spark.driver.extraClassPath=$COMET_JAR,$ICEBERG_JAR \
- --conf spark.executor.extraClassPath=$COMET_JAR,$ICEBERG_JAR \
+ --driver-class-path $COMET_JAR:$ICEBERG_JAR \
+ --conf spark.executor.extraClassPath=$COMET_JAR:$ICEBERG_JAR \
--conf
spark.sql.extensions=org.apache.iceberg.spark.extensions.IcebergSparkSessionExtensions
\
--conf
spark.sql.catalog.spark_catalog=org.apache.iceberg.spark.SparkCatalog \
--conf spark.sql.catalog.spark_catalog.type=hadoop \
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]