Install Edge Worker
Let’s set up a few things before working with Edge Worker. This setup needs to be done only once per project.
-
Install migration
Run this command to download the migration file to your project (replace
supabase/migrations
with your migrations folder):wget -P supabase/migrations \https://raw.githubusercontent.com/pgflow-dev/pgflow/refs/heads/main/pkgs/core/supabase/migrations/000_edge_worker_initial.sqlThen apply the migration:
npx supabase migration up -
Prepare connection string
Your worker needs to connect to your Supabase project’s database.
Edge Worker looks for the connection string in the
EDGE_WORKER_DB_URL
environment variable.For local development, put this in
supabase/functions/.env
:EDGE_WORKER_DB_URL="postgresql://postgres.pooler-dev:postgres@pooler:6543/postgres" -
Setup Connection Pool
Modify the
db.pooler
section in yoursupabase/config.toml
file to enable pooler and make sure thatdb.pool_mode
is set to"transaction"
.[db.pooler]enabled = falseenabled = true# Port to use for the local connection pooler.port = 54329# Specifies when a server connection can be reused by other clients.# Configure one of the supported pooler modes: `transaction`, `session`.pool_mode = "transaction"# How many server connections to allow per user/database pair.default_pool_size = 20# Maximum number of client connections allowed.max_client_conn = 100 -
Setup Edge Runtime policy
We need to change the Edge Runtime policy to
per_worker
to enable Background Tasks (see more in Testing background tasks locally).[edge_runtime]enabled = true# Configure one of the supported request policies: `oneshot`, `per_worker`.# Use `oneshot` for hot reload, or `per_worker` for load testing.policy = "oneshot"policy = "per_worker"# Port to attach the Chrome inspector for debugging edge functions.inspector_port = 8083 -
Restart Supabase
To apply the changes, restart Supabase:
npx supabase stopnpx supabase start
That’s it! You’re ready to create your first worker and start processing messages 🥳