-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
[wasi][icu] Add ICU sharding for wasi #82614
Comments
Tagging subscribers to this area: @dotnet/area-system-globalization Issue DetailsNow we are loading always full icu for wasi. Add sharding like in #80421.
|
Tagging subscribers to this area: @directhex Issue DetailsNow we are loading always full icu for wasi. Add sharding like in #80421.
|
For single file WASI: For default wasi - no relink + FS access Copied from here |
Now we are loading always full icu for wasi. Add sharding like in #80421.
Connected issues: #82895
In the sharding approach we cannot achieve automatic shard selection - we would need to bundle all icu to wasi first and then make the decision which shard to choose, that would in fact increases the upload size -> no point.
Instead, we could let the user choose the shard explicitly, e.g. using custom icu loading mechanism (it should bundle one, chosen icu file from runtime pack). For that we would use the same mechanism as for TZ/full icu - embedding into dotnet.wasm file.
The text was updated successfully, but these errors were encountered: