supabase / pg_net

A PostgreSQL extension that enables asynchronous (non-blocking) HTTP/HTTPS requests with SQL
https://supabase.github.io/pg_net
Apache License 2.0
213 stars 16 forks source link

feat: allow reconfiguring pg_net w/o a db restart #117

Closed steve-chavez closed 9 months ago

steve-chavez commented 9 months ago

Otherwise changing a pg_net config requires a restart of the whole database cluster.

Now users can do:

alter system set pg_net.ttl to '1 hour';
alter system set pg_net.batch_size to 500;

select net.worker_restart();