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

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


The following commit(s) were added to refs/heads/master by this push:
     new ce288b6ed0 HDDS-13265. Simplify the page Access Ozone using HTTPFS 
REST API (#8629)
ce288b6ed0 is described below

commit ce288b6ed0c835dfbe5fe32589bc043db385bbe1
Author: Wei-Chiu Chuang <[email protected]>
AuthorDate: Sat Jun 14 12:58:36 2025 -0700

    HDDS-13265. Simplify the page Access Ozone using HTTPFS REST API (#8629)
---
 .../content/recipe/PythonRequestsOzoneHttpFS.md    | 26 ++--------------------
 1 file changed, 2 insertions(+), 24 deletions(-)

diff --git a/hadoop-hdds/docs/content/recipe/PythonRequestsOzoneHttpFS.md 
b/hadoop-hdds/docs/content/recipe/PythonRequestsOzoneHttpFS.md
index b6428574e3..641cd113da 100644
--- a/hadoop-hdds/docs/content/recipe/PythonRequestsOzoneHttpFS.md
+++ b/hadoop-hdds/docs/content/recipe/PythonRequestsOzoneHttpFS.md
@@ -33,31 +33,9 @@ This tutorial demonstrates how to access Apache Ozone using 
the HTTPFS REST API
 
 ### 1️⃣ Start Ozone in Docker
 
-Download the latest Docker Compose configuration file:
-
-```bash
-curl -O 
https://raw.githubusercontent.com/apache/ozone-docker/refs/heads/latest/docker-compose.yaml
-```
-
-Add httpfs container configurations and environment variable overrides at the 
bottom of `docker-compose.yaml`:
-
-```yaml
-   httpfs:
-     <<: *image
-     ports:
-       - 14000:14000
-     environment:
-       CORE-SITE.XML_fs.defaultFS: "ofs://om"
-       CORE-SITE.XML_hadoop.proxyuser.hadoop.hosts: "*"
-       CORE-SITE.XML_hadoop.proxyuser.hadoop.groups: "*"
-       OZONE-SITE.XML_hdds.scm.safemode.min.datanode: 
${OZONE_SAFEMODE_MIN_DATANODES:-1}
-       <<: *common-config
-     command: [ "ozone","httpfs" ]
-```
-
-Start the cluster:
-
+Download the latest Docker Compose file for Ozone and start the cluster with 3 
DataNodes:
 ```bash
+curl -O 
https://raw.githubusercontent.com/apache/ozone-docker/latest/docker-compose.yaml
 docker compose up -d --scale datanode=3
 ```
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to