Ruslan Ibrahimau (Ibragimov)
Ruslan Ibrahimau (Ibragimov)
Also we should make sure that avatar looks good with light and dark themes, and avatars recognizable even with small blur on top of them. 
Do you think it's possible to keep integration with both versions of Prometheus, so users can decide which one to use for a few years while transition happens?
@Masood312 did you try implementing `com.zaxxer.hikari.metrics.IMetricsTracker`? It seems to get called when connection acquired and released
@rahulbhawsar why this can't be done in `HikariCPConnectionProvider`?
@rahulbhawsar I'm not an expert in hibernate, have to use it many years ago, but looking at docs it seems you need to provide own implementation of `ConnectionProvider` which would...
@baliyanshilpa04 why do you think connection should be closed? Please provide a configuration and test that reproduces described behavior
@jeans11 this is an old MySQL issue, that not related to HikariCP directly, probably you updated something else while migrating. There are plenty of answers on the web: https://stackoverflow.com/questions/6865538/solving-a-communications-link-failure-with-jdbc-and-mysql
@Caesar2816 you need to setup socket timeout property on jdbc driver properties, i.e: ``` spring.datasource.url=jdbc:mysql://localhost:3306/dbname?socketTimeout=30000 spring.datasource.url=jdbc:postgresql://localhost:5432/dbname?socketTimeout=30000 spring.datasource.url=jdbc:sqlserver://localhost:1433;databaseName=dbname;socketTimeout=30 ``` ## Postgres https://jdbc.postgresql.org/documentation/use/ > socketTimeout (int) Default 0 > The timeout value...
> mybatis.configuration.default-statement-timeout=30 > spring.jdbc.template.query-timeout=30 So what do you use, mybatis or jdbc template? Both? > ORACLE As far as I know, there is no equivalent of socketTimeout in Oracle. You...
https://stackoverflow.com/questions/1388749/oracle-connection-query-timeout