Replies: 3 comments 5 replies
-
Hi @arunbala -- I don't think we have taught datafusion-cli how to do this quite yet. I think you need to register the datasource like this https://arrow.apache.org/datafusion/user-guide/cli.html#registering-s3-data-sources I would like to file a ticket describing your usecase. Can you tell me:
Maybe @r4ntix has some thoughts |
Beta Was this translation helpful? Give feedback.
-
I tried this:
But it didn't seem to work 🤔 This is from https://registry.opendata.aws/daylight-osm/
|
Beta Was this translation helpful? Give feedback.
-
Hi @arunbala Currently, datafusion-cli needs to register an external table to access non-local datasource. I think the way datafusion-cli registers the external table is simple and clear. Could you tell us about your use cases? Maybe, we could have a discussion to find ways to improve it. 😊 |
Beta Was this translation helpful? Give feedback.
-
Hi all,
I am new to Datafusion and playing around with it. Is there a way to query remote parquet files directly without adding it as external table? I couldn't find it in the docs and I tried a couple of things and they didn't work:
select * from location 's3://bucket/file.parquet';
select * from 's3://bucket/file.parquet';
Beta Was this translation helpful? Give feedback.
All reactions