This is an automated email from the ASF dual-hosted git repository.
yzheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new 56cd93ba6 (doc): Fix Polaris getting started doc and docker-compose
(#3425)
56cd93ba6 is described below
commit 56cd93ba61faea0ab9b4b4adc56237dc02f4620f
Author: Yong Zheng <[email protected]>
AuthorDate: Tue Jan 13 07:42:18 2026 -0600
(doc): Fix Polaris getting started doc and docker-compose (#3425)
* Fix Polaris getting started doc
* Fix Polaris getting started doc
---
getting-started/telemetry/docker-compose.yml | 9 +++++----
.../unreleased/getting-started/using-polaris/telemetry-tools.md | 5 +----
2 files changed, 6 insertions(+), 8 deletions(-)
diff --git a/getting-started/telemetry/docker-compose.yml
b/getting-started/telemetry/docker-compose.yml
index a7b46de7b..dbd4022a1 100644
--- a/getting-started/telemetry/docker-compose.yml
+++ b/getting-started/telemetry/docker-compose.yml
@@ -30,7 +30,8 @@ services:
jaeger:
condition: service_healthy
environment:
- POLARIS_BOOTSTRAP_CREDENTIALS: POLARIS,${CLIENT_ID},${CLIENT_SECRET}
+ POLARIS_BOOTSTRAP_CREDENTIALS: POLARIS,root,s3cr3t
+ quarkus.otel.sdk.disabled: false
quarkus.otel.exporter.otlp.endpoint: http://jaeger:4317
# Resource attributes (added to all traces)
quarkus.otel.resource.attributes[0]: polaris.app=polaris-getting-started
@@ -60,10 +61,10 @@ services:
polaris:
condition: service_healthy
environment:
- - CLIENT_ID=${CLIENT_ID}
- - CLIENT_SECRET=${CLIENT_SECRET}
+ - CLIENT_ID=root
+ - CLIENT_SECRET=s3cr3t
volumes:
- - ${ASSETS_PATH}/polaris/:/polaris
+ - ../assets/polaris/:/polaris
entrypoint: '/bin/sh -c "chmod +x /polaris/create-catalog.sh &&
/polaris/create-catalog.sh"'
prometheus:
diff --git
a/site/content/in-dev/unreleased/getting-started/using-polaris/telemetry-tools.md
b/site/content/in-dev/unreleased/getting-started/using-polaris/telemetry-tools.md
index ce6490297..491b2e604 100644
---
a/site/content/in-dev/unreleased/getting-started/using-polaris/telemetry-tools.md
+++
b/site/content/in-dev/unreleased/getting-started/using-polaris/telemetry-tools.md
@@ -18,7 +18,7 @@
# under the License.
#
title: Getting Started with Apache Polaris, Prometheus and Jaeger
-linkTitle: Using Polaris with telemetry tools
+linkTitle: Using telemetry tools
type: docs
weight: 401
---
@@ -37,9 +37,6 @@ This example requires `jq` to be installed on your machine.
2. Start the docker compose group by running the following command from the
root of the repository:
```shell
- export ASSETS_PATH=$(pwd)/getting-started/assets/
- export CLIENT_ID=root
- export CLIENT_SECRET=s3cr3t
docker compose -f getting-started/telemetry/docker-compose.yml up
```