A PostgreSQL extension that enables asynchronous (non-blocking) HTTP/HTTPS requests with SQL.
Requires libcurl >= 7.83. Compatible with PostgreSQL > = 12.
- Introduction
- Technical Explanation
- Installation
- Configuration
- Requests API
- Monitoring requests
- GET requests
- POST requests
- DELETE requests
- Practical Examples
- Syncing data with an external data source using triggers
- Calling a serverless function every minute with PG_CRON
- Retrying failed requests
- Contributing
The PG_NET extension enables PostgreSQL to make asynchronous HTTP/HTTPS requests in SQL. It eliminates the need for servers to continuously poll for database changes and instead allows the database to proactively notify external resources about significant events. It seamlessly integrates with triggers, cron jobs (e.g., PG_CRON), and procedures, unlocking numerous possibilities. Notably, PG_NET powers Supabase's Webhook functionality, highlighting its robustness and reliability.
Common use cases for the PG_NET extension include:
- Calling external APIs
- Syncing data with outside resources
- Calling a serverless function when an event, such as an insert, occurred
However, it is important to note that the extension has a few limitations. Currently, it only supports three types of asynchronous requests:
- async http GET requests
- async http POST requests with a JSON payload
- async http DELETE requests
Ultimately, though, PG_NET offers developers more flexibility in how they monitor and connect their database with external resources.
The extension introduces a new net schema, which contains two unlogged tables, a type of table in PostgreSQL that offers performance improvements at the expense of durability. You can read more about unlogged tables here. The two tables are:
http_request_queue: This table serves as a queue for requests waiting to be executed. Upon successful execution of a request, the corresponding data is removed from the queue.The SQL statement to create this table is:
CREATE UNLOGGED TABLE net.http_request_queue ( id bigintNOT NULL DEFAULT nextval('net.http_request_queue_id_seq'::regclass), method textNOT NULL, url textNOT NULL, headers jsonb, body bytea, timeout_milliseconds integerNOT NULL )
_http_response: This table holds the responses of each executed request.The SQL statement to create this table is:
CREATE UNLOGGED TABLE net._http_response ( id bigintNULL, status_code integerNULL, content_type textNULL, headers jsonb NULL, content textNULL, timed_out booleanNULL, error_msg textNULL, created timestamp with time zoneNOT NULL DEFAULT now() )
When any of the three request functions (http_get, http_post, http_delete) are invoked, they create an entry in the net.http_request_queue table.
Once a response is received, it gets stored in the _http_response table. By monitoring this table, you can keep track of response statuses and messages.
Important
Inserting directly into the net.http_request_queue won't cause the worker to process requests, you must use the request functions.
We do it this way to avoid polling the net.http_request_queue table, which would pollute pg_stat_statements and cause unnecesssary activity from the worker.
The extension employs C's libcurl library within a PostgreSQL background worker to manage HTTP requests.
This background worker sleeps until it receives a signal from the request functions, which awakes it and prompts it to read the net.http_request_queue table and execute the requests on it.
Clone this repo and run
make && make installTo make the extension available to the database add on postgresql.conf:
shared_preload_libraries = 'pg_net'
By default, pg_net is available on the postgres database. To use pg_net on a different database, you can add the following on postgresql.conf:
pg_net.database_name = '<dbname>';
Using pg_net on multiple databases in a cluster is not yet supported.
To activate the extension in PostgreSQL, run the create extension command. The extension creates its own schema named net to avoid naming conflicts.
create extension pg_net;
The extension creates the following configurable variables:
- pg_net.batch_size(default: 200): An integer that limits the max number of rows that the extension will process from
net.http_request_queueduring each read - pg_net.ttl(default: 6 hours): An interval that defines the max time a row in the
net.http_responsewill live before being deleted. Note that this won't happen exactly after the TTL has passed. The worker will perform this deletion while its processing requests. - pg_net.database_name(default: 'postgres'): A string that defines which database the extension is applied to
- pg_net.username(default: NULL): A string that defines which user will the background worker be connected with. If not set (
NULL), it will assume the bootstrap user.
All these variables can be viewed with the following commands:
show pg_net.batch_size;
show pg_net.ttl;
show pg_net.database_name;
show pg_net.username;You can change these by editing the postgresql.conf file (find it with SHOW config_file;) or with ALTER SYSTEM:
alter system set pg_net.ttl to '1 hour'
alter system set pg_net.batch_size to 500;
Then, you can reload the settings with:
select pg_reload_conf();
If you change the pg_net.database_name and pg_net.username configs, you'll need to restart the worker for them to apply.
We provide a function that reloads the config with pg_reload_conf and restarts the worker in one go:
select net.worker_restart();
Note that doing ALTER SYSTEM requires SUPERUSER but on PostgreSQL >= 15, you can do:
grant alter system on parameter pg_net.ttl to <role>;
grant alter system on parameter pg_net.batch_size to <role>;
To allow regular users to update pg_net settings.
net.http_get(
-- url for the request
url text,
-- key/value pairs to be url encoded and appended to the `url`
params jsonb default '{}'::jsonb,
-- key/values to be included in request headers
headers jsonb default '{}'::jsonb,
-- the maximum number of milliseconds the request may take before being cancelled
timeout_milliseconds int default 1000
)
-- request_id reference
returns bigint
strict
volatile
parallel safe
language plpgsqlThe following examples use the Postman Echo API.
SELECTnet.http_get (
'https://postman-echo.com/get?foo1=bar1&foo2=bar2'
) AS request_id;NOTE: You can view the response with the following query:
SELECT*FROMnet._http_response;
SELECTnet.http_get(
'https://postman-echo.com/get',
-- Equivalent to calling https://postman-echo.com/get?foo1=bar1&foo2=bar2&encoded=%21-- The "!" is url-encoded as %21'{"foo1": "bar1", "foo2": "bar2", "encoded": "!"}'::JSONB
) AS request_id;SELECTnet.http_get(
'https://postman-echo.com/get?foo1=bar1&foo2=bar2',
headers :='{"API-KEY-HEADER": "<API KEY>"}'::JSONB
) AS request_id;net.http_post(
-- url for the request
url text,
-- body of the POST request
body jsonb default '{}'::jsonb,
-- key/value pairs to be url encoded and appended to the `url`
params jsonb default '{}'::jsonb,
-- key/values to be included in request headers
headers jsonb default '{"Content-Type": "application/json"}'::jsonb,
-- the maximum number of milliseconds the request may take before being cancelled
timeout_milliseconds int default 1000
)
-- request_id reference
returns bigint
volatile
parallel safe
language plpgsqlThe following examples post to the Postman Echo API.
SELECTnet.http_post(
'https://postman-echo.com/post',
'{"key": "value", "key": 5}'::JSONB,
headers :='{"API-KEY-HEADER": "<API KEY>"}'::JSONB
) AS request_id;NOTE: If multiple rows are sent using this method, each row will be sent as a separate request.
WITH selected_row AS (
SELECT*FROM target_table
LIMIT1
)
SELECTnet.http_post(
'https://postman-echo.com/post',
to_jsonb(selected_row.*),
headers :='{"API-KEY-HEADER": "<API KEY>"}'::JSONB
) AS request_id
FROM selected_row;WARNING: when sending multiple rows, be careful to limit your payload size.
WITH selected_rows AS (
SELECT-- Converts all the rows into a JSONB array
jsonb_agg(to_jsonb(target_table)) AS JSON_payload
FROM target_table
-- Generally good practice to LIMIT the max amount of rows
)
SELECTnet.http_post(
'https://postman-echo.com/post'::TEXT,
JSON_payload,
headers :='{"API-KEY-HEADER": "<API KEY>"}'::JSONB
) AS request_id
FROM selected_rows;net.http_delete(
-- url for the request
url text,
-- key/value pairs to be url encoded and appended to the `url`
params jsonb default '{}'::jsonb,
-- key/values to be included in request headers
headers jsonb default '{}'::jsonb,
-- the maximum number of milliseconds the request may take before being cancelled
timeout_milliseconds int default 2000
)
-- request_id reference
returns bigint
strict
volatile
parallel safe
language plpgsql
security definerThe following examples use the Dummy Rest API.
SELECTnet.http_delete(
'https://dummy.restapiexample.com/api/v1/delete/2'
) AS request_id;WITH selected_id AS (
SELECT
id
FROM target_table
LIMIT1-- if not limited, it will make a delete request for each returned row
)
SELECTnet.http_delete(
'https://dummy.restapiexample.com/api/v1/delete/'::TEXT,
format('{"id": "%s"}', id)::JSONB
) AS request_id
FROM selected_id;WITH selected_id AS (
SELECT
id
FROM target_table
LIMIT1-- if not limited, it will make a delete request for each returned row
)
SELECTnet.http_delete(
'https://dummy.restapiexample.com/api/v1/delete/'|| id
) AS request_id
FROM selected_rowThe following example comes from Typesense's Supabase Sync guide
-- Create the function to delete the record from TypesenseCREATE OR REPLACEFUNCTIONdelete_record()
RETURNS TRIGGER
LANGUAGE plpgSQL
AS $$
BEGINSELECTnet.http_delete(
url := format('<TYPESENSE URL>/collections/products/documents/%s', OLD.id),
headers :='{"X-Typesense-API-KEY": "<Typesense_API_KEY>"}'
)
RETURN OLD;
END $$;
-- Create the trigger that calls the function when a record is deleted from the products tableCREATETRIGGERdelete_products_trigger
AFTER DELETEONpublic.products
FOR EACH ROW
EXECUTE FUNCTION delete_products();The PG_CRON extension enables PostgreSQL to become its own cron server. With it you can schedule regular calls to activate serverless functions.
Useful links:
SELECTcron.schedule(
'cron-job-name',
'* * * * *', -- Executes every minute (cron syntax)
$$
-- SQL querySELECTnet.http_get(
-- URL of Edge function
url:='https://<reference id>.functions.supabase.co/example',
headers:='{ "Content-Type": "application/json", "Authorization": "Bearer <TOKEN>" }'::JSONB
) as request_id;
$$
);Every request made is logged within the net._http_response table. To identify failed requests, you can execute a query on the table, filtering for requests where the status code is 500 or higher.
SELECT*FROMnet._http_responseWHERE status_code >=500;While the net._http_response table logs each request, it doesn't store all the necessary information to retry failed requests. To facilitate this, we need to create a request tracking table and a wrapper function around the PG_NET request functions. This will help us store the required details for each request.
CREATETABLErequest_tracker(
method TEXT,
url TEXT,
params JSONB,
body JSONB,
headers JSONB,
request_id BIGINT
)Below is a function called request_wrapper, which wraps around the PG_NET request functions. This function records every request's details in the request_tracker table, facilitating future retries if needed.
CREATE OR REPLACEFUNCTIONrequest_wrapper(
method TEXT,
url TEXT,
params JSONB DEFAULT '{}'::JSONB,
body JSONB DEFAULT '{}'::JSONB,
headers JSONB DEFAULT '{}'::JSONB
)
RETURNS BIGINTAS $$
DECLARE
request_id BIGINT;
BEGIN
IF method ='DELETE' THEN
SELECTnet.http_delete(
url:=url,
params:=params,
headers:=headers
) INTO request_id;
ELSIF method ='POST' THEN
SELECTnet.http_post(
url:=url,
body:=body,
params:=params,
headers:=headers
) INTO request_id;
ELSIF method ='GET' THEN
SELECTnet.http_get(
url:=url,
params:=params,
headers:=headers
) INTO request_id;
ELSE
RAISE EXCEPTION 'Method must be DELETE, POST, or GET';
END IF;
INSERT INTO request_tracker (method, url, params, body, headers, request_id)
VALUES (method, url, params, body, headers, request_id);
RETURN request_id;
END;
$$
LANGUAGE plpgsql;To retry a failed request recorded via the wrapper function, use the following query. This will select failed requests, retry them, and then remove the original request data from both the net._http_response and request_tracker tables.
WITH retry_request AS (
SELECTrequest_tracker.method,
request_tracker.url,
request_tracker.params,
request_tracker.body,
request_tracker.headers,
request_tracker.request_idFROM request_tracker
INNER JOINnet._http_responseONnet._http_response.id =request_tracker.request_idWHEREnet._http_response.status_code >=500LIMIT3
),
retry AS (
SELECT
request_wrapper(retry_request.method, retry_request.url, retry_request.params, retry_request.body, retry_request.headers)
FROM retry_request
),
delete_http_response AS (
DELETEFROMnet._http_responseWHERE id IN (SELECT request_id FROM retry_request)
RETURNING *
)
DELETEFROM request_tracker
WHERE request_id IN (SELECT request_id FROM retry_request)
RETURNING *;The above function can be called using cron jobs or manually to retry failed requests. It may also be beneficial to clean the request_tracker table in the process.
Checkout the Contributing page to learn more about adding to the project.