Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
1 answer
114 views

I am trying to understand how worker thread gets returned for other operations while there is still data-access query operation going on? How does it work in reactive libraries? For example- How does ...
gdenuf's user avatar
  • 888
1 vote
0 answers
86 views

I'm using R2DBC with R2dbcRepository in Spring Boot. I have a table called Dispatches with Jakarta annotations but when I invoke the save() method on my repository the save method returns the same ...
Daniel López's user avatar
1 vote
0 answers
103 views

I'm working on a spring webflux app. I've been connecting to an Azure SQl database using username/password. Now I want to switch to Active Directory Service principal, I now have a client id, a client ...
Brilland Tago's user avatar
2 votes
0 answers
197 views

Since updating our project from Spring Boot 3.1.3 to Spring Boot 3.4.3, we have come across an unusual problem that we have not seen before. We have a findAll() method that gets a Flux (of type Platz)....
Oliver Watkins's user avatar
1 vote
0 answers
409 views

I'm building a Kotlin server-side application using Ktor, JetBrains Exposed ORM, and coroutines. The app interacts with two databases: SQLite (used as a local read-only reference DB) PostgreSQL (used ...
Pawandeep Singh's user avatar
0 votes
1 answer
126 views

Stack: Kotlin 2.1.21, Spring Boot 3.5.3, Spring Data R2DBC 3.5.1 I got the folowwing code enum class TimeTypesEnum { FULL, PARTIAL; companion object { fun from(value: String): TimeTypesEnum = ...
Endo Resu's user avatar
0 votes
1 answer
71 views

We have an API written in Kotlin that connects to an Oracle database with ojdbc(and JPA). High Availability is guaranteed via the Oracle Transparent Application Continuity settings. The API uses ...
Arno Beljaars's user avatar
2 votes
1 answer
68 views

There are some tables like the following in our system: locations, addresses, cities. The locations has a address_id that refers to addresses, and addresses has city_id that refers to cities. ...
Hantsy's user avatar
  • 9,736
0 votes
1 answer
87 views

I am trying a trivial test with a basic Spring Boot 3.4 application and the reactive MS Server driver r2dbc-mssql. repo.save(User.builder().name("Joe Smoe").build()) .doOnNext(...
Berti's user avatar
  • 13
0 votes
0 answers
149 views

I’m working on a Spring Boot WebFlux project and I’m planning to use R2DBC to interact with Microsoft SQL Server. However, I’m having difficulty finding clear information on which version of SQL ...
yangjinyoung's user avatar
0 votes
1 answer
98 views

I have an application in Spring Boot 3.4.x using Spring Data R2DBC. Let's say I have two aggregate roots, Book and Author. I understand that from the reactive point of view, it is not possible to work ...
banterCZ's user avatar
  • 1,902
0 votes
1 answer
72 views

Does graalVm have issues with r2dbc working on postgres in Kotlin? I run the sample demo project from spring boot initializers (Kotlin, sping-boot 3.4.3, java 21), which has r2dbc dependency. When I ...
Serob's user avatar
  • 1,091
0 votes
0 answers
154 views

In Jpa Spring Data when using saveAll for entities with the same ids - saveAll successfully saves all the enitities into the database. For example public interface JpaRepository extends JpaRepository&...
Mikhail Geyer's user avatar
2 votes
1 answer
186 views

It's not documented here https://www.jooq.org/doc/latest/manual/sql-execution/transaction-management/ It only shows you that an uncaught exception will cause a rollback. The problem is that ...
Jakub Bochenski's user avatar
2 votes
0 answers
134 views

I have a query that joins two tables (events and event_properties): SELECT e.*, ep.* FROM event e JOIN event_properties ep ON e.event_properties_id = ep.id WHERE e.status = 0 In my R2DBC ...
Preet Bista's user avatar
0 votes
0 answers
168 views

I have been working on creating a chat_module application with Reactive programming - spring boot 3.4.1, postgres-r2dbc, and mongo reactive. While previously I was using Strings for some columns in ...
check's user avatar
  • 1
1 vote
0 answers
309 views

I am working on a Reactive Java Spring Boot application using R2DBC with MySQL. Below is the connection pool configuration I have set up: spring.r2dbc.pool.enabled=true spring.r2dbc.pool.initial-size=...
Sandip D's user avatar
  • 121
1 vote
1 answer
153 views

Im having trouble running JOOQ routines in a reactive way. My Spring project is set up with R2DBC, and the DSLContext bean uses its connection factory. I have a database procedure that I want to ...
Sebastian's user avatar
2 votes
1 answer
225 views

I would like to build a native image for an app which using R2DBC to access PostgreSQL. Not sure why but with the following docker compose file the SPRING_R2DBC_URL is not recognised, I receive: ******...
Zoltan Altfatter's user avatar
1 vote
1 answer
223 views

We have recently started upgrading spring webflux version 2.7X to 3.3.2. After this upgrade, when we hit API with Postman it goes to controller layer and if service layer method is annotated with @...
Gopal Aggarwal's user avatar
0 votes
1 answer
445 views

I am creating a simple spring boot project that connects to the r2dbc postgres My application.yml looks like this : r2dbc: url: r2dbc:postgresql://localhost:5432/postgres username: postgres ...
MoonPie's user avatar
  • 73
1 vote
1 answer
204 views

My spring service is written in reactive way and because of that we are using r2dbc to establish database connection. Now I want to enable IAM password less authentication with AWS RDS. @Bean public ...
SethuNagaKarthik's user avatar
1 vote
0 answers
370 views

I have an issue when trying to concurrently select rows in postgesql database using R2DBC driver. I have method that should create entity with order number based on total quantity of these entites in ...
Михаил's user avatar
1 vote
3 answers
241 views

I am evaluating the Spring WebFlux + R2DBC stack for our next project. Consider this textbook code for REST response streaming: @GetMapping("items") public Flux<Item> findAll() { ...
Sokolof's user avatar
  • 2,301
0 votes
0 answers
56 views

We have a scenario in the application where user uploads a file from UI. The file along with some metadata is saved to DB. Currently, we are running a scheduler which will poll the DB every 15 secs to ...
Rahul's user avatar
  • 727
0 votes
1 answer
184 views

I want to perform a failover setup for r2dbc mariadb. We are using spring boot 3. I have read in some documents that from spring boot 3 it supports these behaviours. I am expecting something like ...
Ramees Puthiya Purayil's user avatar
0 votes
1 answer
66 views

I am trying to create a Reactive API with simple CRUD operations that also sends messages out to Kafka. But for some reason, when using Mono and R2DBC save operations, it seems to trigger the save ...
Josiah Foo's user avatar
0 votes
0 answers
436 views

I have been having trouble connecting to R2DBC postgres schema. Just like we have a jdbc connection string which we use in Dbeaver or PgAdmin to visually see the tables and run query what is the ...
MoonPie's user avatar
  • 73
0 votes
1 answer
96 views

I am new to R2DBC and I have a fairly standard parent child relationship Person / Address and when attempting to save a person object with an address both the person and the address get saved but the ...
moff2's user avatar
  • 3
0 votes
1 answer
115 views

I'm new in the R2DBC environment and i'm afraid using it along Spring Batch to findAll the rows in a table with more than 8 million records can duplicate some rows in the process since R2DBC don't use ...
Renba Urq's user avatar
2 votes
0 answers
404 views

I keep getting leakbuffer error just by invoking my rest api, sometimes connection closed exception. I am not using any bytebuff exclusively in my code. I have rest api, on calling it should fetch ...
ElephantLove's user avatar
0 votes
1 answer
436 views

I have a project in spring boot 2.7 with java 11. Currently I am using JPA in spring boot to interact with DB. Since I use reactive library, I am thinking to upgrade to reactive drivers i.e. r2dbc. ...
Punith Kumar P R's user avatar
0 votes
0 answers
55 views

In reactive spring boot service, use case is like we are trying to receive message from SQS and process it but we are observing that the db connections are getting closed once queue is empty and ...
Satyam Pandey's user avatar
0 votes
1 answer
332 views

I'm encountering an error while saving a Department object with Spring Data R2DBC. My Department model has an employees property that can hold a list of Employee objects. However, when I try to create ...
Thilak Sparrow's user avatar
0 votes
1 answer
211 views

Following is the function written in a service. public Mono<BrandRest> createBrand(CreateBrandRequest request) { record BrandCategoryRest(Brand brandRest, List<CategoryRest> ...
Naveen Kumar's user avatar
0 votes
1 answer
289 views

I have an entity @Getter @Setter @ToString @AllArgsConstructor @NoArgsConstructor @Table(name = "employees") public class EmployeeEntity implements Persistable<String> { @Id @...
AlvStade's user avatar
1 vote
0 answers
205 views

I'm working with a Spring Webflux application and using R2DBC to connect to a SQL Server database. I've encountered an issue when trying to perform a query that includes a reserved word as a column ...
Laura Páramo's user avatar
-1 votes
1 answer
65 views

Lately I have encountered a really strange memory leak. I would appreciate if someone helps me resolve it. public Mono<Boolean> insertOrders(List<ClientOrder> orders) { if (orders....
Alexander's user avatar
  • 138
1 vote
1 answer
70 views

Currently I am using the latest jOOQ 3.19.5(R2dbc/Postgres) in my project. I encountered an issue like this. Given master and details` table. |master | id, type |details| id, master_id, other_id ...
Hantsy's user avatar
  • 9,736
0 votes
2 answers
703 views

There are 5,000,000 entities in my database. I am connecting to the database via a reactive driver (r2dbc). Next, I want to split it on 100,000 entities, split them into bundles of 1,000 entities and ...
Влад Савостиков's user avatar
1 vote
2 answers
366 views

I have spring boot/r2dbc application My controller: @PostMapping("/add") public ResponseEntity<String> create(@RequestBody NotificationEntity e) { notificationDAO.save(e).subscribe(...
mtmx's user avatar
  • 987
0 votes
1 answer
521 views

I have the following query in CoroutineCrudRepository, the database is postgresql of 14.8 version running in docker @Query("select * from test_table where status = 'NEW' order by creation_date ...
dippy tippy's user avatar
0 votes
1 answer
808 views

Fairly new to Java, Spring and R2DBC. I am using spring and R2DBC to create to database clients using the properties from my config. I have a ReactiveCrudRepository that I want to use to make queries ...
alt-ctrl-dev's user avatar
0 votes
0 answers
96 views

r2dbc.core.databaseclient.sql replace query that have column name 'key' to '[*]key' and this causes error in the query execution. Mono<Map<String, Object>> first = db.sql("SELECT key ...
smshahiran's user avatar
0 votes
1 answer
204 views

I can't add the List<...> parameter, or rather ArrayList ($2). If I just put List<...> listId, I get the error: Cannot encode parameter of type java.util.ArrayList ([192, 193, 194, .... If ...
Арчи's user avatar
0 votes
0 answers
190 views

I’m working on a reactive Java spring web app using webflux. I’m trying to convert rsql queries received as a param within the endpoint URL. I managed to get the details of this queries converted to ...
Thomas Dons's user avatar
1 vote
1 answer
589 views

Transaction rollback does not seem to work when using r2dbc and jOOQ DemoRepository suspend fun insert(id: String) { if (id == "b") { throw RuntimeException("error while ...
memoryfoam's user avatar
0 votes
1 answer
107 views

I am trying to understand the difference between R2DBC EntityCallbacks and R2DBC Mapping. I am trying to use it in a Multitenant application, where I would like to map the TenantId using a web filter ...
George Jose's user avatar
0 votes
1 answer
516 views

The Quarkus Oracle reactive extension is in tech preview for a long time for the RedHat supported build, so I'm looking for alternatives for prod use. I'm using Mutiny and reactive rest and rest ...
swerts's user avatar
  • 41
0 votes
2 answers
2k views

I really don't understand what am i doing wrong because insert of 30000 rows takes about 20 minutes. I also tried to insert 30000 with datagrip and it just takes like 1 second. I am also thinking of ...
Alexander's user avatar
  • 138

1
2 3 4 5
9