Open
Description
Following from #132, @Baccata points out that AWS offers a similarly low level interface to build a custom Lambda Runtime.
https://docs.aws.amazon.com/lambda/latest/dg/runtimes-custom.html
The advantage of implementing a custom runtime is the capability to process multiple events concurrently, but it's unclear if AWS supports this. On the one hand, polling for incoming events is completely within the lambda's control, and an id is used to pair responses with events so they don't necessarily need to be processed in order. But on the other, there are some strange assumptions such as the use of environment variables to pass around tracing headers, which makes me think this is unsupported behavior.
This should be further investigated.