pg_lake_engine
pg_lake : Query engine for data lake queries
Overview
| ID | Extension | Package | Version | Category | License | Language |
|---|---|---|---|---|---|---|
| 2564 | pg_lake_engine | pg_lake | 3.4 |
OLAP | Apache-2.0 | C |
| Attribute | Has Binary | Has Library | Need Load | Has DDL | Relocatable | Trusted |
|---|---|---|---|---|---|---|
| --sLd-- | No | Yes | Yes | Yes | no | no |
| Relationships | |
|---|---|
| Schemas | __lake__internal__nsp__ lake_engine lake_struct pg_catalog |
| Requires | pg_extension_base pg_map |
| Need By | pg_lake_copy pg_lake_iceberg pg_lake_table |
| See Also | pg_duckdb pg_ducklake pg_mooncake duckdb_fdw pg_parquet pg_clickhouse columnar storage_engine orioledb |
| Siblings | pg_lake pg_extension_base pg_extension_updater pg_map pg_lake_iceberg pg_lake_table pg_lake_copy |
Packages
| Type | Repo | Version | PG Major Compatibility | Package Pattern | Dependencies |
|---|---|---|---|---|---|
| EXT | PIGSTY | 3.4 |
18 17 16 15 14 | pg_lake |
pg_extension_base, pg_map |
| RPM | PIGSTY | 3.4.0 |
18 17 16 15 14 | pg_lake_$v |
- |
| DEB | PIGSTY | 3.4.0 |
18 17 16 15 14 | postgresql-$v-pg-lake |
- |
| Linux / PG | PG18 | PG17 | PG16 | PG15 | PG14 |
|---|---|---|---|---|---|
| el8.x86_64 | N/A | N/A | N/A | N/A | N/A |
| el8.aarch64 | N/A | N/A | N/A | N/A | N/A |
| el9.x86_64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
| el9.aarch64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
| el10.x86_64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
| el10.aarch64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
| d12.x86_64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
| d12.aarch64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
| d13.x86_64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
| d13.aarch64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
| u22.x86_64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
| u22.aarch64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
| u24.x86_64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
| u24.aarch64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
| u26.x86_64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
| u26.aarch64 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | PIGSTY 3.4.0 | N/A | N/A |
Source
github.com/Snowflake-Labs/pg_lake/tree/main/pg_lake_engine
pg_lake-3.4.0.tar.gz
Install
Make sure PGDG and PIGSTY repo available:
Install this extension with pig:
Config this extension to shared_preload_libraries:
Create this extension with:
Usage
Sources:
- Official pg_lake architecture overview
- Version 3.4 control file
- Base SQL objects
- Version 3.4 cleanup-queue change
pg_lake_engine is the shared execution layer used by the pg_lake table, copy, and Iceberg extensions. It rewrites eligible PostgreSQL work for pgduck_server, maps PostgreSQL and DuckDB values, and tracks remote files that must be removed after aborts or table changes. It is an internal dependency rather than a standalone analytics interface.
Deployment Boundary
Install it through the top-level extension so its dependency graph and preload directives remain aligned:
pg_lake_engine requires pg_extension_base and pg_map. Query execution also requires a running local pgduck_server; creating only this extension does not provide a usable lake table.
User-Visible Objects
- Roles
lake_read,lake_write, andlake_read_write: shared privilege groups consumed by the other components. to_postgres(any): returns its input while forcing that expression to be evaluated in PostgreSQL instead of pushed to the lake engine.to_date(double precision): converts a days-since-Unix-epoch value commonly found in Parquet to a PostgreSQLdate.lake_engine.deletion_queue: tracks committed orphan-file cleanup; readable bylake_write.lake_engine.in_progress_files: tracks files produced by transactions that have not committed.lake_engine.flush_deletion_queue(regclass)andflush_in_progress_queue(): privileged cleanup functions used by maintenance paths.
Use to_postgres() only when an expression cannot or should not be pushed down; pulling data back into PostgreSQL may substantially increase transfer and execution cost.
Internal State and Caveats
- The
__lake__internal__nsp__functions are planner/deparser placeholders and are not a supported direct SQL API. - Do not manually update or delete queue rows. Cleanup functions need the extension’s object-store credentials and privilege roles and should be invoked only as documented by operational tooling.
- Version
3.4addsresolve_metadatato the deletion queue so Iceberg metadata can be expanded into exact referenced files duringVACUUM, moving object-store traversal off theDROPpath. - Roles are cluster-wide objects and can outlive an extension instance in one database; review memberships separately when removing pg_lake.