iskhakovt
iskhakovt

Reputation: 458

Is it possible to run Quarkus in native mode with reactive SQL client connecting to Google Cloud SQL?

Is it possible to run Quarkus in native mode with reactive SQL client connecting to Google Cloud SQL? This guide says that would require Netty native transport which according to this issue doesn't work in native mode. Is there some other option maybe?

Upvotes: 1

Views: 181

Answers (1)

kurtisvg
kurtisvg

Reputation: 3565

I think you are confusing "native" mode between "Native Netty transports" and "Graalvm Native Image" which are two different concepts.

The Cloud SQL Java connector also has a reactive socketfactory for r2dbc-postgres: https://github.com/GoogleCloudPlatform/cloud-sql-jdbc-socket-factory/blob/main/docs/r2dbc-postgres.md

Upvotes: 1

Related Questions