This is an experimental repository containing WebAssembly modules running on top of WAGI (WebAssembly Gateway Interface, which allows you to run WebAssembly WASI binaries as HTTP handlers) and using Azure services.
Note that this repository is built on experimental code, and it is not guaranteed to be maintained or supported.
There are currently two examples in this repository, handler
and webhook
:
-
handler
- this module reads the request body and creates a new blob in Azure Blob Storage, based on the container and blob name from the request's query string. Then, it creates a new message in Azure EventGrid with the blob information (container and blob name). -
webhook
- this module acts as a webhook event subscription for the Azure EventGrid topic. It receives the event that thehandler
created, reads the event data containing the blob and container name, reads the blob from the storage account, then creates a new Azure Cosmos DB collection using the blob bytes. -
tf
- this is a separate example that performs computer vision inferencing using the MobileNetV2 model, run using the Sonos Tract crate. The module reads the image data from the request body, and first checks the configured Azure Cosmos DB collection if the image's content digest has already been classified previously. If so, it returns the result from the cache. Otherwise, it will run the TensorFlow model on the incoming image, write the result to the cache, then return it.
The following tools are required to build and run the samples:
wagi
, built from this branchjust
- Rust and Cargo, with the
wasm32-wasi
target configured wasm-opt
from Binaryenwasmtime
0.26+ (for compiling the modules to the current platform - this step is optional)
$ rustup target add wasm32-wasi
$ just build
cargo build --release --target wasm32-wasi --bin handler
Finished release [optimized] target(s) in 0.09s
cargo build --release --target wasm32-wasi --bin webhook
Finished release [optimized] target(s) in 0.09s
wasm-opt target/wasm32-wasi/release/handler.wasm -O4 -o target/wasm32-wasi/release/handler.wasm
wasm-opt target/wasm32-wasi/release/webhook.wasm -O4 -o target/wasm32-wasi/release/webhook.wasm
wasmtime compile -O target/wasm32-wasi/release/handler.wasm -o target/wasm32-wasi/release/handler.wasmc
wasmtime compile -O target/wasm32-wasi/release/webhook.wasm -o target/wasm32-wasi/release/webhook.wasmc
Before running the sample, the modules, the following have to be configured
(create a new wagi.toml
file with the values below):
- the Storage, EventGrid, and Cosmos DB keys and accounts
- the proper allowed hosts where the modules are allowed to make outbound requests to - these have to be the URL of Azure services (if no allowed hosts are defined for a given module, it is not allowed to make any outbound request).
- the
webhook
module has to be publicly available, so that EventGrid can send requests. Then, its endpoint (https://<endpoint-for-wagi>/eventgrid-webhook
) has to be configured as a webhook subscription for the EventGrid topic where thehandler
sends messages (a tutorial on how to configure them through the portal can be found here).
[[module]]
# host = "public host"
route = "/handler"
module = "target/wasm32-wasi/release/handler.wasm"
environment = { STORAGE_ACCOUNT = "<sa>", STORAGE_MASTER_KEY = "<sa-key>", TOPIC_HOST_NAME = "<host>", TOPIC_KEY = "<host-key>" }
allowed_hosts = ["https://<storage>.blob.core.windows.net", "https://<storage>.<location>.eventgrid.azure.net"]
[[module]]
# host = "public host"
route = "/eventgrid-webhook"
module = "target/wasm32-wasi/release/webhook.wasm"
environment = { STORAGE_ACCOUNT = "<sa>", STORAGE_MASTER_KEY = "<sa-key>", COSMOS_MASTER_KEY= "<key>", COSMOS_ACCOUNT= "<account>", COSMOS_DATABASE = "<database>", COSMOS_COLLECTION = "<collection>" }
allowed_hosts = ["https://<storage>.blob.core.windows.net", "https://<cosmos>.documents.azure.com"]
Note that the public endpoint can be temporarily configured through a service like Ngrok.
If Wasmtime was used to compile the modules for the current platform, the extension for the modules in the WAGI config has to be changed to
.wasmc
(this is to distinguish the modules compiled for the current platform, and is totally optional and non-standard).
Start the server:
$ just run
wagi --config wagi.toml
Then, from another terminal instance:
$ curl '<endpoint>/handler?container=<container-name>&blob=<blob-name>' -X POST -d 'Some string data'
Writing 16 bytes.
Sent message to host https://<topic>.westus2-1.eventgrid.azure.net
This will execute handler
module, which creates the blob in storage and sends
the message on the configured topic, which generates a new webhook handled by
the webhook
module, which reads the event data, reads the blob bytes, then
creates a new collection in the database.
If everything worked properly, a new collection should have been created in Azure Cosmos DB containing the request data:
{
"id": "1619945329548",
"value": "Some string data"
}
Note that this is just an example. The performance and latency seen here can be improved by a wide range of options, such as not waiting to write the cache before returning the result (potentially writing a message to EventGrid so its handler can write the cache).
This sample requires that the Cosmos DB account, key, database, and collection
environment variables be set in wagi.toml
:
[[module]]
route = "infer"
module = "target/wasm32-wasi/release/tf.wasmc"
environment = { COSMOS_MASTER_KEY= "<key>", COSMOS_ACCOUNT= "<account>", COSMOS_DATABASE = "<database>", COSMOS_COLLECTION = "<collection>" }
allowed_hosts = ["https://<cosmos>.documents.azure.com"]
volumes = { "/" = "./data" }
Then, after starting the server, new images can be classified by making requests
to the /infer
endpoint:
$ time curl -X POST --data-binary "@golden-retriever.jpeg" localhost:3000/infer
The image represents a golden retriever, with 72.71024% accuracy
curl -X POST --data-binary "@golden-retriever.jpeg" localhost:3000/infer 0.00s user 0.00s system 0% cpu 0.945 total
The first time an image content digest is encountered, the inferencing is performed locally, the result written to the cache, then returned. Subsequent requests with the same image data are served directly from the cache:
$ time curl -X POST --data-binary "@golden-retriever.jpeg" localhost:3000/infer
The image represents a golden retriever, with 72.71024% accuracy
curl -X POST --data-binary "@golden-retriever.jpeg" localhost:3000/infer 0.00s user 0.00s system 2% cpu 0.189 total
WAGI uses Wasmtime to instantiate modules that are targeting the WebAssembly
System Interface (i.e. wasm32-wasi
). Additionally, WAGI also uses the
wasi-experimental-http
crate to enable outbound HTTP
requests. Finally, the samples are using a branch of the Azure Rust
SDK that is compilable to WASI.