-
Notifications
You must be signed in to change notification settings - Fork 23
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
Wizer pre-initialization #142
Comments
@dicej can correct me if I'm wrong, but there is already something similar happening. |
Thanks for jumping in @benbrandt 🙏 I looked deeper into the codebase and found that in fact you are using component-init (rather than Wizer). Line 506 in c50822c
Is there anything else that can be done to speed up the init/compilation time? I am asking because in production environments the init time is actually much higher, in the range of 10+ seconds (compared to the 2 seconds on my local machine). So that becomes problematic in some scenarios where you need to hot-load a component to serve a request or two, and then shutdown. |
Also, I wonder why not using Wizer directly since ComponentizeJS showed that it can be used also for Wasm components (not just modules). Based on their docs:
So it seems that Wizer could speed up the compilation time too? Or that is completely different for the Python interpreter? |
You've got two options:
See this thread for more details. Also see these benchmarks to get a sense of how different instantiation options affect performance. Feel free to do your own benchmarks using your own program to get a sense of what the bottlenecks are; I expect @benbrandt is correct that almost all the time is spent compiling. I'd expect instantiating from an
ComponentizeJS does not use Wizer for components; it generates a module, runs Wizer on it, and then converts the output to a component. BTW, I've spoken at length about this with the ComponentizeJS maintainers, and they're planning to move to the same model as
Neither Wizer nor |
Thank you, @dicej this is very useful 🙏 I agree that Winch might become a good option for this use case, once it's marked as ready for production applications 👌 I've started looking into this to evaluate how much faster it would be. Other than selecting I am getting a weird error when pre-instantiating the component: let mut linker = Linker::new(engine);
wasmtime_wasi::add_to_linker_async(&mut linker)?;
let component = Component::from_file(engine, &file_path)?;
let instance_pre = linker.instantiate_pre(&component)?; The error is:
Should I not pre-instantiate at all when using Winch? I couldn't find much documentation about this. |
I haven't tried Winch yet myself, mostly because I have a Linux/ARM64 machine which wasn't supported by Winch last time I checked. Also, it didn't support certain Wasm features like funcrefs, which |
Would it be possible to implement the same Wizer pre-initialization for componentize-py, similar to ComponentizeJS?
Loading a Python-based Wasm component into memory (using wasmtime) takes many seconds and it would be great if we could find a way to reduce that to hundreds of milliseconds as for the other supported languages.
For comparison, here are the load times for different languages on my MacBook Pro (pretty much an empty component):
The text was updated successfully, but these errors were encountered: