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 cb92fff5e2f6 fix: creating warehouse bucket automatically (#14079)
cb92fff5e2f6 is described below
commit cb92fff5e2f654c416744283dccdf0913007a75e
Author: deepakpanda93 <[email protected]>
AuthorDate: Wed Oct 15 21:17:49 2025 +0530
fix: creating warehouse bucket automatically (#14079)
---
hudi-notebooks/docker-compose.yml | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/hudi-notebooks/docker-compose.yml
b/hudi-notebooks/docker-compose.yml
index c958d2b7f3f1..626c01d519b6 100644
--- a/hudi-notebooks/docker-compose.yml
+++ b/hudi-notebooks/docker-compose.yml
@@ -69,7 +69,8 @@ services:
condition: service_healthy
entrypoint: >
/bin/sh -c "
- until (/usr/bin/mc config host add minio http://minio:9000 admin
password) do echo '...waiting...' && sleep 1; done;
+ until (/usr/bin/mc alias set minio http://minio:9000 admin password
--api S3v4) do echo '...waiting...' && sleep 1; done;
+ /usr/bin/mc rm -r --force minio/warehouse;
/usr/bin/mc mb minio/warehouse;
/usr/bin/mc policy set public minio/warehouse;
tail -f /dev/null
@@ -90,4 +91,4 @@ services:
networks:
hudi-datalake:
- name: hudi-datalake
\ No newline at end of file
+ name: hudi-datalake