You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: site/content/in-dev/unreleased/metastores.md
+9-11Lines changed: 9 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,25 +33,23 @@ In order to add other JDBC drivers, you have to build Polaris using the `eclipse
33
33
## Polaris Server Configuration
34
34
35
35
### Relational JDBC
36
-
Configure the `polaris.persistence` section in your Polaris configuration file
37
-
(`application.properties`) as follows:
36
+
This implementation leverages Quarkus for datasource management and supports configuration through
37
+
environment variables or JVM -D flags at startup. For more information, refer to the [Quarkus configuration reference](https://quarkus.io/guides/config-reference#env-file).
The relational JDBC metastore currently relies on a Quarkus-managed datasource and supports only Postgres and H2—similar to EclipseLink. However, we only provide documentation for using it with Postgres. In future releases of Apache Polaris, we plan to extend support to additional RDBMS datasources such as MySQL and MariaDB. These are not currently supported due to differences in schema requirements and error handling conventions.
49
+
The Relational JDBC metastore currently relies on a Quarkus-managed datasource and supports only PostgreSQL and H2 databases. This limitation is similar to that of EclipseLink, primarily due to underlying schema differences. At this time, official documentation is provided exclusively for usage with PostgreSQL.
50
50
Please refer to the documentation here:
51
51
[Configure data sources in Quarkus](https://quarkus.io/guides/datasource)
52
52
53
-
Note: Polaris will always create schema 'polaris_schema' during bootstrap under the configured database.
54
-
55
53
### EclipseLink
56
54
> [!IMPORTANT] Eclipse link is deprecated, its recommend to use Relational JDBC as persistence instead.
0 commit comments