Implementation details - WASM + PostgresQL #166
Unanswered
dberardo-com
asked this question in
Q&A
Replies: 1 comment 6 replies
-
Hi there,
Also, are you aware of https://github.com/duckdb/pg_duckdb which might be interesting for you. Again, I haven't tested if DuckPGQ works with this extension (this is all quite new) but there's a chance it works. |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I was wondering some implementation related details:
point number 1 might be already clear enough, while for point 2 i mean that duckdb is not yet used to store data but rather to import it and then work on it (ETL). however duckpgq is thought to be working on potentially frequently changing graph data. So the question is, assuming that the underlying data structure is store and updated in a postgresql database, how can this update be efficiently syncrhonized with duckdb / duckpgq "on-the-fly" ?
my quess is to use postgresql scan, and periodically call the clear cache method: https://duckdb.org/docs/extensions/postgres.html#schema-cache but is there any better way to achieve this ?
and also: i am assuming here that duckpgq can already work with tables that are loaded in duckdb using the pgsql attach command
Beta Was this translation helpful? Give feedback.
All reactions