apache / arrow-flight-sql-postgresql

Apache Arrow Flight SQL adapter for PostgreSQL
https://arrow.apache.org/flight-sql-postgresql/
Apache License 2.0
65 stars 9 forks source link

Add benchmark for string #168

Closed kou closed 10 months ago

kou commented 10 months ago

Closes GH-153

SELECT pattern parses text representation result.

COPY pattern parses binary representation result.

Integer pattern is faster that PostgreSQL but string pattern is slower than PostgreSQL because we need to copy data when we generate record batches with Apache Arrow C++'s array builder. We will improve performance by avoiding the copy.

kou commented 10 months ago

+1