The Tinybird postgresql()
table function is currently in public beta.
The Tinybird postgresql()
table function allows you to read data from your existing PostgreSQL database into Tinybird, then schedule a regular copy pipe to orchestrate synchronization. You can load full tables, and every run performs a full replace on the data source.
To use it, define a node using standard SQL and the postgresql
function keyword, then publish the node as a copy pipe that does a sync on every run. See Table functions for general information and tips.
Setting secrets¶
Table functions require authentication credentials (such as AWS keys) that must be stored securely. Tinybird provides different methods for managing secrets depending on the version you're using.
Using the Variables API (Classic)¶
In Tinybird Classic, you must set your credentials using the Environment Variables API:
curl -X POST -H "Authorization: Bearer $TOKEN" \ --data-urlencode "name=pg_username" \ --data-urlencode "value=postgres" \ https://<TB_HOST_URL>/v0/variables/
For more details, see the Environment Variables API documentation.
Using the CLI (Forward)¶
In Tinybird Forward, you manage secrets using the tb secret
command:
tb secret set pg_username postgres tb secret set pg_password your_password
For more details, see the tb secret command documentation.
Once you've set up your secrets, you can reference them in your SQL with the tb_secret
function as shown in the Syntax section below.
Syntax¶
Create a new pipe node. Call the postgresql
table function and pass the hostname and port, database, table, user, and password:
Example query logic
SELECT * FROM postgresql( 'aws-0-eu-central-1.TODO.com:3866', 'postgres', 'orders', {{tb_secret('pg_username')}}, {{tb_secret('pg_password')}} )
Publish this node as a copy pipe. You can choose to append only new data or replace all data.
Type support and inference¶
Here's a detailed conversion table:
PostgreSQL data type | Tinybird data type |
---|---|
BOOLEAN | UInt8 or Bool |
SMALLINT | Int16 |
INTEGER | Int32 |
BIGINT | Int64 |
REAL | Float32 |
DOUBLE PRECISION | Float64 |
NUMERIC or DECIMAL | Decimal(p, s) |
CHAR(n) | FixedString(n) |
VARCHAR (n) | String |
TEXT | String |
BYTEA | String |
TIMESTAMP | DateTime |
TIMESTAMP WITH TIME ZONE | DateTime (with appropriate timezone handling) |
DATE | Date |
TIME | String (since there is no direct TIME type) |
TIME WITH TIME ZONE | String |
INTERVAL | String |
UUID | UUID |
ARRAY | Array(T) where T is the array element type |
JSON | String or JSON |
JSONB | String |
INET | String |
CIDR | String |
MACADDR | String |
ENUM | Enum8 or Enum16 |
GEOMETRY | String |
Enabling the PostgreSQL Table Function¶
In Production¶
To enable the PostgreSQL table function in your production workspace, please contact Tinybird support. They will enable the function for your specific workspace.
For Local Development (Forward only)¶
After the feature is enabled for your Workspace, it becomes available for local development automatically. You do not need to take any extra steps to enable it for local use.
Using the PostgreSQL Table Function Locally (Forward only)¶
When using the PostgreSQL table function in your local development environment, keep the following considerations in mind:
- Network Connection: The connection to your PostgreSQL server originates from within the Tinybird Local container (Docker or where you're running Tinybird Local).
- Server Reachability: Ensure your PostgreSQL server is reachable from inside the Docker network.
- Credentials: You must set the secrets for your PostgreSQL credentials in your local Tinybird project. See the tb secret documentation for details. You can provide default values for these credentials, but note that defaults can only be defined inside the pipe SQL itself—not through the CLI. You can set your credentials using:
tb secret set pg_username <YOUR_PG_USERNAME> tb secret set pg_password <YOUR_PG_PASSWORD>
- Server Address: Use the container-reachable address in your queries, not
localhost
.
Example query:
NODE get_ids SQL > % SELECT id FROM postgresql( 'host.docker.internal:5432', '<YOUR_PG_DB>', '<YOUR_PG_TABLE>', {{ tb_secret('pg_username', '<YOUR_DEFAULT_USERNAME>') }}, {{ tb_secret('pg_password', '<YOUR_DEFAULT_PWD>') }} ) TYPE ENDPOINT
Considerations¶
The following considerations apply to the postgresql()
table function:
- Tinybird doesn't support all PostgreSQL types directly, so some types are mapped to String, which is the most flexible type for arbitrary data.
- For the
NUMERIC
andDECIMAL
types,Decimal(p, s)
in Tinybird requires specifying precision (p) and scale (s). - Time zone support in Tinybird's
DateTime
can be managed via additional functions or by ensuring consistent storage and retrieval time zones. - Some types like
INTERVAL
don't have a direct equivalent in Tinybird and are usually stored as String or decomposed into separate fields.