-
Notifications
You must be signed in to change notification settings - Fork 1
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
Unable to use with delta-sharing.io reference data #6
Comments
Hey Robert, Thanks for filing the issue - I can confirm that I can reproduce the same error on both macOS/Windows machines. Rest assured that you are doing the correct thing, I am currently investigating if there were silent changes pushed to the delta sharing server/protocol. Is your share created with Databricks or open source delta sharing? |
@robkroll can you please try: arrow::read_parquet("C:/temp/share-download/fe9ef647-d848-476b-afbe-9083b532ec24/0df8a546325957122d72659e2ca8edc1.parquet") or if you can install install.packages("duckdb")
con <- DBI::dbConnect(duckdb::duckdb())
DBI::dbGetQuery(
con,
"select * from read_parquet('C:/temp/share-download/fe9ef647-d848-476b-afbe-9083b532ec24/0df8a546325957122d72659e2ca8edc1.parquet')"
) I'm expecting you'll see a similar error for both. |
Hi @zacdav-db, thanks for the reply.
I'm firstly just trying to use the reference server that has been set up from the Delta Sharing README, so I've downloaded the open-datasets.share file. I did need to edit it for use with the R connector, because it needed an
Yes, both directly reading using arrow and duckdb gives me the same error |
Hello. I'm new to R, so forgive the beginner question, but I'm unable to use the connector against the reference data provided by delta-sharing.io.
I've built the package and I'm running it this way:
However, I get the following output:
Any help would be appreciated. Thanks!
The text was updated successfully, but these errors were encountered: