Postgresql
Postgresql
Connect your Postgresql data to Airweave
Overview
The Postgresql connector allows you to sync data from Postgresql into Airweave, making it available for search and retrieval by your agents.
Configuration
PostgreSQLSource
PostgreSQL source implementation.
This source connects to a PostgreSQL database and generates entities for each table in the specified schemas. It uses database introspection to:
- Discover tables and their structures
- Create appropriate entity classes dynamically
- Generate entities for each table’s data
Authentication
This connector uses a custom authentication configuration class: PostgreSQLAuthConfig
.
PostgreSQL authentication configuration.
The host of the PostgreSQL database
The port of the PostgreSQL database
The name of the PostgreSQL database
The username for the PostgreSQL database
The password for the PostgreSQL database
The schema of the PostgreSQL database
Comma separated list of tables to sync. For example, ‘users,orders’. For all tables, use ’*’