-
Notifications
You must be signed in to change notification settings - Fork 219
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for automatic pool (similar to pgbouncer) #362
Comments
Hi there, I've never used that feature of PgBouncer. Could you give me an example of how it works? Thanks! |
Hi In pgbouncer.ini:
When a client connects to the bouncer and asks for the database demo, it will spawn a new pool, named demo, for the database demo on my.server.org:5432. Regards |
+1 for this feature. I specifically need users wildcards. |
+1 for this feature, without it there ends up being a lot of boilerplate and manual upkeep in an environment with a large number of databases and users. |
Hi |
Hallo! +1 from me too please, this would be really useful |
+1 much needed for use-case |
I implemented #855 to have PGBouncer pool proxy implementation. Try this PR #855 or you can use my Repo @rvsoni/pgcat with fix, |
Is your feature request related to a problem? Please describe.
For some applications, it may not be possible to list all databases the application can connect to (for instance when each customer has his own database). For these, it's better to use a feature similar to the automatic pool in pgbouncer, cf. https://www.pgbouncer.org/config.html section databases.
Describe the solution you'd like
Be able to describe an automatic pool generator in the configuration.
Describe alternatives you've considered
None known
Additional context
None
The text was updated successfully, but these errors were encountered: