Edge Functions

Scheduling Edge Functions


The hosted Supabase Platform supports the pg_cron extension, a recurring job scheduler in Postgres.

In combination with the pg_net extension, this allows us to invoke Edge Functions periodically on a set schedule.

Examples

Invoke an Edge Function every minute

Store project_url and anon_key in Supabase Vault:

1
2
select vault.create_secret('https://project-ref.supabase.co', 'project_url');select vault.create_secret('YOUR_SUPABASE_ANON_KEY', 'anon_key');

Make a POST request to a Supabase Edge Function every minute:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
select cron.schedule( 'invoke-function-every-minute', '* * * * *', -- every minute $$ select net.http_post( url:= (select decrypted_secret from vault.decrypted_secrets where name = 'project_url') || '/functions/v1/function-name', headers:=jsonb_build_object( 'Content-type', 'application/json', 'Authorization', 'Bearer ' || (select decrypted_secret from vault.decrypted_secrets where name = 'anon_key') ), body:=concat('{"time": "', now(), '"}')::jsonb ) as request_id; $$ );

Resources