| ▲ | pgguru 2 days ago | |||||||||||||||||||||||||
You create foreign tables in postgres using either the pg_lake_table wrapper or pg_lake_iceberg. Once those tables exist, queries against them are able to either push down entirely to the remote tables and uses a Custom Scan to execute and pull results back into postgres, or we transform/extract the pieces that can be executed remotely using a FDW and then treat it as a tuple source. In both cases, the user does not need to know any of the details and just runs queries inside postgres as they always have. | ||||||||||||||||||||||||||
| ▲ | spenczar5 2 days ago | parent [-] | |||||||||||||||||||||||||
I think I don't understand postgres enough, so forgive this naive question, but what does pushing down to the remote tables mean? Does it allow parallelism? If I query a very large iceberg table, will this system fan the work out to multiple duckdb executors and gather the results back in? | ||||||||||||||||||||||||||
| ||||||||||||||||||||||||||