Questions tagged [r2dbc-mssql]

6 questions
5
votes
1 answer

Does R2DBC support the "ApplicationIntent=ReadOnly" parameter for SQL Server connections?

I'm working on a project that utilizes the R2DBC library for reactive database access. However, I'm unsure if R2DBC supports the ApplicationIntent=ReadOnly parameter for SQL Server connections. This parameter is typically used in Microsoft SQL…
2
votes
1 answer

R2DBC MSSQL r2dbc.mssql.client.ReactorNettyClient : Connection has been closed by peer

I have started to work on a Spring WebFlux and R2DBC project. Mainly, my code works fine. But after some elements I am receiving this warning r2dbc.mssql.client.ReactorNettyClient : Connection has been closed by peer after this warning I am…
1
vote
0 answers

Exceptions with parallel queries while running in OpenShift

We're running a Spring Boot application with R2DBC MSSQL connection to an Azure SQL database. We addded a feature that basically does a JOIN in code (please disregard all performance issues here ;-)) and now we experience exceptions if this code is…
1
vote
2 answers

Spring Webflux Wait for all Flux Before Returning Response

I'm working with Spring Webflux + R2DBC to insert some data into a database. Call for data -> Put in database -> Return data. Controller @RestController public class UtilController { private final FooService service; @Autowired public…
nathansizemore
  • 3,028
  • 7
  • 39
  • 63
0
votes
0 answers

How to make this r2dbc url?

Properties: Name: app_port_poc hostname: greshamdevdb01.global.trafigura.com port: 1521 service name: greshamdev01.global.trafigura.com My application in running in dev profile. application-dev.yml: r2dbc: url:…
0
votes
0 answers

Parallel requests within the same transaction

I would like to execute several SQL statements in parallel and within the same transaction in order to get work around a high latency to the database server (SQL Server). From my research, it seems like R2DBC would be my best bet for accomplishing…
glu
  • 1