Replies: 1 comment 2 replies
-
Right, this is not unexpected at this time. The main purpose of the Postgres scan is not for performance, but utility. Given the current implementation, it's not expected that we can scan and process an entire Postgres table faster than Postgres can. That said there are still many things that can still be done to improve the performance of the Postgres scan, the implementation is still quite young. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Not sure what I was expecting. It seems when scanning a Postgres native table, all time is spent in reading from it, and - at least in this simple case - dwarfs any vectorization in DuckDB.
Feel free to close if this is expected.
I created a simple table:
Then:
Some details:
So all time is spent in the Postgres scan.
Some perf counters:
Beta Was this translation helpful? Give feedback.
All reactions