Skip to content

Commit

Permalink
Fix link in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
adriangb authored Jul 1, 2023
1 parent 0a15349 commit ceb3ba4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Exporting to CSV has the same pitfalls as loading from CSV, and sometimes even c
Since Postgres does not natively support loading from Parquet this library provides an io-free encoder that can convert from Parquet to Postgres' binary format on the fly.
It accepts Arrow data as an input which means great support for reading Parquet files from all sorts of sources (disk, HTTP, object stores, etc.) in an efficient and performant manner.

Benchmarks using the NYC Yellow Cab dataset show that it takes `pgpq` [less than 1 second to encode 1M rows](py/benches/encode.ipynb) and that the [cost of encoding + binary copy is lower than the cost of a native CSV copy](py/benches/copy.ipynb) (which ignores the cost of a CSV export if the data was a Parquet file in the first place).
Benchmarks using the NYC Yellow Cab dataset show that it takes `pgpq` [less than 1 second to encode 1M rows](py/benches/encode.ipynb) and that the [cost of encoding + binary copy is lower than the cost of a native CSV copy](py/benches/encode.ipynb) (which ignores the cost of a CSV export if the data was a Parquet file in the first place).

## Python distribution

Expand Down

0 comments on commit ceb3ba4

Please sign in to comment.