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

github-bot pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/ozone-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 58a7fd79 [auto] Generated docs from Apache Ozone master 
5a3e4e79c375cebe0ba598b1133b5718c9fd4fda
58a7fd79 is described below

commit 58a7fd7934cd849816cc4823db51c014d798eac7
Author: Github Actions <[email protected]>
AuthorDate: Sun Jun 15 12:46:09 2025 +0000

    [auto] Generated docs from Apache Ozone master 
5a3e4e79c375cebe0ba598b1133b5718c9fd4fda
---
 docs/edge/en/sitemap.xml                        |  2 +-
 docs/edge/recipe/index.xml                      |  2 +-
 docs/edge/recipe/pythonrequestsozonehttpfs.html | 21 ++++-----------------
 docs/edge/sitemap.xml                           |  2 +-
 4 files changed, 7 insertions(+), 20 deletions(-)

diff --git a/docs/edge/en/sitemap.xml b/docs/edge/en/sitemap.xml
index 39b91051..1bb5a6c8 100644
--- a/docs/edge/en/sitemap.xml
+++ b/docs/edge/en/sitemap.xml
@@ -555,7 +555,7 @@
     <lastmod>2022-04-20T11:07:50-07:00</lastmod>
   </url><url>
     <loc>/recipe/pythonrequestsozonehttpfs.html</loc>
-    <lastmod>2025-06-08T04:07:31-07:00</lastmod>
+    <lastmod>2025-06-14T12:58:36-07:00</lastmod>
   </url><url>
     <loc>/start/onprem.html</loc>
     <lastmod>2025-06-14T00:32:50-07:00</lastmod>
diff --git a/docs/edge/recipe/index.xml b/docs/edge/recipe/index.xml
index f26f4c7c..3253bd12 100644
--- a/docs/edge/recipe/index.xml
+++ b/docs/edge/recipe/index.xml
@@ -6,7 +6,7 @@
     <description>Recent content in Recipes on Ozone</description>
     <generator>Hugo</generator>
     <language>en</language>
-    <lastBuildDate>Sun, 08 Jun 2025 04:07:31 -0700</lastBuildDate>
+    <lastBuildDate>Sat, 14 Jun 2025 12:58:36 -0700</lastBuildDate>
     <atom:link href="/recipe/index.xml" rel="self" type="application/rss+xml" 
/>
     <item>
       <title>Access Ozone using PyArrow (Docker Quickstart)</title>
diff --git a/docs/edge/recipe/pythonrequestsozonehttpfs.html 
b/docs/edge/recipe/pythonrequestsozonehttpfs.html
index c143632a..b72eb1a7 100644
--- a/docs/edge/recipe/pythonrequestsozonehttpfs.html
+++ b/docs/edge/recipe/pythonrequestsozonehttpfs.html
@@ -523,22 +523,9 @@ limitations under the License.
 </ul>
 <h2 id="steps">Steps</h2>
 <h3 id="1-start-ozone-in-docker">1️⃣ Start Ozone in Docker</h3>
-<p>Download the latest Docker Compose configuration file:</p>
-<div class="highlight"><pre tabindex="0" 
style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code
 class="language-bash" data-lang="bash"><span style="display:flex;"><span>curl 
-O 
https://raw.githubusercontent.com/apache/ozone-docker/refs/heads/latest/docker-compose.yaml
-</span></span></code></pre></div><p>Add httpfs container configurations and 
environment variable overrides at the bottom of 
<code>docker-compose.yaml</code>:</p>
-<div class="highlight"><pre tabindex="0" 
style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code
 class="language-yaml" data-lang="yaml"><span style="display:flex;"><span>   
