chasers
Supavisor - a scalable Postgres connection pooler written in Elixir
We’ve been working on an open source multi-tenant Postgres connection pooler here at Supabase for the last few months.
It’s been rolled out to all projects and are exposing the new connection strings to customers gradually.
@josevalim and Dashbit have been helping with PRs. They’ve been amazing as you would expect.
v0.9.0 is released
The big ones here to get us to prod were SSL support and auth query support like PgBouncer.
I’ll try and update here also as we push features if anyone is interested.
1M Postgres Connections
We successfully reached one million Postgres connections!!
Check out the blog post:
Thanks everyone. Elixir is awesome!
![]()
Trending in Announcing
You may know https://ui.shadcn.com/, a UI component library for React. I really love it’s design style and components. I’ve built some co...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
The Chelekom project is a library of Phoenix and LiveView components generated via Mix tasks to fit developer needs seamlessly.
One of i...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Other Trending Topics
ActiveMemory 0.8.0 is on Hex. It’s an in-memory store built on ETS and Mnesia:
typed records you query by **any attribute**, not just a ...
New
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New
There has been a thread to discuss the Stack Overflow Developer Survey on this forum every year since 2018, so here’s yet another one for...
New
We want to introduce a new native datatype to Erlang: native records. Although replacing all tuple records with native records is not our...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #performance










First 2 of 2 Posts
chasers
Supavisor v1.0.0 is released!
Notable changes include:
nativepool_mode to proxy direct connections to PostgresFull changelog: Release v1.0.0 · supabase/supavisor · GitHub
Blog post: Supavisor 1.0: a scalable connection pooler for Postgres
chasers
Supavisor v1.1.2
Notable
allow_listfield on thetenantto support network restrictionsclient_heartbeat_intervalon thetenantto detect zombie client connectionsThe
client_heartbeat_intervalhelps us detect client connections from behind a load balancer which are dead but did not close the TCP connection correctly. This interval defaults to one minute but is configurable pertenant.The
allow_listfield on thetenanttakes a list of CIDR ranges and validates incoming connection addresses against this list. The incoming client address must be in one of these ranges to be accepted.A nice error is returned on a bad incoming address:
Also, started a Supavisor FAQ!
Full changelog: Release v1.1.2 · supabase/supavisor · GitHub