Replies: 1 comment
-
As assumed it was a simple error. When I was calling:
I found out that the correct path needs to be "hdlfs:///DE/customer/my.parquet", otherwise "DE" was interpreted as an host. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Sorry for this most basic question, but I do not get a grip on how to use an ObjectStore with datafusion to register tables, parquet files etc.
For my object store SAP HDLFS I have implemented the object_store::ObjectStore trait and an object_store registry
Now I like to load parquet and later datalake tables into a datafusion DataFrame, but with this code I run into an error
NotFound { path: "/DE/customer/0-0d3875e9-1611-4ccd-a801-184caf851de2-0.parquet", source: Os { code: 2, kind: NotFound, message: "No such file or directory" }
But with e.g.
Can anyone guide me into the right direction? My ultimate goal is to test datafusion against Spark and evaluate where we can complement Spark or replace Spark in specific contexts.
Beta Was this translation helpful? Give feedback.
All reactions