<span style="color:#f92672">httpfs</span>:
-</span></span><span style="display:flex;"><span>     <span 
style="color:#f92672">&lt;&lt;</span>: <span style="color:#75715e">*image</span>
-</span></span><span style="display:flex;"><span>     <span 
style="color:#f92672">ports</span>:
-</span></span><span style="display:flex;"><span>       - <span 
style="color:#ae81ff">14000</span>:<span style="color:#ae81ff">14000</span>
-</span></span><span style="display:flex;"><span>     <span 
style="color:#f92672">environment</span>:
-</span></span><span style="display:flex;"><span>       <span 
style="color:#f92672">CORE-SITE.XML_fs.defaultFS</span>: <span 
style="color:#e6db74">&#34;ofs://om&#34;</span>
-</span></span><span style="display:flex;"><span>       <span 
style="color:#f92672">CORE-SITE.XML_hadoop.proxyuser.hadoop.hosts</span>: <span 
style="color:#e6db74">&#34;*&#34;</span>
-</span></span><span style="display:flex;"><span>       <span 
style="color:#f92672">CORE-SITE.XML_hadoop.proxyuser.hadoop.groups</span>: 
<span style="color:#e6db74">&#34;*&#34;</span>
-</span></span><span style="display:flex;"><span>       <span 
style="color:#f92672">OZONE-SITE.XML_hdds.scm.safemode.min.datanode</span>: 
<span style="color:#ae81ff">${OZONE_SAFEMODE_MIN_DATANODES:-1}</span>
-</span></span><span style="display:flex;"><span>       <span 
style="color:#f92672">&lt;&lt;</span>: <span 
style="color:#75715e">*common-config</span>
-</span></span><span style="display:flex;"><span>     <span 
style="color:#f92672">command</span>: [ <span 
style="color:#e6db74">&#34;ozone&#34;</span>,<span 
style="color:#e6db74">&#34;httpfs&#34;</span> ]
-</span></span></code></pre></div><p>Start the cluster:</p>
-<div class="highlight"><pre tabindex="0" 
style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code
 class="language-bash" data-lang="bash"><span 
style="display:flex;"><span>docker compose up -d --scale datanode<span 
style="color:#f92672">=</span><span style="color:#ae81ff">3</span>
+<p>Download the latest Docker Compose file for Ozone and start the cluster 
with 3 DataNodes:</p>
+<div class="highlight"><pre tabindex="0" 
style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code
 class="language-bash" data-lang="bash"><span style="display:flex;"><span>curl 
-O 
https://raw.githubusercontent.com/apache/ozone-docker/latest/docker-compose.yaml
+</span></span><span style="display:flex;"><span>docker compose up -d --scale 
datanode<span style="color:#f92672">=</span><span style="color:#ae81ff">3</span>
 </span></span></code></pre></div><h3 id="2-create-a-volume-and-bucket">2️⃣ 
Create a Volume and Bucket</h3>
 <p>Connect to the SCM container:</p>
 <div class="highlight"><pre tabindex="0" 
style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code
 class="language-bash" data-lang="bash"><span 
style="display:flex;"><span>docker exec -it 
&lt;your-scm-container-name-or-id&gt; bash
@@ -643,7 +630,7 @@ limitations under the License.
 <footer class="footer">
   <div class="container">
     <span class="small text-muted">
-      Version: 2.1.0-SNAPSHOT, Last Modified: June 8, 2025 <a 
class="hide-child link primary-color" 
href="https://github.com/apache/ozone/commit/31d13de52a184cb3ca99f81d903cb0f9cb2df2ae";>31d13de52a</a>
+      Version: 2.1.0-SNAPSHOT, Last Modified: June 14, 2025 <a 
class="hide-child link primary-color" 
href="https://github.com/apache/ozone/commit/ce288b6ed0c835dfbe5fe32589bc043db385bbe1";>ce288b6ed0</a>
     </span>
   </div>
 </footer>
diff --git a/docs/edge/sitemap.xml b/docs/edge/sitemap.xml
index 8039606e..6db204fd 100644
--- a/docs/edge/sitemap.xml
+++ b/docs/edge/sitemap.xml
@@ -4,7 +4,7 @@
   <sitemap>
     <loc>/en/sitemap.xml</loc>
     
-      <lastmod>2025-06-14T00:32:50-07:00</lastmod>
+      <lastmod>2025-06-14T12:58:36-07:00</lastmod>
     
   </sitemap>
   


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

Reply via email to