Skip to content

Commit 8c5fadf

Browse files
committed
[KYUUBI apache#5266] Upgrade playground to Kyuubi 1.7.1
### _Why are the changes needed?_ Upgrade to latest Kyuubi in playground. ### _How was this patch tested?_ - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible Successfully published docker image via `BUILDX=1 docker/playground/build-image.sh` - [ ] Add screenshots for manual tests if appropriate - [ ] [Run test](https://kyuubi.readthedocs.io/en/master/contributing/code/testing.html#running-tests) locally before make a pull request ### _Was this patch authored or co-authored using generative AI tooling?_ No. Closes apache#5266 from pan3793/playground-171. Closes apache#5266 17015e4 [Cheng Pan] remove iceberg catalog a060f70 [Cheng Pan] spark 3.3.3 c317604 [Cheng Pan] fix b11d0bb [Cheng Pan] nit dc6a2b9 [Cheng Pan] Upgrade playground to Kyuubi 1.7.1 Authored-by: Cheng Pan <chengpan@apache.org> Signed-off-by: Cheng Pan <chengpan@apache.org>
1 parent 1a69772 commit 8c5fadf

File tree

5 files changed

+9
-13
lines changed

5 files changed

+9
-13
lines changed

docker/playground/.env

+6-6
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@
1515
# limitations under the License.
1616
#
1717

18-
AWS_JAVA_SDK_VERSION=1.12.316
19-
HADOOP_VERSION=3.3.5
18+
AWS_JAVA_SDK_VERSION=1.12.367
19+
HADOOP_VERSION=3.3.6
2020
HIVE_VERSION=2.3.9
21-
ICEBERG_VERSION=1.2.0
22-
KYUUBI_VERSION=1.7.0
23-
KYUUBI_HADOOP_VERSION=3.3.4
21+
ICEBERG_VERSION=1.3.1
22+
KYUUBI_VERSION=1.7.1
23+
KYUUBI_HADOOP_VERSION=3.3.5
2424
POSTGRES_VERSION=12
2525
POSTGRES_JDBC_VERSION=42.3.4
2626
SCALA_BINARY_VERSION=2.12
27-
SPARK_VERSION=3.3.2
27+
SPARK_VERSION=3.3.3
2828
SPARK_BINARY_VERSION=3.3
2929
SPARK_HADOOP_VERSION=3.3.2
3030
ZOOKEEPER_VERSION=3.6.3

docker/playground/compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ services:
2121
environment:
2222
MINIO_ROOT_USER: minio
2323
MINIO_ROOT_PASSWORD: minio_minio
24-
MINIO_DEFAULT_BUCKETS: spark-bucket,iceberg-bucket
24+
MINIO_DEFAULT_BUCKETS: spark-bucket
2525
container_name: minio
2626
hostname: minio
2727
ports:

docker/playground/conf/kyuubi-defaults.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ kyuubi.operation.progress.enabled=true
3030
kyuubi.engine.session.initialize.sql \
3131
show namespaces in tpcds; \
3232
show namespaces in tpch; \
33-
show namespaces in postgres;
33+
show namespaces in postgres

docker/playground/conf/spark-defaults.conf

-4
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,3 @@ spark.sql.catalog.postgres.url=jdbc:postgresql://postgres:5432/metastore
3838
spark.sql.catalog.postgres.driver=org.postgresql.Driver
3939
spark.sql.catalog.postgres.user=postgres
4040
spark.sql.catalog.postgres.password=postgres
41-
42-
spark.sql.catalog.iceberg=org.apache.iceberg.spark.SparkCatalog
43-
spark.sql.catalog.iceberg.type=hadoop
44-
spark.sql.catalog.iceberg.warehouse=s3a://iceberg-bucket/iceberg-warehouse

docker/playground/image/kyuubi-playground-base.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ RUN set -x && \
2020
mkdir /opt/busybox && \
2121
busybox --install /opt/busybox
2222

23-
ENV PATH=/opt/java/openjdk/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/busybox
23+
ENV PATH=${PATH}:/opt/busybox

0 commit comments

Comments
 (0)