swaingotnochill commented on issue #16365:
URL: https://github.com/apache/datafusion/issues/16365#issuecomment-3039046493

   I observed a significant performance improvement just testing on the master 
branch without any metadata caching as compared to before. 
   
   ```
   ➜  datafusion git:(main) ✗ ./target/debug/datafusion-cli 
   DataFusion CLI v48.0.0
   > CREATE EXTERNAL TABLE nyc_taxi_rides
   STORED AS PARQUET LOCATION 
's3://altinity-clickhouse-data/nyc_taxi_rides/data/tripdata_parquet/';
   0 row(s) fetched. 
   Elapsed 4.889 seconds.
   
   > select count(*) from nyc_taxi_rides;
   +------------+
   | count(*)   |
   +------------+
   | 1310903963 |
   +------------+
   1 row(s) fetched. 
   Elapsed 3.508 seconds.
   
   > select count(*) from nyc_taxi_rides;
   +------------+
   | count(*)   |
   +------------+
   | 1310903963 |
   +------------+
   1 row(s) fetched. 
   Elapsed 0.252 seconds.
   ```


-- 
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-unsubscr...@datafusion.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to