-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bind PostgresKVStore as default, add HikariCp connection pooling defa…
…ult config
- Loading branch information
Showing
3 changed files
with
88 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,74 @@ | ||
package org.vss.guice; | ||
|
||
import com.google.inject.AbstractModule; | ||
import com.google.inject.Provides; | ||
import com.google.inject.Singleton; | ||
import com.zaxxer.hikari.HikariConfig; | ||
import com.zaxxer.hikari.HikariDataSource; | ||
import java.io.IOException; | ||
import java.io.InputStream; | ||
import java.util.Properties; | ||
import org.jooq.DSLContext; | ||
import org.jooq.SQLDialect; | ||
import org.jooq.impl.DSL; | ||
import org.vss.KVStore; | ||
import org.vss.impl.postgres.PostgresBackendImpl; | ||
|
||
public class BaseModule extends AbstractModule { | ||
|
||
@Override | ||
protected void configure() { | ||
bind(KVStore.class).to(PostgresBackendImpl.class).in(Singleton.class); | ||
} | ||
|
||
@Provides | ||
@Singleton | ||
public DSLContext provideDSLContext() throws ClassNotFoundException { | ||
// Required to load postgres drivers in tomcat | ||
Class.forName("org.postgresql.Driver"); | ||
return DSL.using(HikariCPDataSource.dataSource, SQLDialect.POSTGRES); | ||
} | ||
} | ||
|
||
class HikariCPDataSource { | ||
|
||
private static HikariConfig config = new HikariConfig(); | ||
public static HikariDataSource dataSource; | ||
|
||
static { | ||
try (InputStream input = HikariCPDataSource.class.getClassLoader() | ||
.getResourceAsStream("hikariJdbc.properties")) { | ||
Properties hikariJdbcProperties = new Properties(); | ||
hikariJdbcProperties.load(input); | ||
|
||
config.setJdbcUrl(hikariJdbcProperties.getProperty("jdbc.url")); | ||
config.setUsername(hikariJdbcProperties.getProperty("jdbc.username")); | ||
config.setPassword(hikariJdbcProperties.getProperty("jdbc.password")); | ||
|
||
config.setMaximumPoolSize( | ||
Integer.parseInt(hikariJdbcProperties.getProperty("hikaricp.maxPoolSize"))); | ||
config.setMinimumIdle( | ||
Integer.parseInt(hikariJdbcProperties.getProperty("hikaricp.minimumIdle"))); | ||
config.setConnectionTimeout( | ||
Long.parseLong(hikariJdbcProperties.getProperty("hikaricp.connectionTimeout"))); | ||
config.setIdleTimeout( | ||
Long.parseLong(hikariJdbcProperties.getProperty("hikaricp.idleTimeout"))); | ||
config.setMaxLifetime( | ||
Long.parseLong(hikariJdbcProperties.getProperty("hikaricp.maxLifetime"))); | ||
|
||
config.addDataSourceProperty("cachePrepStmts", | ||
hikariJdbcProperties.getProperty("hikaricp.cachePrepStmts")); | ||
config.addDataSourceProperty("prepStmtCacheSize", | ||
hikariJdbcProperties.getProperty("hikaricp.prepStmtCacheSize")); | ||
config.addDataSourceProperty("prepStmtCacheSqlLimit", | ||
hikariJdbcProperties.getProperty("hikaricp.prepStmtCacheSqlLimit")); | ||
|
||
dataSource = new HikariDataSource(config); | ||
} catch (IOException e) { | ||
throw new RuntimeException("Unable to read hikariJdbcProperties from resources"); | ||
} | ||
} | ||
|
||
private HikariCPDataSource() { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Default properties, these are meant to be changed according to application needs. | ||
|
||
jdbc.url=jdbc:postgresql://localhost:5432/postgres | ||
jdbc.username=postgres | ||
jdbc.password= | ||
|
||
# Idle Timeout | ||
hikaricp.minimumIdle=10 | ||
|
||
# Set connectionTimeout to 30 secs | ||
hikaricp.connectionTimeout=30000 | ||
|
||
# Set idle timeout to 10 minutes | ||
hikaricp.idleTimeout=600000 | ||
|
||
# Set Maximum lifetime of a connection to 30minutes | ||
hikaricp.maxLifetime=1800000 | ||
|
||
# Performance Optimizations | ||
hikaricp.maxPoolSize=50 | ||
hikaricp.cachePrepStmts=true | ||
hikaricp.prepStmtCacheSize=250 | ||
hikaricp.prepStmtCacheSqlLimit=2048 |