What is Xata?
Direct access
beta
beta feature

Almost complete feature but still under development. There may be changes as we address issues and feedback. Use with caution.

Connect to Postgres

Edit on GitHub

Enable Postgres connections in Xata

Beta

Xata now allows direct connections to Postgres. To enable it follow these steps:


1

Enable Postgres in your workspace settings

2

Create a brand new database with Postgres enabled

3

Use the @next version of our APIs within your project

npm install -g @xata.io/cli@next
npm install @xata.io/client@next

Xata provides the ability to connect to database branches via the standard Postgres wire protocol. This opens up generic Postgres tool support including psql, pg_dump, pg_restore, language clients, ORMs, BI tools, and more.

The SQL commands that you send over the wire protocol behave identically to the way they behave on any other Postgres installation or service. We maintain a list of supported statements which limits some statements within our default shared clusters. Full access is available with our Dedicated Cluster plans.

The examples below teach you how a connection string is built and explain how different Xata parameters map to Postgres URLs when connecting via psql.

#

Connection string

The connection string needs to be in the following format:

postgresql://[User]:[Password]@[Host]:[Port]/[Database]

Typical Postgres parameters have Xata equivalents.

PostgresXataExample
UserWorkspace Idws1234
PasswordAPI keyxau_apikey123456
HostRegion plus .sql.xata.shus-east-1.sql.xata.sh
Port5432 or empty5432
DatabaseDatabase and branch nameGames:main

With the mapping from above, the connection string to connect to our database Games on branch main is:

postgresql://ws1234:xau_apikey123456@us-east-1.sql.xata.sh:5432/Games:main
  • The connection strings for HTTP access and Postgres wire protocol access are shown to you when you create a new database. You can view this connection string at any time by going to your database's settings page.
  • API keys are stored at the user level and can be accessed within account settings.

Connect with psql using the connection string format provided above:

psql "postgresql://ws1234:xau_apikey123456@us-east-1.sql.xata.sh:5432/Games:main"

Games:main=>

The Postgres version depends on your deployment and plan. In a shared cluster, you operate in a multi tenant environment, sharing the same Postgres version. Minor version upgrades are continuously updated.

If you want control of the version, you should consider a dedicated cluster.

You can check the Postgres version with the following command:

psql "postgresql://[Workspace Id]:[API key]@[Region].sql.xata.sh:[Port]/[Database]:[Branch]" -c "select version()"
PostgreSQL 15.4 on aarch64-unknown-linux-gnu, compiled by aarch64-unknown-linux-gnu-gcc (GCC) 9.5.0, 64-bit
(1 row)

Extensions are only available in dedicated cluster plans. The default shared cluster setup ships with plpgsql only.

To run pg_dump, you need to specify the connection parameters as indicated in the connection string section above.

pg_dump --no-acl --no-owner --no-table-access-method --host=[Region].sql.xata.sh --username=[Workspace Id] --dbname=[Database]:[Branch] --password
  • The prompt will ask you for the password, which is your API key.
  • The flags, --no-acl, --no-owner and --no-table-access-method are not mandatory, but remove unnecessary noise in the file, creating a cleaner output.
  • If you are planning to import the output using pg_restore, add the flag --format=tar to the pg_dump command.

Please refer to pg_dump's documentation for a full list of features.

Import methods depend on your file format.

Use pg_restore. pg_dump offers the flag --format=tar to immediately output to tar file format.

pg_restore --host=[Region].sql.xata.sh --username=[Workspace Id] --dbname=[Database]:[Branch] --password dumpdata.tar

Use psql to import .sql files into a database branch. The following example imports the file my_branch.sql into the database playground on the branch new_branch.

psql "postgresql://[Workspace Id]:[API key]@[Region].sql.xata.sh/playground:new_branch" < my_branch.sql

The following limitations apply:

  • Some warnings are to be expected during the restore operation due to restrictions from supported statements.
  • The set of supported statements differs between Shared and Dedicated Clusters so the warnings when restoring from the same file may differ depending on the target environment.
  • Managing roles and table ownership is not supported, errors from such statements are expected.
  • Schemas are not supported. Data content and objects are restored under the target branch.
  • Restoring file attachments is not supported.

Xata offers Postgres in a variety of pricing formats. Shared cluster plans limit statements to guarantee isolation in a multi-tenant environment. Dedicated cluster plans provide more flexibility.

FunctionsDQL statements(some) DML statementsDDL statements
SQL over HTTP✅✅✅
Shared cluster*✅✅✅
Dedicated cluster*✅✅✅✅

* Requires toggling on direct access connections through Postgres.

The table below provides full granularity over specific statements.

SQL over HTTPShared ClusterDedicated Cluster
SELECT✅✅✅
INSERT✅✅✅
DELETE✅✅✅
UPDATE✅✅✅
SHOW✅✅✅
ALTER TABLE✅✅✅
CREATE TABLE✅✅✅
DROP TABLE✅✅✅
CREATE TEMPORARY TABLE✅
BEGIN✅✅
COMMIT✅✅
ROLLBACK✅✅
SET✅✅
COPY✅✅
LOCK✅✅
PREPARE✅✅
EXECUTE✅✅
TRUNCATE✅✅✅
ALTER INDEX✅✅✅
CREATE INDEX✅✅✅
DROP INDEX✅✅✅
ALTER TRIGGER✅
CREATE TRIGGER✅
DROP TRIGGER✅
ALTER EVENTTRIGGER✅
CREATE EVENTTRIGGER✅
DROP EVENTTRIGGER✅
ALTER VIEW✅✅✅
CREATE VIEW✅✅✅
DROP VIEW✅✅✅
ALTER SEQUENCE✅✅✅
CREATE SEQUENCE✅✅✅
DROP SEQUENCE✅✅✅
CALL✅
ALTER STATISTICS✅
CREATE STATISTICS✅
DROP STATISTICS✅
ALTER RULE✅
CREATE RULE✅
DROP RULE✅
ALTER TYPE✅
CREATE TYPE✅✅✅
DROP TYPE✅✅✅
ALTER DOMAIN✅✅✅
CREATE DOMAIN✅
DROP DOMAIN✅
ALTER FUNCTION✅
CREATE FUNCTION✅
DROP FUNCTION✅
EXPLAIN✅
REINDEX✅
ALTER OPERATOR CLASS✅
CREATE OPERATOR CLASS✅
DROP OPERATOR CLASS✅
CREATE EXTENSION✅
DROP EXTENSION✅
ALTER EXTENSION✅

