<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Getting Started with Apache Polaris on Apache Polaris</title><link>https://polaris.apache.org/releases/1.4.1/getting-started/</link><description>Recent content in Getting Started with Apache Polaris on Apache Polaris</description><generator>Hugo</generator><language>en-us</language><copyright>&lt;a href="https://www.apache.org/"&gt;Copyright © 2026 The Apache Software Foundation&lt;/a&gt;.&lt;br&gt;Licensed under the &lt;a href="https://www.apache.org/licenses/LICENSE-2.0"&gt;Apache License, Version 2.0&lt;/a&gt;.</copyright><atom:link href="https://polaris.apache.org/releases/1.4.1/getting-started/index.xml" rel="self" type="application/rss+xml"/><item><title>Quickstart</title><link>https://polaris.apache.org/releases/1.4.1/getting-started/quick-start/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://polaris.apache.org/releases/1.4.1/getting-started/quick-start/</guid><description>&lt;p&gt;Use this guide to quickly start running Polaris. This is not intended for production use.&lt;/p&gt;
&lt;h2 id="prerequisites" id="prerequisites"&gt;Prerequisites&lt;a class="heading-anchor" href="#prerequisites" aria-label="Anchor"&gt;🔗&lt;/a&gt;
&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Have Docker (with Docker Compose v2) installed &amp;amp; running on your machine&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="running" id="running"&gt;Running&lt;a class="heading-anchor" href="#running" aria-label="Anchor"&gt;🔗&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;Run the following command:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span style="display:flex;"&gt;&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"&gt;1&lt;/span&gt;&lt;span&gt;curl -s https://raw.githubusercontent.com/apache/polaris/refs/heads/main/site/content/guides/quickstart/docker-compose.yml &lt;span style="color:#000;font-weight:bold"&gt;|&lt;/span&gt; docker compose -f - up
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;This command will:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Create a Catalog named &lt;code&gt;quickstart_catalog&lt;/code&gt; with RustFS-backed storage.&lt;/li&gt;
&lt;li&gt;Create a user principal &lt;code&gt;quickstart_user&lt;/code&gt; with full access to the catalog.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Once the command has been run, you will see examples on how to interact with this Polaris server in the logs.&lt;/p&gt;</description></item><item><title>Binary Distribution</title><link>https://polaris.apache.org/releases/1.4.1/getting-started/binary-distribution/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://polaris.apache.org/releases/1.4.1/getting-started/binary-distribution/</guid><description>&lt;p&gt;Use this guide to quickly start running Polaris using the pre-built binary distribution.&lt;/p&gt;
&lt;h2 id="prerequisites" id="prerequisites"&gt;Prerequisites&lt;a class="heading-anchor" href="#prerequisites" aria-label="Anchor"&gt;🔗&lt;/a&gt;
&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Java SE 21 or later installed on your machine&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="running" id="running"&gt;Running&lt;a class="heading-anchor" href="#running" aria-label="Anchor"&gt;🔗&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;Download and extract the binary distribution:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span style="display:flex;"&gt;&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"&gt;1&lt;/span&gt;&lt;span&gt;curl -L https://downloads.apache.org/incubator/polaris/1.4.1/polaris-bin-1.4.1.tgz &lt;span style="color:#000;font-weight:bold"&gt;|&lt;/span&gt; tar xz
&lt;/span&gt;&lt;/span&gt;&lt;span style="display:flex;"&gt;&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"&gt;2&lt;/span&gt;&lt;span&gt;&lt;span style="color:#204a87"&gt;cd&lt;/span&gt; polaris-bin-1.3.0-incubating
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Start the Polaris server:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span style="display:flex;"&gt;&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"&gt;1&lt;/span&gt;&lt;span&gt;bin/server
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;The server will start and listen on http://localhost:8182. Health and metrics endpoints are available under /q.&lt;/p&gt;</description></item><item><title>Installing Dependencies</title><link>https://polaris.apache.org/releases/1.4.1/getting-started/install-dependencies/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://polaris.apache.org/releases/1.4.1/getting-started/install-dependencies/</guid><description>&lt;p&gt;This guide serves as an introduction to several key entities that can be managed with Apache Polaris, describes how to build and deploy Polaris locally, and finally includes examples of how to use Polaris with Apache Spark™.&lt;/p&gt;
&lt;h1 id="prerequisites" id="prerequisites"&gt;Prerequisites&lt;a class="heading-anchor" href="#prerequisites" aria-label="Anchor"&gt;🔗&lt;/a&gt;
&lt;/h1&gt;
&lt;p&gt;This guide covers building Polaris, deploying it locally or via &lt;a href="https://www.docker.com/"&gt;Docker&lt;/a&gt;, and interacting with it using the command-line interface and &lt;a href="https://spark.apache.org/"&gt;Apache Spark&lt;/a&gt;. Before proceeding with Polaris, be sure to satisfy the relevant prerequisites listed here.&lt;/p&gt;</description></item></channel></rss>