Skip to content
Release: Australia · Updated: 2026-03-12 · Official documentation · View source

PostgreSQL metadata collector

Provides read-only access to metadata from a PostgreSQL database.

The collector harvests metadata for PostgreSQL tables and columns, making them searchable and discoverable in the data catalog. Supports both self-hosted PostgreSQL instances and managed PostgreSQL instances, such as those hosted on AWS RDS.

Authentication supported

Username and password authentication and AWS IAM authentication.

Metadata cataloged

The PostgreSQL collector catalogs the following information.

Note: All versions of overloaded functions and stored procedures are cataloged. Each version has its own title in the catalog but a distinct identifier.

ObjectInformation cataloged
ColumnsName, Description, JDBC type, Column Type, Is Nullable, Default Value, Key type (Primary, foreign), column size, column index
TableName, description, primary key, schema
Table IndexIndex Cardinality, Column name, Index Type, Index Name, is non Unique, Ordinal Position, Pages, Sort Sequence
ViewsName, description, SQL definition
Materialized ViewName, description, SQL definition
SchemaIdentifier, Name
DatabaseType, name, identifier, server, port, environment, JDBC URL
FunctionName, Description, Function Type
Stored ProcedureName, Description, Stored Procedure Type

When profiling and sampling parameters are enabled, the following additional column information is cataloged:

Note: The user/role must have read access to data to be able to harvest profiling information (column statistics).

ObjectInformation cataloged
Column- Average Length \(sample\) - Average Value \(sample\) - Data Distribution - Distinct Values - Estimated Distinct Values - Estimated Non-null Values - Maximum Length \(sample\) - Maximum Value \(sample\) sorted numerically or alphabetically \(z-a\) - Minimum Length \(sample\) - Minimum Value \(sample\) sorted numerically or alphabetically \(a-z\) - Non-null Values \(sample\) - Sample String Values \(first 5 items in a column\)
Table- Row Count - Sample Count \(Target sample size\)

Relationships between objects

Catalog pages show relationships between the following data asset types:

Data asset pageRelationship
TableColumns, Table Indexes
ColumnsTable
Schema- Database that contains Schema - Table that is part of Schema - View that is part of Schema - Materialized View that is part of Schema
View- Schema that contains Views - Columns that are part of Views
Materialized View- Schema that contains Materialized Views - Columns that are part of Materialized Views

Lineage for PostgreSQL

The collector identifies column-level lineage for Views and Materialized Views, tracing data sources from view columns to source table columns across SQL expressions and subqueries.

Establishes relationships between Views and source Table columns that:

  • Sort rows (SQL ORDER BY)
  • Filter rows (SQL WHERE and HAVING clauses)
  • Aggregate rows (SQL GROUP BY)

Note: View-to-table relationships can be established transitively through column-level relationships. Variable statement lineage isn’t supported.

Parent Topic:Configuring metadata collectors