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

yufei pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git


The following commit(s) were added to refs/heads/main by this push:
     new 408389f1e Fix getting-started docker start by PR #1532 (#1687)
408389f1e is described below

commit 408389f1eb99510a254331ee5129c61899defeca
Author: gh-yzou <[email protected]>
AuthorDate: Tue May 27 17:50:30 2025 -0700

    Fix getting-started docker start by PR #1532 (#1687)
---
 getting-started/spark/docker-compose.yml              | 3 +++
 getting-started/spark/notebooks/Dockerfile            | 2 +-
 plugins/spark/v3.5/getting-started/docker-compose.yml | 3 +++
 3 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/getting-started/spark/docker-compose.yml 
b/getting-started/spark/docker-compose.yml
index a6d51f3a9..0c0476fb8 100644
--- a/getting-started/spark/docker-compose.yml
+++ b/getting-started/spark/docker-compose.yml
@@ -30,6 +30,9 @@ services:
       POLARIS_BOOTSTRAP_CREDENTIALS: default-realm,root,s3cr3t
       polaris.realm-context.realms: default-realm
       quarkus.otel.sdk.disabled: "true"
+      polaris.features."ALLOW_INSECURE_STORAGE_TYPES": "true"
+      polaris.features."SUPPORTED_CATALOG_STORAGE_TYPES": 
"[\"FILE\",\"S3\",\"GCS\",\"AZURE\"]"
+      polaris.readiness.ignore-severe-issues: "true"
     healthcheck:
       test: ["CMD", "curl", "http://localhost:8182/healthcheck";]
       interval: 10s
diff --git a/getting-started/spark/notebooks/Dockerfile 
b/getting-started/spark/notebooks/Dockerfile
index fbec148b0..def61a489 100644
--- a/getting-started/spark/notebooks/Dockerfile
+++ b/getting-started/spark/notebooks/Dockerfile
@@ -24,7 +24,7 @@ ENV LANGUAGE='en_US:en'
 COPY --chown=jovyan client /home/jovyan/client
 COPY --chown=jovyan regtests/requirements.txt /tmp
 RUN pip install -r /tmp/requirements.txt && \
-    cd client/python && \
+    cd client/python && poetry lock && \
     python3 -m poetry install && \
     pip install -e .
 
diff --git a/plugins/spark/v3.5/getting-started/docker-compose.yml 
b/plugins/spark/v3.5/getting-started/docker-compose.yml
index 6dbcc65c6..d531e7605 100644
--- a/plugins/spark/v3.5/getting-started/docker-compose.yml
+++ b/plugins/spark/v3.5/getting-started/docker-compose.yml
@@ -30,6 +30,9 @@ services:
       POLARIS_BOOTSTRAP_CREDENTIALS: default-realm,root,s3cr3t
       polaris.realm-context.realms: default-realm
       quarkus.otel.sdk.disabled: "true"
+      polaris.features."ALLOW_INSECURE_STORAGE_TYPES": "true"
+      polaris.features."SUPPORTED_CATALOG_STORAGE_TYPES": 
"[\"FILE\",\"S3\",\"GCS\",\"AZURE\"]"
+      polaris.readiness.ignore-severe-issues: "true"
     healthcheck:
       test: ["CMD", "curl", "http://localhost:8182/healthcheck";]
       interval: 10s

Reply via email to