kou commented on issue #34781:
URL: https://github.com/apache/arrow/issues/34781#issuecomment-1499781524

   Sorry, I missed this.
   
   We can't use byte ranges directly but we can use condition push down to 
reduce download size.
   
   We doesn't provide DSL to build condition yet (#29928) but the following 
will work:
   
   ```ruby
   require 'arrow-dataset'
   
   s3_uri = URI('s3://bucket/public.parquet')
   Arrow::Table.load(s3_uri, filter: [:equal, :column_name, 100]) # 
"column_name == 100"
   ```
   
   See https://arrow.apache.org/docs/cpp/compute.html for available functions.


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to