-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support selecting directly from http://
/ https://
urls in datafusion-cli
#9133
Comments
http://
urls in datafusion-clihttp://
/ https://
urls in datafusion-cli
I'd like to give this a try, please |
Is there an easy way to run cli locally from source without going through Docker (I'm on Mac M2)? Don't mind a "no" answer, just want to find an easiest way to get started, thanks. |
I normally do cd datafusion/datafusion-cli
cargo run (the key is that |
Thanks @alamb, that worked, I was clearly after something more complex and didn't think about that option 🤦 |
take |
yay, it works 🎆 |
Is your feature request related to a problem or challenge?
After #8753 it is now possible to read data from
http
via a create external table command:After #9064 from @manoj-inukolunu it is possible to
COPY
to a remote url which is also great.However, it is not yet possible to select directly from a remote store like
Describe the solution you'd like
I would like to be able to select directly from a remote http source like
This works great for local files:
Describe alternatives you've considered
No response
Additional context
I think the trick is intercepting requested URLs / references in
DynamaicFileCatalog
and calling the appropriate object store registration function (e.g. what is in #9064 )The text was updated successfully, but these errors were encountered: