This is an automated email from the ASF dual-hosted git repository.
adutra 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 8d4cacb27 fix: minor corrections of documentation (#2397)
8d4cacb27 is described below
commit 8d4cacb27c2a29353091b149e733b4fa7ce4ac53
Author: olsoloviov <[email protected]>
AuthorDate: Tue Aug 19 18:24:18 2025 +0100
fix: minor corrections of documentation (#2397)
- fixed dead link to catalog definition in Iceberg docs on Entities page
- removed single quotes from credential parameter in the cmdline example
for connecting a local spark-sql: env variables need to be resolved in cmdline,
they will not be resolved by spark-sql itself.
---
site/content/in-dev/unreleased/entities.md | 2 +-
site/content/in-dev/unreleased/getting-started/using-polaris.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/site/content/in-dev/unreleased/entities.md
b/site/content/in-dev/unreleased/entities.md
index 08bb49e23..df53a0787 100644
--- a/site/content/in-dev/unreleased/entities.md
+++ b/site/content/in-dev/unreleased/entities.md
@@ -26,7 +26,7 @@ This page documents various entities that can be managed in
Apache Polaris (Incu
## Catalog
-A catalog is a top-level entity in Polaris that may contain other entities
like [namespaces](#namespace) and [tables](#table). These map directly to
[Apache Iceberg catalogs](https://iceberg.apache.org/concepts/catalog/).
+A catalog is a top-level entity in Polaris that may contain other entities
like [namespaces](#namespace) and [tables](#table). These map directly to
[Apache Iceberg catalogs](https://iceberg.apache.org/terms/#catalog).
For information on managing catalogs with the REST API or for more information
on what data can be associated with a catalog, see [the CreateCatalogRequest
OpenAPI](https://github.com/apache/polaris/blob/main/spec/polaris-management-service.yml).
diff --git a/site/content/in-dev/unreleased/getting-started/using-polaris.md
b/site/content/in-dev/unreleased/getting-started/using-polaris.md
index 857b086e3..5ce5c3c0d 100644
--- a/site/content/in-dev/unreleased/getting-started/using-polaris.md
+++ b/site/content/in-dev/unreleased/getting-started/using-polaris.md
@@ -165,7 +165,7 @@ bin/spark-sql \
--conf
spark.sql.catalog.quickstart_catalog=org.apache.iceberg.spark.SparkCatalog \
--conf
spark.sql.catalog.quickstart_catalog.catalog-impl=org.apache.iceberg.rest.RESTCatalog
\
--conf
spark.sql.catalog.quickstart_catalog.uri=http://localhost:8181/api/catalog \
---conf
spark.sql.catalog.quickstart_catalog.credential='${USER_CLIENT_ID}:${USER_CLIENT_SECRET}'
\
+--conf
spark.sql.catalog.quickstart_catalog.credential=${USER_CLIENT_ID}:${USER_CLIENT_SECRET}
\
--conf spark.sql.catalog.quickstart_catalog.scope='PRINCIPAL_ROLE:ALL' \
--conf spark.sql.catalog.quickstart_catalog.token-refresh-enabled=true \
--conf spark.sql.catalog.quickstart_catalog.client.region=us-west-2