Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vladmihalcea/flexy-pool
FlexyPool adds metrics and failover strategies to a given Connection Pool, allowing it to resize on demand.
https://github.com/vladmihalcea/flexy-pool
connection-pool database dbcp flexy-pool hikaricp histogram java monitoring
Last synced: 26 days ago
JSON representation
FlexyPool adds metrics and failover strategies to a given Connection Pool, allowing it to resize on demand.
- Host: GitHub
- URL: https://github.com/vladmihalcea/flexy-pool
- Owner: vladmihalcea
- License: apache-2.0
- Created: 2014-02-10T07:31:08.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-02-02T21:58:17.000Z (9 months ago)
- Last Synced: 2024-10-01T21:01:45.914Z (about 1 month ago)
- Topics: connection-pool, database, dbcp, flexy-pool, hikaricp, histogram, java, monitoring
- Language: Java
- Homepage:
- Size: 863 KB
- Stars: 1,073
- Watchers: 68
- Forks: 120
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-java - FlexyPool - Brings metrics and failover strategies to the most common connection pooling solutions. (Projects / Database)
- awesome-java-zh - FlexyPool - 为最常见的连接池解决方案带来指标和故障转移策略。 (项目 / 数据库)
- awesome-java - FlexyPool - Brings metrics and failover strategies to the most common connection pooling solutions. (Projects / Database)
README
[![License](https://img.shields.io/github/license/vladmihalcea/flexy-pool.svg)](https://raw.githubusercontent.com/vladmihalcea/flexy-pool/master/LICENSE)
[![Maven Central](https://img.shields.io/maven-central/v/com.vladmihalcea.flexy-pool/flexy-pool-parent.svg)](https://maven-badges.herokuapp.com/maven-central/com.vladmihalcea.flexy-pool/flexy-pool-parent)
[![JavaDoc](http://javadoc.io/badge/com.vladmihalcea.flexy-pool/flexy-pool-core.svg)](http://javadoc.io/doc/com.vladmihalcea.flexy-pool/flexy-pool-core)### Introduction
The FlexyPool library adds metrics and flexible strategies to a given Connection Pool, allowing it to resize on demand.
This is very handy since most connection pools offer a limited set of dynamic configuration strategies.### Features
* multiple environment options
* Stand-alone (Spring, Guice)
* Java EE
* extensive connection pool support
* [Apache DBCP](http://commons.apache.org/proper/commons-dbcp/)
* [Apache DBCP2](http://commons.apache.org/proper/commons-dbcp/)
* [C3P0](http://www.mchange.com/projects/c3p0/)
* [BoneCP](http://jolbox.com/)
* [HikariCP](https://github.com/brettwooldridge/HikariCP)
* [Tomcat CP](http://tomcat.apache.org/tomcat-7.0-doc/jdbc-pool.html)
* [Vibur DBCP](http://www.vibur.org/)
* [Druid](https://github.com/alibaba/druid/)
* [Bitronix Transaction Manager](https://github.com/bitronix/btm)
* [Atomikos TransactionsEssentials](http://www.atomikos.com/Main/TransactionsEssentials)
* statistics support
* concurrent connections histogram
* concurrent connection requests histogram
* data source connection acquiring time histogram
* connection lease time histogram
* maximum pool size histogram
* total connection acquiring time histogram
* overflow pool size histogram
* retries attempts histogram
### Are you struggling with application performance issues?Imagine having a tool that can automatically detect if you are using JPA and Hibernate properly. No more performance issues, no more having to spend countless hours trying to figure out why your application is barely crawling.
Imagine discovering early during the development cycle that you are using suboptimal mappings and entity relationships or that you are missing performance-related settings.
More, with Hypersistence Optimizer, you can detect all such issues during testing and make sure you don't deploy to production a change that will affect data access layer performance.
[Hypersistence Optimizer](https://vladmihalcea.com/hypersistence-optimizer/?utm_source=GitHub&utm_medium=banner&utm_campaign=flexypool) is the tool you've been long waiting for!
#### Training
If you are interested in on-site training, I can offer you my [High-Performance Java Persistence training](https://vladmihalcea.com/trainings/?utm_source=GitHub&utm_medium=banner&utm_campaign=flexypool)
which can be adapted to one, two or three days of sessions. For more details, check out [my website](https://vladmihalcea.com/trainings/?utm_source=GitHub&utm_medium=banner&utm_campaign=flexypool).#### Consulting
If you want me to review your application and provide insight into how you can optimize it to run faster,
then check out my [consulting page](https://vladmihalcea.com/consulting/?utm_source=GitHub&utm_medium=banner&utm_campaign=flexypool).#### High-Performance Java Persistence Video Courses
If you want the fastest way to learn how to speed up a Java database application, then you should definitely enroll in [my High-Performance Java Persistence video courses](https://vladmihalcea.com/courses/?utm_source=GitHub&utm_medium=banner&utm_campaign=flexypool).
#### High-Performance Java Persistence Book
Or, if you prefer reading books, you are going to love my [High-Performance Java Persistence book](https://vladmihalcea.com/books/high-performance-java-persistence?utm_source=GitHub&utm_medium=banner&utm_campaign=flexypool) as well.
### Documentation
1. [Installation Guide](https://github.com/vladmihalcea/flexy-pool/wiki/Installation-Guide)
2. [User Guide](https://github.com/vladmihalcea/flexy-pool/wiki/User-Guide)
3. [Developer Guide](https://github.com/vladmihalcea/flexy-pool/wiki/Developer-Guide)### In the Press
1. [The anatomy of Connection Pooling](http://vladmihalcea.com/the-anatomy-of-connection-pooling)
2. [FlexyPool, reactive connection pooling](http://vladmihalcea.com/flexy-pool-reactive-connection-pooling)
3. [Connection pool sizing with Flexy Pool](http://vladmihalcea.com/connection-pool-sizing-with-flexy-pool)
4. [The simple scalability equation](http://vladmihalcea.com/the-simple-scalability-equation)
5. [How to monitor a Java EE DataSource](http://vladmihalcea.com/how-to-monitor-a-java-ee-datasource/)
6. [How does FlexyPool support the Dropwizard Metrics package renaming](http://vladmihalcea.com/how-does-flexypool-support-the-dropwizard-metrics-package-renaming/)
7. [How does FlexyPool support both Connection proxies and decorators](http://vladmihalcea.com/how-does-flexypool-support-both-connection-proxies-and-decorators/)
8. [Applying Queueing Theory to Dynamic Connection Pool Sizing with FlexyPool](https://blog.jooq.org/2016/11/02/applying-queueing-theory-to-dynamic-connection-pool-sizing-with-flexypool/)
9. [Java Performance Tuning - November 2016](http://javaperformancetuning.com/news/news192.shtml)
10. [Brett Wooldridge Shows What it Takes to Write the Fastest Java Connection Pool](https://blog.jooq.org/2017/02/21/jooq-tuesdays-brett-wooldridge-shows-what-it-takes-to-write-the-fastest-java-connection-pool/)
11. [FlexyPool 2 has been released](https://vladmihalcea.com/flexypool-2-released/)### Who uses FlexyPool
ToroDB Stampede is a replication and mapping technology allowing you to mirror a MongoDB database in a SQL database.
ToroDB Stampede exposes multiple metrics using JMX, some of them are custom metrics and other are metrics offered by third party products like Flexy-pool.
Etuovi is the leading real estate portal in Finland.
New Etuovi.com has used FlexyPool in production since early 2014.
The library has proven to be reliable and allows our infrastructure to handle temporary spikes much better.
We use it everywhere in our stack, ranging from our frontends to the backend services.
-- Antti Koivisto, Software Architect, Etuovi.com
Scentbird is a website that allows its subscribers to try hundreds of designer fragrances at very affordable prices.
We have tried FlexyPool in Scentbird, after one week of intensive testing we decided switch it to FlexyPool and HikariCP in production mode, and everything works very robust and fast, we so happy about that!
Thank you for this library.
-- Andrey Rebrov, CTO, Scentbird
### Requirements
* Java 1.8 or above for all modules but the *flexy-pool-core-java9* which requires at least Java 1.9
* [Dropwizard Metrics 4](https://metrics.dropwizard.io/4.0.0/) or [Micrometer](https://micrometer.io/)
* SLF4J