Stream: git-wasmtime

Topic: wasmtime / PR #5207 Add support for keeping pooling alloc...


view this post on Zulip Wasmtime GitHub notifications bot (Nov 04 2022 at 20:14):

alexcrichton opened PR #5207 from keep-resident-options to main:

When new wasm instances are created repeatedly in high-concurrency environments one of the largest bottlenecks is the contention on kernel-level locks having to do with the virtual memory. It's expected that usage in this environment is leveraging the pooling instance allocator with the memory-init-cow feature enabled which means that the kernel level VM lock is acquired in operations such as:

  1. Growing a heap with mprotect (write lock)
  2. Faulting in memory during usage (read lock)
  3. Resetting a heap's contents with madvise (read lock)
  4. Shrinking a heap with mprotect when reusing a slot (write lock)

Rapid usage of these operations can lead to detrimental performance especially on otherwise heavily loaded systems, worsening the more frequent the above operations are. This commit is aimed at addressing the (2) case above, reducing the number of page faults that are fulfilled by the kernel.

Currently these page faults happen for three reasons:

This PR is attempting to address the latter of these cases, and to a lesser extent the first case as well. Specifically this PR provides the ability to partially reset a pooled linear memory with memset rather than madvise. This is done to have the same effect of resetting contents to zero but namely has a different effect on paging, notably keeping the pages resident in memory rather than returning them to the kernel. This means that reuse of a linear memory slot on a page that was previously memset will not trigger a page fault since everything remains paged into the process.

The end result is that any access to linear memory which has been touched by memset will no longer page fault on reuse. On more recent kernels (6.0+) this also means pages which were zero'd by memset, made inaccessible with PROT_NONE, and then made accessible again with PROT_READ | PROT_WRITE will not page fault. This can be common when a wasm instances grows its heap slightly, uses that memory, but then it's shrunk when the memory is reused for the next instance. Note that this kernel optimization requires a 6.0+ kernel.

This same optimization is furthermore applied to both async stacks with the pooling memory allocator in addition to table elements. The defaults of Wasmtime are not changing with this PR, instead knobs are being exposed for embedders to turn if they so desire. This is currently being experimented with at Fastly and I may come back and alter the defaults of Wasmtime if it seems suitable after our measurements.

<!--

Please ensure that the following steps are all taken care of before submitting
the PR.

Please ensure all communication adheres to the code of conduct.
-->

view this post on Zulip Wasmtime GitHub notifications bot (Nov 04 2022 at 20:16):

peterhuene submitted PR review.

view this post on Zulip Wasmtime GitHub notifications bot (Nov 04 2022 at 20:20):

alexcrichton has enabled auto merge for PR #5207.

view this post on Zulip Wasmtime GitHub notifications bot (Nov 04 2022 at 20:56):

alexcrichton merged PR #5207.


Last updated: Oct 23 2024 at 20:03 UTC