-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow (and test) offline startup + on-demand DB version checks #2129
Comments
DavideD
added a commit
to DavideD/hibernate-orm
that referenced
this issue
Mar 18, 2025
This is to allow Hibernate Reactive to reuse the logic for determining the database version. Related to hibernate/hibernate-reactive#2129
DavideD
added a commit
to DavideD/hibernate-orm
that referenced
this issue
Mar 18, 2025
This way Hibernate Reactive can reuse the logic for determining the database version, or the dialect resolution info. Related to hibernate/hibernate-reactive#2129
DavideD
added a commit
to DavideD/hibernate-orm
that referenced
this issue
Mar 18, 2025
This way Hibernate Reactive can reuse the logic for determining the database version, or the dialect resolution info. Related to hibernate/hibernate-reactive#2129
mbladel
pushed a commit
to hibernate/hibernate-orm
that referenced
this issue
Mar 18, 2025
This way Hibernate Reactive can reuse the logic for determining the database version, or the dialect resolution info. Related to hibernate/hibernate-reactive#2129
DavideD
added a commit
to DavideD/hibernate-orm
that referenced
this issue
Mar 20, 2025
…tadata protected For Hibernate Reactive, see issue hibernate/hibernate-reactive#2129
DavideD
added a commit
to DavideD/hibernate-orm
that referenced
this issue
Mar 21, 2025
…tadata protected For Hibernate Reactive, see issue hibernate/hibernate-reactive#2129
DavideD
added a commit
to DavideD/hibernate-reactive
that referenced
this issue
Mar 21, 2025
We use it to test the dialect selection at start up
DavideD
added a commit
to DavideD/hibernate-reactive
that referenced
this issue
Mar 21, 2025
This way we can reuse the method even if the tests don't extend BaseReactiveTest
DavideD
added a commit
to DavideD/hibernate-reactive
that referenced
this issue
Mar 21, 2025
I'm not sure what's the purpose of this test, and why it was working before. But, it doesn't work anymore with the fix for hibernate#2129 because some properties are missing and we are not setting the right credentials. I think it was one of first tests we inroduced when we have created the project.
DavideD
added a commit
to DavideD/hibernate-reactive
that referenced
this issue
Mar 21, 2025
This feature is useful in particular for applications that start up before the DB becomes accessible. It can also be useful for Quarkus, where (part of) startup happens at build time. This achieved by setting the property: ``` hibernate.boot.allow_jdbc_metadata_access = false ```
DavideD
added a commit
to DavideD/hibernate-reactive
that referenced
this issue
Mar 21, 2025
Hibernate Reactive should be able to start even if there's no database when `hibernate.boot.allow_jdbc_metadata_access = false`.
DavideD
added a commit
to DavideD/hibernate-reactive
that referenced
this issue
Mar 21, 2025
Hibernate Reactive should be able to start even if there's no database when `hibernate.boot.allow_jdbc_metadata_access = false`.
DavideD
added a commit
to DavideD/hibernate-orm
that referenced
this issue
Mar 26, 2025
…tadata protected For Hibernate Reactive, see issue hibernate/hibernate-reactive#2129
DavideD
added a commit
to DavideD/hibernate-orm
that referenced
this issue
Apr 3, 2025
…tadata protected For Hibernate Reactive, see issue hibernate/hibernate-reactive#2129
DavideD
added a commit
to DavideD/hibernate-orm
that referenced
this issue
Apr 4, 2025
This way Hibernate Reactive can reuse the logic for determining the database version, or the dialect resolution info. Related to hibernate/hibernate-reactive#2129
DavideD
added a commit
to DavideD/hibernate-orm
that referenced
this issue
Apr 4, 2025
…tadata protected For Hibernate Reactive, see issue hibernate/hibernate-reactive#2129
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hibernate ORM allows starting up without access to the DB ("offline") by specifying
hibernate.boot.allow_jdbc_metadata_access = false
. When using this setting, Hibernate ORM will not try to reach out to the DB on startup to determine the dialect/version. Instead, it will assume a dialect configured explicitly (e.g. inferred fromjakarta.persistence.database-product-name
), and either a default version (minimum supported one) or an explicitly configured one (throughjakarta.persistence.database-product-version
).This feature is useful in particular for applications that start up before the DB becomes accessible. It can also be useful for Quarkus, where (part of) startup happens at build time.
When this feature is used, it can be useful to check the DB version matches the one that was explicitly configured. Quarkus executes such checks automatically.
However, in some cases, that DB version is not very easy to get, and might require vendor-specific "hacks". That's why Hibernate ORM 7+ exposes
Dialect#determineDatabaseVersion
: it allows anyone to use the dialect of an already-started-up application to retrieve the version of the DB it's currently connected to, and then do any check they want.We should check that these features work well in Hibernate Reactive. Copying
org.hibernate.orm.test.boot.database.metadata.MetadataAccessTests
into the Reactive test suite might be enough for that.Related: quarkusio/quarkus#43764
The text was updated successfully, but these errors were encountered: