WASI
The default runtime engine is WASI, which is a server-side interface for WebAssembly. This engine is extremely performant but has some limitations, notably limited support for third-party dependencies.V8
When you run code in a Custom Runtime for Python or JavaScript, by default that code runs using our V8 runtime engine. This engine is more flexible than WASI but isn’t quite as fast for Python.microVM (deprecated)
The microVM runtime engine is deprecated. We recommend migrating to the V8 engine for improved performance and continued support.
For more information about this deprecation and migration guidance, see our
blog post.