RussellSpitzer commented on code in PR #3395: URL: https://github.com/apache/polaris/pull/3395#discussion_r2699490623
########## runtime/admin/src/main/resources/application.properties: ########## @@ -40,7 +40,24 @@ quarkus.rds.sync-client.type=apache # ---- Runtime Configuration ---- # Below are default values for properties that can be changed in runtime. +# Available types: +# - in-memory - InMemoryPolarisMetaStoreManagerFactory +# - in-memory-atomic - InMemoryAtomicOperationMetaStoreManagerFactory +# - relational-jdbc - JdbcMetaStoreManagerFactory +# - nosql - NoSQL persistence backend, define the backend type via 'polaris.persistence.nosql.backend' 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 + +## MongoDB version store specific configuration Review Comment: Same comments request here as on the service pr, These properties should probably be commented out by default since they aren't used -- 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]
