runlot

Extensions

Coming soon

PostgreSQL extensions will only ever be offered by being compiled statically into the engine. You cannot install them with CREATE EXTENSION.

No extensions are available today. This page describes the support plan and its limits.

How they will be offered

Extensions will be offered by being statically linked into the engine build. You cannot install an extension with CREATE EXTENSION, and we have no plans to support that. The engine runs as an isolated process per project, so allowing users to load arbitrary shared libraries would weaken that isolation.

pgvector and PostGIS

These are goals on the plan, not something included today. If you need vector search right now, you will need to choose another service.

Extensions we will not support

  • pg_cron — extensions that require background workers do not fit this runtime.
  • Extensions that use background processes, such as TimescaleDB

What is available today

Standard PostgreSQL syntax and the built-in functions are available. If a feature that requires an extension (some full-text search, geospatial data, vector search) is a hard requirement for your project, review this limit before you commit.

We will update this page as support changes.

On this page