sakshamratra0106 commented on code in PR #3066: URL: https://github.com/apache/polaris/pull/3066#discussion_r2544173489
########## site/content/in-dev/unreleased/configuring-polaris-for-production.md: ########## @@ -210,27 +204,39 @@ curl -X POST http://localhost:8181/api/catalog/v1/oauth/tokens \ ``` ### Disable FILE Storage Type -By default, Polaris allows using the local file system (`FILE`) for catalog storage. This is fine for testing, -but **not recommended for production**. To disable it, set the supported storage types like this: + +By default, Polaris allows using the local file system (`FILE`) for catalog storage. This is fine for testing, but **not +recommended for production**. To disable it, set the supported storage types like this: + ```hocon polaris.features."SUPPORTED_CATALOG_STORAGE_TYPES" = [ "S3", "Azure" ] ``` + Leave out `FILE` to prevent its use. Only include the storage types your setup needs. ### Polaris Server Header -Polaris can emit an informational `Server` HTTP response header using Quarkus' built-in header -configuration. Add the following property to one of the supported configuration sources (for example, -`application.properties`) to enable it with the Polaris version string: +Polaris can emit an informational `Server` HTTP response header using Quarkus' built-in header configuration. Add the +following property to one of the supported configuration sources (for example, `application.properties`) to enable it +with the Polaris version string: ```properties quarkus.http.header."Server".value=Polaris/${quarkus.application.version} ``` -If you prefer to scope the header to specific environments, only set the property for the desired -profile (for example, `%prod`). +If you prefer to scope the header to specific environments, only set the property for the desired profile (for example, +`%prod`). + +### Cloud Storage Specific Configuration + +GCS + Polaris: When using token vending for fine-grained access in Google Cloud Storage (GCS) with Apache Iceberg on Review Comment: make sense! Removing! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
