RussellSpitzer commented on code in PR #3396: URL: https://github.com/apache/polaris/pull/3396#discussion_r2683540012
########## runtime/defaults/src/main/resources/application.properties: ########## @@ -128,16 +131,27 @@ polaris.features."SUPPORTED_CATALOG_CONNECTION_TYPES"=["ICEBERG_REST"] # realm overrides # polaris.features.realm-overrides."my-realm"."SKIP_CREDENTIAL_SUBSCOPING_INDIRECTION"=true -# polaris.persistence.type=in-memory-atomic +# Available types: +# - in-memory - InMemoryPolarisMetaStoreManagerFactory +# - in-memory-atomic - InMemoryAtomicOperationMetaStoreManagerFactory +# - nosql (beta) - NoSQL persistence backend, define the backend type via 'polaris.persistence.nosql.backend' +# - relational-jdbc polaris.persistence.type=in-memory -# polaris.persistence.type=relational-jdbc +# Database backend for 'nosql' persistence-type +# Available backends: +# - InMemory - for testing purposes +# - MongoDb - configure the via the Quarkus extension +polaris.persistence.nosql.backend=InMemory Review Comment: Same comment here, shouldn't this be commented out since it's not in use? -- 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]
