Git Product home page Git Product logo

Comments (4)

brettwooldridge avatar brettwooldridge commented on May 20, 2024

That is correct.

Sent from my iPhone

On Feb 4, 2014, at 8:22 AM, mbucc [email protected] wrote:

Hi,
If my HikariCP config has the wrong database credentials, I'd like my server to fail fast.

Seems like the only way is to wait for the acquireRetries * acquireRetryDelay milliseconds, then try to call getConnection(), catch the SQLException and then exit.

Do I have that right?

Thanks,
Mark


Reply to this email directly or view it on GitHub.

from hikaricp.

brettwooldridge avatar brettwooldridge commented on May 20, 2024

I'll investigate a way to fail the pool fast. Likely it will be via a RuntimeException thrown from the constructor ... but will require that the minimum pool size is non-zero.

from hikaricp.

zimmi avatar zimmi commented on May 20, 2024

If you instantiate your DataSource programmatically, you could use the raw driver DataSource to do the getConnection() check. e.g.:

PGSimpleDataSource dataSource = new PGSimpleDataSource();
dataSource.setUser("username");
dataSource.setPassword("password");

// check raw data source, e.g. dataSource.getConnection();

HikariConfig config = new HikariConfig();
config.setDataSource(dataSource);

HikariDataSource connectionPool = new HikariDataSource(config);

But I guess that won't help if you do this the declarative way.

from hikaricp.

brettwooldridge avatar brettwooldridge commented on May 20, 2024

The recently released HikariCP 1.2.9 has a new property initializationFailFast that is not yet documented. If you set this to true, there will be a RuntimeException thrown when a HikariDataSource is constructed, providing that the minimumPoolSize is > 0.

from hikaricp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.