Skip to content

Add ExecutorPools, which will maintain collections of hot executors.

Cory Massaro requested to merge apine-executor-pool-2 into main

Bug: T371837

This change introduces the notion of ExecutorPools. An ExecutorPool holds a queue of Executors. Upon creation, each Executor initializes a wasmedge subprocess. Therefore, when a request comes in, it can immediately grab an Executor off of the queue instead of waiting for wasmedge startup.

Merge request reports