Xata reserves the xata_ column prefix for special columns and rejects any columns with the prefix. Avoid naming columns with this prefix as there will be functional implications.

Tables created through the wire protocol will be missing the columns necessary to make Xata work. You may run into roadblocks within the UI that ask you to "Adapt your table". Doing so will quickly add the below xata_ columns to your table and enable the UI and other functionality like full-text search.

  • xata_id: internal unique record identifier.
  • xata_version: discrete version counter of the record, every update will increment the counter by one.
  • xata_createdat: datetime in UTC of the record's creation
  • xata_updatedat: datetime in UTC of the record's most recent update. If none happened, then the value is equal to the creation datetime.

Please refer to the special columns section to learn more about these columns.

For now, existing databases that weren't set up with direct access initially will need to be ported into a brand new database if you wish to utilize these features. The simplest way to port content from an existing database to a new Postgres-enabled one is via CSV.

The new Postgres abilities require breaking changes to some of our API layer. While in beta, you'll need to use @xata.io/client@latest and xata.io/cli@latest. Existing, non Postgres enabled databases are not compatible with the new client.

The following statements and/or functions are not available for security reasons.

  • SELECT user
  • SHOW password_encryption
  • SET ROLE
  • RESET ROLE
  • SET SESSION AUTHORIZATION
  • ALTER TABLESPACE
  • CREATE TABLESPACE
  • DROP TABLESPACE
  • SET search_path TO <SCHEMA>

Concurrent connections are limited by plan.

  • Free plan: 20 concurrent connections
  • Pro plan on shared cluster: 60 concurrent connections
  • Pro plan on dedicated cluster: Unlimited connections

Branch migrations are not supported yet. In databases that support direct Postgres access, you can create new branches but they cannot be merged together. This capability will become available later on.

Currently we recommend using xata pull [branchname], xata push [branchname] or the UI's migration editor to manage your schema changes. ORM native migrations (such as those in Django, Prisma or the like) will possibly have issues during the beta. Our goals are to increase support as we move toward general availability.

Xata uses SQL comments on columns to track some replication-related metadata about certain types of columns. These comments are only ever present on columns created using the Xata UI, and only on certain types of columns.

The full list of column types and their associated metadata comments is as follows:

Xata TypeMetadata commentNotes
email{"xata.type":"email"}
vector{"xata.search.dimension":n}dimension n is set in the UI
string{"xata.type":"string"}
text{"xata.type":"text"}
file{"xata.file.dpa":false}
link{"xata.link": "referenced_table"}

Adding your own comments to database objects is permitted using direct Postgres access with the SQL COMMENT statement. Xata places no restrictions on comments, but be aware that modifying or removing the metadata comments added to columns by Xata itself may break search replication or have adverse effects on how the columns behave in the Xata UI.

Xata does not allow plain text connections. This may cause problems with certain clients. If you see an error similar to the one shown below, you can explicitly force SSL by setting the sslmode to require in the connection string or passing this setting in via a parameter depending on the tool you are using.

psql: error: connection to server at "eu-west-1.sql.xata.sh" (42.42.42.42), port 5432 failed: SSL required

psql enforces the sslmode require by default, but for demonstration purposes, the following connection string has the option appended to enforce an encrypted connection:

psql "postgresql://ws1234:xau_apikey123456@us-east-1.sql.xata.sh:5432/Games:main?sslmode=require"

Xata recommends that the client verifies the server certificate. With psql use verify-ca and verify-full modes and provide a certificate store. It is usually present in the following location.

  • OSX: /etc/ssl/cert.pem
  • GNU/Linux: /etc/ssl/certs/ca-certificates.crt

The below example shows how to use psql to manage a secure connection on a OSX.

psql "sslmode=verify-full sslrootcert=/etc/ssl/cert.pem user=ws1234 password=xau_apikey123456 host=us-east-1.sql.xata.sh dbname=Games:main"

Keep in mind that different clients might require different configuration options. Please refer to the main Postgres documentation for more in depth information about the sslmodes option.

The following constraints are applied automatically for columns created through the UI:

  • string: length limited to 2048 characters.
  • text: length limited to 204800 characters.

These limitations affect search and aggregations. Xata does not index longer values in the search store for these types.

You will notice the constraint violation with following error message:

ERROR:  new row for relation "mytable" violates check constraint "mytable_xata_string_length_mystr"

Xata distinguishes columns created via the UI or API using comments. If you drop constraints via the wire protocol, you should acknowledge the implications for features relying on the search store.

On this page

Connection stringSupported versionsExtensionsExportImportImport from an archiveImport from a SQL fileSupported statementsAdapt your schema to match Xata requirementsLimitationsPostgres can not be enabled on already existing databasesXata CLI and client need to be on the @next versionUnsupported statements and functionsConnection limitsBranch migrationsORM native migrations are unsupportedColumn metadataTroubleshootingSSL requiredType constraint violations