You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As we improve the story for using object_store with WASM we currently check that the code compiles with WASM, but have no coverage for actually running tests iina. WASM runtime to verify behavior. For example, as @XiangpengHaopoints out we have no way to verify support for files larger than 4GB (where WASM's 32-bit usize can be a problem):
Thanks for the review @alamb , I agree with the rationale but unfortunately we don't yet have the infra to test wasm32 yet. We currently only build on wasm32, but there's no runner that can actually execute the webassembly
OpenDAL has an edge test for this; it's worth taking a look.
Uh oh!
There was an error while loading. Please reload this page.
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
As we improve the story for using
object_store
with WASM we currently check that the code compiles with WASM, but have no coverage for actually running tests iina. WASM runtime to verify behavior. For example, as @XiangpengHao points out we have no way to verify support for files larger than 4GB (where WASM's 32-bitusize
can be a problem):u64
range instead ofusize
, for better wasm32 support arrow-rs#6961Describe the solution you'd like
I would like to run all relevant tests from object_store on a wasm runtime to ensure they actually run
Describe alternatives you've considered
I don't really know much about how this works, but I can imagine potentially using this crate:
https://github.com/bytecodealliance/wasmtime
Somehow to run the generated wasm
Additional context
The text was updated successfully, but these errors were encountered: