From 5ce30db28314ee7a05771cebd261384549ab5153 Mon Sep 17 00:00:00 2001 From: Yong Date: Thu, 26 Jun 2025 14:58:17 -0500 Subject: [PATCH 1/5] Fix doc for sample log and default password --- .../unreleased/getting-started/quickstart.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/site/content/in-dev/unreleased/getting-started/quickstart.md b/site/content/in-dev/unreleased/getting-started/quickstart.md index b3b4f1f9a0..f6e3edef56 100644 --- a/site/content/in-dev/unreleased/getting-started/quickstart.md +++ b/site/content/in-dev/unreleased/getting-started/quickstart.md @@ -42,7 +42,7 @@ cd ~/polaris ## Running Polaris with Docker -To start using Polaris in Docker and launch Polaris, which is packaged with a Postgres instance, Apache Spark, and Trino. +To start using Polaris in Docker and launch Polaris, which is packaged with a Postgres instance, Apache Spark, and Trino. ```shell export ASSETS_PATH=$(pwd)/getting-started/assets/ @@ -71,7 +71,7 @@ The Docker image pre-configures a sample catalog called `quickstart_catalog` tha You can also start Polaris through Gradle (packaged within the Polaris repository): -1. **Start the Server** +1. **Start the Server** Run the following command to start Polaris: @@ -82,17 +82,17 @@ Run the following command to start Polaris: You should see output for some time as Polaris builds and starts up. Eventually, you won’t see any more logs and should see messages that resemble the following: ``` -INFO [io.quarkus] [,] [,,,] (Quarkus Main Thread) polaris-runtime-service on JVM (powered by Quarkus ) started in 2.656s. Listening on: http://localhost:8181. Management interface listening on http://0.0.0.0:8182. -INFO [io.quarkus] [,] [,,,] (Quarkus Main Thread) Profile prod activated. Live Coding activated. -INFO [io.quarkus] [,] [,,,] (Quarkus Main Thread) Installed features: [...] +INFO [io.quarkus] [,] [,,,] (main) Apache Polaris Server (incubating) on JVM (powered by Quarkus ) started in 1.911s. Listening on: http://0.0.0.0:8181. Management interface listening on http://0.0.0.0:8182. +INFO [io.quarkus] [,] [,,,] (main) Profile prod activated. +INFO [io.quarkus] [,] [,,,] (main) Installed features: [...] ``` At this point, Polaris is running. -When using a Gradle-launched Polaris instance in this tutorial, we'll launch an instance of Polaris that stores entities only in-memory. This means that any entities that you define will be destroyed when Polaris is shut down. +When using a Gradle-launched Polaris instance in this tutorial, we'll launch an instance of Polaris that stores entities only in-memory. This means that any entities that you define will be destroyed when Polaris is shut down. For more information on how to configure Polaris for production usage, see the [docs]({{% relref "../configuring-polaris-for-production" %}}). -When Polaris is run using the `./gradlew run` command, the root principal credentials are `root` and `secret` for the `CLIENT_ID` and `CLIENT_SECRET`, respectively. +When Polaris is run using the `./gradlew run` command, the root principal credentials are `root` and `s3cr3t` for the `CLIENT_ID` and `CLIENT_SECRET`, respectively. ### Installing Apache Spark and Trino Locally for Testing @@ -114,4 +114,4 @@ docker run --name trino -d -p 8080:8080 trinodb/trino ``` ## Next Steps -Congrats, you now have a running instance of Polaris! For further information regarding how to use Polaris, check out the [Using Polaris]({{% ref "using-polaris" %}}) page. \ No newline at end of file +Congrats, you now have a running instance of Polaris! For further information regarding how to use Polaris, check out the [Using Polaris]({{% ref "using-polaris" %}}) page. From 9ad073be1292cbca2248d6003c43008ba463732f Mon Sep 17 00:00:00 2001 From: Yong Date: Thu, 26 Jun 2025 15:01:36 -0500 Subject: [PATCH 2/5] Fix doc for sample log and default password --- site/content/in-dev/unreleased/getting-started/quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/in-dev/unreleased/getting-started/quickstart.md b/site/content/in-dev/unreleased/getting-started/quickstart.md index f6e3edef56..9a4cd98f98 100644 --- a/site/content/in-dev/unreleased/getting-started/quickstart.md +++ b/site/content/in-dev/unreleased/getting-started/quickstart.md @@ -79,7 +79,7 @@ Run the following command to start Polaris: ./gradlew run ``` -You should see output for some time as Polaris builds and starts up. Eventually, you won’t see any more logs and should see messages that resemble the following: +You should see output for some time as Polaris builds and starts up. Eventually, you should see messages that resemble the following: ``` INFO [io.quarkus] [,] [,,,] (main) Apache Polaris Server (incubating) on JVM (powered by Quarkus ) started in 1.911s. Listening on: http://0.0.0.0:8181. Management interface listening on http://0.0.0.0:8182. From c8612c3f7787d93f2f63399d28032e1816eb5ab9 Mon Sep 17 00:00:00 2001 From: Yong Date: Thu, 26 Jun 2025 15:02:08 -0500 Subject: [PATCH 3/5] Fix doc for sample log and default password --- site/content/in-dev/unreleased/getting-started/quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/in-dev/unreleased/getting-started/quickstart.md b/site/content/in-dev/unreleased/getting-started/quickstart.md index 9a4cd98f98..f6e3edef56 100644 --- a/site/content/in-dev/unreleased/getting-started/quickstart.md +++ b/site/content/in-dev/unreleased/getting-started/quickstart.md @@ -79,7 +79,7 @@ Run the following command to start Polaris: ./gradlew run ``` -You should see output for some time as Polaris builds and starts up. Eventually, you should see messages that resemble the following: +You should see output for some time as Polaris builds and starts up. Eventually, you won’t see any more logs and should see messages that resemble the following: ``` INFO [io.quarkus] [,] [,,,] (main) Apache Polaris Server (incubating) on JVM (powered by Quarkus ) started in 1.911s. Listening on: http://0.0.0.0:8181. Management interface listening on http://0.0.0.0:8182. From c5d09ce41516cb408b6b2429bffa28e35de44fcb Mon Sep 17 00:00:00 2001 From: Yong Date: Thu, 26 Jun 2025 15:19:09 -0500 Subject: [PATCH 4/5] Fix doc for sample log and default password --- site/content/in-dev/unreleased/getting-started/quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/in-dev/unreleased/getting-started/quickstart.md b/site/content/in-dev/unreleased/getting-started/quickstart.md index f6e3edef56..125eeef360 100644 --- a/site/content/in-dev/unreleased/getting-started/quickstart.md +++ b/site/content/in-dev/unreleased/getting-started/quickstart.md @@ -92,7 +92,7 @@ At this point, Polaris is running. When using a Gradle-launched Polaris instance in this tutorial, we'll launch an instance of Polaris that stores entities only in-memory. This means that any entities that you define will be destroyed when Polaris is shut down. For more information on how to configure Polaris for production usage, see the [docs]({{% relref "../configuring-polaris-for-production" %}}). -When Polaris is run using the `./gradlew run` command, the root principal credentials are `root` and `s3cr3t` for the `CLIENT_ID` and `CLIENT_SECRET`, respectively. +When Polaris is run using the `./gradlew run` command, the root principal credentials are `root` and `secret` for the `CLIENT_ID` and `CLIENT_SECRET`, respectively. ### Installing Apache Spark and Trino Locally for Testing From 7e45d30216304ed900204c69969ba48faa7b5dfd Mon Sep 17 00:00:00 2001 From: Yong Date: Thu, 26 Jun 2025 15:20:39 -0500 Subject: [PATCH 5/5] Fix doc for sample log and default password --- site/content/in-dev/unreleased/getting-started/quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/in-dev/unreleased/getting-started/quickstart.md b/site/content/in-dev/unreleased/getting-started/quickstart.md index 125eeef360..f6e3edef56 100644 --- a/site/content/in-dev/unreleased/getting-started/quickstart.md +++ b/site/content/in-dev/unreleased/getting-started/quickstart.md @@ -92,7 +92,7 @@ At this point, Polaris is running. When using a Gradle-launched Polaris instance in this tutorial, we'll launch an instance of Polaris that stores entities only in-memory. This means that any entities that you define will be destroyed when Polaris is shut down. For more information on how to configure Polaris for production usage, see the [docs]({{% relref "../configuring-polaris-for-production" %}}). -When Polaris is run using the `./gradlew run` command, the root principal credentials are `root` and `secret` for the `CLIENT_ID` and `CLIENT_SECRET`, respectively. +When Polaris is run using the `./gradlew run` command, the root principal credentials are `root` and `s3cr3t` for the `CLIENT_ID` and `CLIENT_SECRET`, respectively. ### Installing Apache Spark and Trino Locally for Testing