You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/07/13 20:17:41 UTC

[GitHub] [arrow-datafusion] andygrove commented on pull request #2881: Add h2o bench groupby queries

andygrove commented on PR #2881:
URL: https://github.com/apache/arrow-datafusion/pull/2881#issuecomment-1183637189

   ## Reading from CSV
   
   ```
   $ ../target/release/h2o group-by --query 1 --path /mnt/bigdata/h2oai/N_1e7_K_1e2_single.csv
   Running benchmarks with the following options: GroupBy(GroupBy { query: 1, path: "/mnt/bigdata/h2oai/N_1e7_K_1e2_single.csv", debug: false, mem_table: false })
   Executing select id1, sum(v1) as v1 from x group by id1
   h2o groupby query 1 took 1793 ms
   ```
   
   ## Reading from memory
   
   ```
   $ ../target/release/h2o group-by --query 1 --path /mnt/bigdata/h2oai/N_1e7_K_1e2_single.csv --mem-table
   Running benchmarks with the following options: GroupBy(GroupBy { query: 1, path: "/mnt/bigdata/h2oai/N_1e7_K_1e2_single.csv", debug: false, mem_table: true })
   Executing select id1, sum(v1) as v1 from x group by id1
   h2o groupby query 1 took 396 ms
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org