hibernate-reactive
hibernate-reactive copied to clipboard
A reactive API for Hibernate ORM, supporting non-blocking database drivers and a reactive style of interaction with the database.
Based on [this question on StackOverflow](https://stackoverflow.com/questions/76619519/sql-inspection-injection-in-hibernate-reactive), we don't support the [StatementInspector](https://github.com/hibernate/hibernate-orm/blob/main/hibernate-core/src/main/java/org/hibernate/resource/jdbc/spi/StatementInspector.java) API. It seems something useful to have, but I haven't looked into it yet. We should: 1. Check that...
In [CustomStoredProcedureSqlTest](https://github.com/hibernate/hibernate-reactive/blob/main/hibernate-reactive-core/src/test/java/org/hibernate/reactive/CustomStoredProcedureSqlTest.java), we use custom queries with stored procedures to test the support for the annotation `@SqlInsert`, `@SqlUpdate`, and `@SqlDelete`. It works fine, but we are not actually checking that...
[Snapshots should be here](https://quarkusio.zulipchat.com/#narrow/stream/187038-dev/topic/Vert.2Ex.204.2E4.2E3/near/365527412): > you can try with: > ``` > > sonatype-s01-snapshots > https://s01.oss.sonatype.org/content/repositories/snapshots > > true > > > ``` > > Or > > ``` >...
Postgres Vert.x SQL client [doesn't seem to support the OID type](https://vertx.io/docs/vertx-pg-client/java/#_postgresql_type_mapping). See https://github.com/eclipse-vertx/vertx-sql-client/issues/1328 Marking this as regression, because it used to work before the Upgrade to ORM 6.2
Vert.x Db2 client currently [doesn't support type CLOB](https://vertx.io/docs/vertx-db2-client/java/#_db2_type_mapping): ``` Some types that are currently NOT supported are: XML BLOB CLOB DBCLOB GRAPHIC / VARGRAPHIC ``` We need to wait for...
See https://hibernate.atlassian.net/jira/software/c/projects/HHH/issues/HHH-16377
Follows [quarkus#33776](https://github.com/quarkusio/quarkus/issues/33776) [Extracting the info needed for schema generation is a blocking operation](https://github.com/hibernate/hibernate-reactive/blob/f17e8a1e80c70329baaf3d98fc7f229bf68b02e7/hibernate-reactive-core/src/main/java/org/hibernate/reactive/provider/service/ReactiveImprovedExtractionContextImpl.java#L113) This seems to work fine when the max pool size is bigger than 1, but it will...
Hi we are currently starting with the migration to Quarkus 3, We face some issues with our existing database structure and Hibernate 6. It seems to be the combination of...
As a follow up to the ideas discussed on #1610 : the current design was introduced in #1608 and seems to behave correctly under load, but there are two concerns:...
This is a version that pay a single allocation cost per each `blockSize` to save any synchronized to happen. It can be made gc-free by playing some bit tricks packing...