You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@superset.apache.org by GitBox <gi...@apache.org> on 2022/08/11 05:54:46 UTC

[GitHub] [superset] alitrack commented on issue #20708: Unable to read S3 parquet files using DuckDB as Database Connector

alitrack commented on issue #20708:
URL: https://github.com/apache/superset/issues/20708#issuecomment-1211577816

   @Mageswaran1989 , @Mause 
   
   I tested with  minio, 
   ```bash 
   /usr/local/opt/minio/bin/minio server --config-dir=/usr/local/etc/minio --address=:9900 /usr/local/var/minio
   ```
   
   and it works, 
   
   ```sql
   install 'httpfs';
   load 'httpfs';
   SET s3_endpoint='127.0.0.1:9900';
   SET s3_access_key_id='minioadmin';
   SET s3_secret_access_key='minioadmin';
   SET s3_url_style = 'path';
   SET s3_use_ssl=false;
   select count(*) from 's3://ontime/*.parquet';
   ```
   
   <img width="442" alt="image" src="https://user-images.githubusercontent.com/20972179/184071422-b4128cd0-f9a8-4579-936f-23621260e64d.png">
   
   
   you need check `Allow DML`
    
   <img width="502" alt="image" src="https://user-images.githubusercontent.com/20972179/184071760-05ad5da6-1cb6-4f7d-ae9c-8fd064aebd43.png">
   


-- 
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: notifications-unsubscribe@superset.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@superset.apache.org
For additional commands, e-mail: notifications-help@superset.apache.org