eric-maynard commented on code in PR #1515:
URL: https://github.com/apache/polaris/pull/1515#discussion_r2072259939


##########
site/content/in-dev/unreleased/metastores.md:
##########
@@ -32,6 +32,28 @@ In order to add other JDBC drivers, you have to build 
Polaris using the `eclipse
 
 ## Polaris Server Configuration
 
+#### Relational JDBC
+Configure the `polaris.persistence` section in your Polaris configuration file
+(`application.properties`) as follows:
+
+```
+polaris.persistence.type=relational-jdbc
+
+quarkus.datasource.db-kind=postgresql
+quarkus.datasource.username=<your username>
+quarkus.datasource.password=<your password>
+
+quarkus.datasource.jdbc.url=jdbc:postgresql://localhost:5432/<database_name>
+```
+
+Relational JDBC uses Quarkus managed datasource and only supports Postgres and 
H2 as of now.
+please ref here: [How to configure jdbc Datasource via 
Quarkus](https://quarkus.io/guides/datasource)
+
+Note: Polaris will create schema 'polaris_schema' always under the configured 
database.
+
+### Eclipse link

Review Comment:
   ```suggestion
   ### EclipseLink
   ```



-- 
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: issues-unsubscr...@polaris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to