This is an automated email from the ASF dual-hosted git repository.
emaynard 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 ce7d2f0 Sync polaris-server.yml (#317)
ce7d2f0 is described below
commit ce7d2f017b97c32ee74b0472989806da692e3428
Author: MonkeyCanCode <[email protected]>
AuthorDate: Wed Sep 25 13:26:49 2024 -0500
Sync polaris-server.yml (#317)
---
helm/polaris/values.yaml | 25 ++++++++++++++-----------
1 file changed, 14 insertions(+), 11 deletions(-)
diff --git a/helm/polaris/values.yaml b/helm/polaris/values.yaml
index cedaf82..243914d 100644
--- a/helm/polaris/values.yaml
+++ b/helm/polaris/values.yaml
@@ -289,17 +289,12 @@ polarisServerConfig:
featureConfiguration:
ENFORCE_PRINCIPAL_CREDENTIAL_ROTATION_REQUIRED_CHECKING: false
- DISABLE_TOKEN_GENERATION_FOR_USER_PRINCIPALS: true
SUPPORTED_CATALOG_STORAGE_TYPES:
- S3
- GCS
- AZURE
- FILE
-
- # Whether we want to enable Snowflake OAuth locally. Setting this to true
requires
- # that you go through the setup outlined in the `README.md` file,
specifically the
- # `OAuth + Snowflake: Local Testing And Then Some` section
callContextResolver:
type: default
@@ -313,8 +308,9 @@ polarisServerConfig:
type: in-memory
# type: eclipse-link # uncomment to use eclipse-link as metastore
# persistence-unit: polaris
- # conf-file: /eclipselink-config/conf.jar!/persistence.xml # Don't change
this value when using custom persistence.xml via '.persistenceConfigSecret'
+ io:
+ factoryType: default
# TODO - avoid duplicating token broker config
oauth2:
@@ -326,7 +322,7 @@ polarisServerConfig:
authenticator:
class:
org.apache.polaris.service.auth.TestInlineBearerTokenPolarisAuthenticator
- # class: io.polaris.service.auth.DefaultPolarisAuthenticator # - uncomment
to support Auth0 JWT tokens
+ # class: org.apache.polaris.service.auth.DefaultPolarisAuthenticator # -
uncomment to support Auth0 JWT tokens
# tokenBroker:
# type: symmetric-key
# secret: polaris
@@ -359,7 +355,7 @@ polarisServerConfig:
# Logger-specific levels.
loggers:
org.apache.iceberg.rest: DEBUG
- io.polaris: DEBUG
+ org.apache.polaris: DEBUG
appenders:
@@ -384,8 +380,15 @@ polarisServerConfig:
# # The file to which statements will be logged.
# currentLogFilename: ./logs/polaris.log
- # # When the log file rolls over, the file will be archived to
snowflake-2012-03-15.log.gz,
- # # snowflake.log will be truncated, and new statements written to it.
+ # # When the log file rolls over, the file will be archived to
polaris-2012-03-15.log.gz,
+ # # polaris.log will be truncated, and new statements written to it.
# archivedLogFilenamePattern: ./logs/polaris-%d.log.gz
# # The maximum number of log files to archive.
- # archivedFileCount: 14
\ No newline at end of file
+ # archivedFileCount: 14
+
+ # Limits the size of request bodies sent to Polaris. -1 means no limit.
+ maxRequestBodyBytes: -1
+
+ # Optional, not specifying a "rateLimiter" section also means no rate limiter
+ rateLimiter:
+ type: no-op