Replies: 1 comment 3 replies
-
The error would suggest the |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
After cloning the object_store crate I have added a new object store type for SAP HANA Datalake Files (HDLFS, not HDFS ;)) . HDLFS is a governance layer on-top of the other hyperscaler that complies closely to webhdfs. I have added the object_store traits by using the ideas of the http-API. Testing the APIs works smooth.
Then I was testing if the datafusion integration with my object_store implementation works. For this I created a file that registered my object_store implementation of HDLFS:
The compilation fails with:
To cargo.toml and lib.rs I have added a feature=saphdlfs according to the feature=http.
It somehow looks that the complaints are caused by the feature of "wasm64" that requires these trait bounds. Therefore I tried to compile explicitly with the target of my macos system, with no effect.
I am not the most proficient rust programmer and do not know if this is basically an issue with my compiler settings or do I need to add these trait implementations. Could you give me a hint how to further proceed? Cheers
Beta Was this translation helpful? Give feedback.
All reactions