This is an automated email from the ASF dual-hosted git repository.
lmccay pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/incubator-livy-website.git
The following commit(s) were added to refs/heads/asf-site by this push:
new cb03546 Publishing from c3186bd1b0bcb73bff0e55b66fbdc6cd75f5deb9
cb03546 is described below
commit cb03546ecbe94a53c9c660fc9657715dbfc958f5
Author: Larry McCay <[email protected]>
AuthorDate: Sat Dec 20 12:39:50 2025 -0500
Publishing from c3186bd1b0bcb73bff0e55b66fbdc6cd75f5deb9
---
content/examples/index.html | 4 ++--
content/feed.xml | 4 ++--
content/get-started/index.html | 6 +++---
3 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/content/examples/index.html b/content/examples/index.html
index 679e337..04b038e 100644
--- a/content/examples/index.html
+++ b/content/examples/index.html
@@ -276,8 +276,8 @@ Pi. This is from the <a
href="https://spark.apache.org/examples.html">Spark Exam
x, y = random.random(), random.random()
return 1 if x*x + y*y < 1 else 0
- count = sc.parallelize(xrange(0, NUM_SAMPLES)).map(sample).reduce(lambda
a, b: a + b)
- print "Pi is roughly %f" % (4.0 * count / NUM_SAMPLES)
+ count = sc.parallelize(range(0, NUM_SAMPLES)).map(sample).reduce(lambda a,
b: a + b)
+ print("Pi is roughly %f" % (4.0 * count / NUM_SAMPLES))
"""</span><span class="p">)</span>
<span class="p">}</span>
diff --git a/content/feed.xml b/content/feed.xml
index ea3351e..b185cf7 100644
--- a/content/feed.xml
+++ b/content/feed.xml
@@ -5,8 +5,8 @@
<description></description>
<link>/</link>
<atom:link href="/feed.xml" rel="self" type="application/rss+xml"/>
- <pubDate>Sat, 06 Dec 2025 15:36:29 -0500</pubDate>
- <lastBuildDate>Sat, 06 Dec 2025 15:36:29 -0500</lastBuildDate>
+ <pubDate>Sat, 20 Dec 2025 12:39:48 -0500</pubDate>
+ <lastBuildDate>Sat, 20 Dec 2025 12:39:48 -0500</lastBuildDate>
<generator>Jekyll v3.9.3</generator>
<item>
diff --git a/content/get-started/index.html b/content/get-started/index.html
index e6aead4..a98c0c4 100644
--- a/content/get-started/index.html
+++ b/content/get-started/index.html
@@ -171,7 +171,7 @@
<h3 id="2-run-livy">2. Run Livy</h3>
<p>To run the Livy server, you will also need an Apache Spark installation.
You can get Spark releases at
-<a
href="https://spark.apache.org/downloads.html">https://spark.apache.org/downloads.html</a>.
Livy requires at least Spark 1.6 and supports Scala 2.11 and 2.12
+<a
href="https://spark.apache.org/downloads.html">https://spark.apache.org/downloads.html</a>.
Livy requires Spark 3.0 or higher and supports Scala 2.12
builds of Spark. To run Livy with local sessions, first export these
variables:</p>
<p><code class="language-plaintext highlighter-rouge">export
SPARK_HOME=/usr/lib/spark</code></p>
@@ -207,8 +207,8 @@ The default configuration template will print log messages
to stderr.</li>
<h3 id="4-start-using-livy">4. Start using Livy</h3>
-<p>Once the Livy server is running, you can connect to it on port 8998 (this
can be changed with the
-<code class="language-plaintext highlighter-rouge">livy.server.port</code>
config option). Some examples to get started are provided <a
href="/examples">here</a>,
+<p>Once the Livy server is running, you can connect to it on port 8998 (this
can be changed with the
+<code class="language-plaintext highlighter-rouge">livy.server.port</code>
config option). Some examples to get started are provided <a
href="/examples">here</a>,
or you can check out the API documentation:</p>
<ul>