本文作者:Michael Yuan,WasmEdge Maintainer

本文源发自 infoQ.com,链接:https://www.infoq.com/articles/webassembly-dapr-wasmedge/

本文要点:

  • Dapr 是功能强大的构建微服务的框架。
  • WebAssembly VM,如 WasmEdge,为微服务应用程序提供高性能且安全的 runtime。
  • 基于WebAssembly的微服务可以用多种编程语言编写,包括Rust、C/C++、Swift 和JavaScript。
  • WebAssembly 程序嵌入到Dapr sidecar 应用程序中,因此对 Dapr主机环境来说是可移植且跨平台的。
  • WasmEdge SDK 为 Tensorflow 推理构建微服务提供了一种简单方法。

自 2019 年发布以来,Dapr(Distributed Application runtime )已迅速成为非常流行的构建微服务的开源框架。它提供了分布式应用程序中常用的构建块和已打包的服务,例如服务调用、状态管理、消息队列、资源绑定和触发器、mTLS 安全连接和服务监控。分布式应用程序开发者可以在 runtime 利用和使用这些基于 Web 的 API,这些 API 是由构建块公开的。这些应用程序通常称为微服务并作为 sidecar 运行。 Dapr 是多 runtime 微服务架构的一个例子,正如 InfoQ 作者 Bilgin Ibryam 所描述的那样。

Dapr 的 sidecar 模式非常像服务网格(Service Mesh)。然而,不同于传统服务网格意在无需任何代码更改即可管理应用程序,Dapr 应用程序需要集成并积极利用外部 Dapr 构建块服务。

Dapr Sidecar 中的微服务应用程序可以是用 Go 和 Rust 等语言编译的本地客户端 (NaCl) 应用程序,也可以是用 Python 或 JavaScript 编写的托管语言应用程序。换句话说,sidecar 应用程序可以有自己的语言 runtime。 Sidecar 模型允许 Dapr 为其应用程序支持“在任何地方任何语言、任何框架、任何地方”。

WebAssembly 和 WasmEdge

Dapr 可以直接在操作系统上运行 sidecar 应用程序,也可以通过 Docker 等应用程序容器运行。容器提供了可移植性、易于部署和安全性等优点,但它也伴随着庞大的开销。

在本文中,我们提出了一种运行 Dapr sidecar 应用程序的新方法。我们使用一个用 Rust 或 Go 编写的简单 NaCl 来监听对微服务的 API 请求。它将请求数据传递给 WebAssembly runtime 处理。微服务的业务逻辑是由应用程序开发者创建和部署的 WebAssembly 函数。

在本文发布时,你已经可以使用 WasmEdge WASI Socket 来处理网络请求了。具体请见 https://github.com/second-state/dapr-wasm

SecondState | Dapr的一个轻量安全可移植且高性能的Runtime - 图1

图 1. 有 WebAssembly 函数的 Dapr 微服务。

WebAssembly runtime 非常适合执行业务逻辑函数。

  • WebAssembly 程序可以像编译后的机器原生二进制文件一样快速运行,并且比容器消耗更少的资源。
  • WebAssembly 支持高性能语言,如 C/C++、Rust、Swift 和 Kotlin。它还可以支持高级语言,如 JavaScript 和 DSL(Domain Specific Languages)。
  • WebAssembly 程序是可移植的,可以轻松部署在不同的操作系统和硬件平台上。
  • WebAssembly 提供了一个在 runtime 层级隔离应用程序的安全沙箱。开发者可以通过声明安全策略来限制程序对操作系统或其他资源的访问。

下表总结了 sidecar 应用程序不同方法的优缺点。

SecondState | Dapr的一个轻量安全可移植且高性能的Runtime - 图2

WasmEdge 是由 CNCF(云原生计算基金会)/Linux 基金会托管的领先云原生 WebAssembly runtime。它是当今市场上最快的 WebAssembly runtime 之一。 WasmEdge 支持所有标准的 WebAssembly 扩展以及 Tensorflow 推理、KV 存储和图像处理、Socket 等专有扩展。其编译器工具链不仅支持 C/C++、Rust、Swift、Kotlin 和 AssemblyScript 等 WebAssembly 语言,还支持 常规 JavaScript

WasmEdge 应用程序可以嵌入到 C 程序、 Go 程序、Rust 程序、JavaScript 程序或操作系统的 CLI 中。Runtime 可以通过 Docker 工具(例如 CRI-O)、编排工具(例如 K8s)、serverless 平台(例如 VercelNetlifyAWS Lambda腾讯 SCF)和数据流框架(例如 YoMo 和 Zenoh)进行管理。

本文中,我将演示如何使用 WasmEdge 作为 Dapr 的 sidecar 应用程序 runtime。

SecondState | Dapr的一个轻量安全可移植且高性能的Runtime - 图3

快速开始

首先你需要安装 GoRustDaprWasmEdgerustwasmc 编译器工具。

接下来,从 Github fork 或 clone demo 应用程序。你可以将此 Repo 用作应用程序模板。

  1. $ git clone https://github.com/second-state/dapr-wasm

该演示有 3 个 Dapr sidecar 应用程序。

  • web-port 项目为静态 HTML 页面提供公共 Web 服务。这是应用程序的 UI。
  • image-api-rs 项目提供了一个 WasmEdge 微服务,使用 grayscale函数将输入图像转换为 grayscale 图像。它演示了将 Rust SDK 用于 Dapr 和 WasmEdge。
  • image-api-go 项目提供了一个 WasmEdge 微服务,使用分类函数对输入图像上的对象进行识别和分类。它演示了 Go SDK 对 Dapr 和 WasmEdge 的使用。

SecondState | Dapr的一个轻量安全可移植且高性能的Runtime - 图4

图 2. 演示应用程序中的 Dapr Sidecar 微服务

你可以根据 README 中的指示启动 sidecar 服务。 下面是构建 WebAssembly 函数和启动 3 个 sidecar 服务的命令。

  1. # Build the classify and grayscale WebAssembly functions, and deploy them to the sidecar projects
  2. $ cd functions/grayscale
  3. $ ./build.sh
  4. $ cd ../../
  5. $ cd functions/classify
  6. $ ./build.sh
  7. $ cd ../../
  8. # Build and start the web service for the application UI
  9. $ cd web-port
  10. $ go build
  11. $ ./run_web.sh
  12. $ cd ../
  13. # Build and start the microservice for image processing (grayscale)
  14. $ cd image-api-rs
  15. $ cargo build
  16. $ ./run_api_rs.sh
  17. $ cd ../
  18. # Build and start the microservice for tensorflow-based image classification
  19. $ cd image-api-go
  20. $ go build --tags "tensorflow image"
  21. $ ./run_api_go.sh
  22. $ cd ../

最后,你应该能在浏览器中看到这个 Web UI。

SecondState | Dapr的一个轻量安全可移植且高性能的Runtime - 图5

图三 生产环境的 demo 应用程序

两个 WebAssembly 函数

我们有两个用 Rust 编写并编译成 WebAssembly 的函数。 它们部署在 sidecar 微服务中,以执行图像处理和分类的实际工作。

虽然我们的示例 WebAssembly 函数是用 Rust 编写的,但你也可以将用 C/C++、Swift、Kotlin 和 AssemblyScript 编写的函数编译为 WebAssembly。 WasmEdge 还为用 JavaScript 和 DSL 编写的函数提供支持。

grayscale函数是一个 Rust 程序,它从 STDIN 读取图像数据并将 Grayscale 图像写入 STDOUT

  1. use image::{ImageFormat, ImageOutputFormat};
  2. use std::io::{self, Read, Write};
  3. fn main() {
  4. let mut buf = Vec::new();
  5. io::stdin().read_to_end(&mut buf).unwrap();
  6. let image_format_detected: ImageFormat = image::guess_format(&buf).unwrap();
  7. let img = image::load_from_memory(&buf).unwrap();
  8. let filtered = img.grayscale();
  9. let mut buf = vec![];
  10. match image_format_detected {
  11. ImageFormat::Gif => {
  12. filtered.write_to(&mut buf, ImageOutputFormat::Gif).unwrap();
  13. }
  14. _ => {
  15. filtered.write_to(&mut buf, ImageOutputFormat::Png).unwrap();
  16. }
  17. };
  18. io::stdout().write_all(&buf).unwrap();
  19. io::stdout().flush().unwrap();
  20. }

我们使用 rustwasmc 来 build 它并将其复制到 image-api-rs sidecar。

  1. $ cd functions/grayscale
  2. $ rustup override set 1.50.0
  3. $ rustwasmc build --enable-ext
  4. $ cp ./pkg/grayscale.wasm ../../image-api-rs/lib

分类函数是一个 Rust 函数,它以图像数据的字节数组作为输入并返回用于分类的字符串。 它使用 WasmEdge TensorFlow API

  1. use wasmedge_tensorflow_interface;
  2. pub fn infer_internal(image_data: &[u8]) -> String {
  3. let model_data: &[u8] = include_bytes!("models/mobilenet_v1_1.0_224/mobilenet_v1_1.0_224_quant.tflite");
  4. let labels = include_str!("models/mobilenet_v1_1.0_224/labels_mobilenet_quant_v1_224.txt");
  5. let flat_img = wasmedge_tensorflow_interface::load_jpg_image_to_rgb8(image_data, 224, 224);
  6. let mut session = wasmedge_tensorflow_interface::Session::new(
  7. &model_data,
  8. wasmedge_tensorflow_interface::ModelType::TensorFlowLite,
  9. );
  10. session
  11. .add_input("input", &flat_img, &[1, 224, 224, 3])
  12. .run();
  13. let res_vec: Vec<u8> = session.get_output("MobilenetV1/Predictions/Reshape_1");
  14. // ... Map the probabilities in res_vec to text labels in the labels file ...
  15. if max_value > 50 {
  16. format!(
  17. "It {} a <a href='https://www.google.com/search?q={}'>{}</a> in the picture",
  18. confidence.to_string(),
  19. class_name,
  20. class_name
  21. )
  22. } else {
  23. format!("It does not appears to be any food item in the picture.")
  24. }
  25. }

我们使用 rustwasmc 来 build 它然后将其复制到 image-api-go sidecar 中。

  1. $ cd functions/classify
  2. $ rustup override set 1.50.0
  3. $ rustwasmc build --enable-ext
  4. $ cp ./pkg/classify_bg.wasm ../../image-api-go/lib/classify_bg.wasm

在接下来三个章节中,我们会仔细看看这三个 sidecar 服务。

图片处理 sidecar

image-api-rs sidecar 应用程序是用 Rust 编写的。 它应该已经安装了上一步中的 WebAssembly 函数 lib/grayscale.wasm。 请参考 functions/bin/install.sh 脚本来安装 WasmEdge Runtime二进制 lib/wasmedge-tensorflow-lite 及其依赖项。

sidecar 微服务运行一个基于 Tokio 的事件 loop,监听路径 /api/image 传入的 HTTP 请求。

  1. #[tokio::main]
  2. pub async fn run_server(port: u16) {
  3. pretty_env_logger::init();
  4. let home = warp::get().map(warp::reply);
  5. let image = warp::post()
  6. .and(warp::path("api"))
  7. .and(warp::path("image"))
  8. .and(warp::body::bytes())
  9. .map(|bytes: bytes::Bytes| {
  10. let v: Vec<u8> = bytes.iter().map(|&x| x).collect();
  11. let res = image_process(&v);
  12. Ok(Box::new(res))
  13. });
  14. let routes = home.or(image);
  15. let routes = routes.with(warp::cors().allow_any_origin());
  16. let log = warp::log("dapr_wasm");
  17. let routes = routes.with(log);
  18. warp::serve(routes).run((Ipv4Addr::UNSPECIFIED, port)).await
  19. }

一旦它在 HTTP POST 请求中接收到图像文件,它就会调用 WasmEdge 中的 WebAssembly 函数来执行图像处理任务。 它创建了一个 WasmEdge 实例来与 WebAssembly 程序交互。

  1. pub fn image_process(buf: &Vec<u8>) -> Vec<u8> {
  2. let mut child = Command::new("./lib/wasmedge-tensorflow-lite")
  3. .arg("./lib/grayscale.wasm")
  4. .stdin(Stdio::piped())
  5. .stdout(Stdio::piped())
  6. .spawn()
  7. .expect("failed to execute child");
  8. {
  9. // limited borrow of stdin
  10. let stdin = child.stdin.as_mut().expect("failed to get stdin");
  11. stdin.write_all(buf).expect("failed to write to stdin");
  12. }
  13. let output = child.wait_with_output().expect("failed to wait on child");
  14. output.stdout
  15. }

下面的 Dapr CLI 命令行是在 Dapr runtime 环境启动该微服务。

  1. $ cd image-api-rs
  2. $ sudo dapr run --app-id image-api-rs \
  3. --app-protocol http \
  4. --app-port 9004 \
  5. --dapr-http-port 3502 \
  6. --components-path ../config \
  7. --log-level debug \
  8. ./target/debug/image-api-rs
  9. $ cd ../

Tensorflow sidecar

image-api-go sidecar 应用程序是用 Go 写的。它应该已经有了从前面那一步安装的 WebAssembly 函数 lib/classify_bg.wasm 。 请参考 functions/bin/install.sh 脚本安装 WasmEdge Runtime Go SDK。

sidecar 微服务运行一个事件 loop,监听路径 /api/image 传入的 HTTP 请求。

  1. func main() {
  2. s := daprd.NewService(":9003")
  3. if err := s.AddServiceInvocationHandler("/api/image", imageHandlerWASI); err != nil {
  4. log.Fatalf("error adding invocation handler: %v", err)
  5. }
  6. if err := s.Start(); err != nil && err != http.ErrServerClosed {
  7. log.Fatalf("error listenning: %v", err)
  8. }
  9. }

一旦它在 HTTP POST 请求中接收到图像文件,它就会调用 WasmEdge 中的 WebAssembly 函数来执行基于 Tensorflow 的图像识别任务。 它利用 WasmEdge 的 Go API 与 WebAssembly 程序交互。

  1. func imageHandlerWASI(_ context.Context, in *common.InvocationEvent) (out *common.Content, err error) {
  2. image := in.Data
  3. var conf = wasmedge.NewConfigure(wasmedge.REFERENCE_TYPES)
  4. conf.AddConfig(wasmedge.WASI)
  5. var vm = wasmedge.NewVMWithConfig(conf)
  6. var wasi = vm.GetImportObject(wasmedge.WASI)
  7. wasi.InitWasi(
  8. os.Args[1:], /// The args
  9. os.Environ(), /// The envs
  10. []string{".:."}, /// The mapping directories
  11. []string{}, /// The preopens will be empty
  12. )
  13. /// Register WasmEdge-tensorflow and WasmEdge-image
  14. var tfobj = wasmedge.NewTensorflowImportObject()
  15. var tfliteobj = wasmedge.NewTensorflowLiteImportObject()
  16. vm.RegisterImport(tfobj)
  17. vm.RegisterImport(tfliteobj)
  18. var imgobj = wasmedge.NewImageImportObject()
  19. vm.RegisterImport(imgobj)
  20. vm.LoadWasmFile("./lib/classify_bg.wasm")
  21. vm.Validate()
  22. vm.Instantiate()
  23. res, err := vm.ExecuteBindgen("infer", wasmedge.Bindgen_return_array, image)
  24. ans := string(res.([]byte))
  25. vm.Delete()
  26. conf.Delete()
  27. out = &common.Content{
  28. Data: []byte(ans),
  29. ContentType: in.ContentType,
  30. DataTypeURL: in.DataTypeURL,
  31. }
  32. return out, nil
  33. }

下面的 Dapr CLI 命令行是在Dapr runtime 环境启动微服务。

  1. $ cd image-api-go
  2. $ sudo dapr run --app-id image-api-go \
  3. --app-protocol http \
  4. --app-port 9003 \
  5. --dapr-http-port 3501 \
  6. --log-level debug \
  7. --components-path ../config \
  8. ./image-api-go
  9. $ cd ../

The web UI sidecar

Web UI 服务 web-port 是一个用 Go 编写的简单 Web 服务器。 它位于 static 文件时,提供静态 HTML 和 JavaScript 文件,并将上传到 /api/hello 的图像发送到 Grayscale 函数或对 Classify sidecar 的 /api/image 端点。

  1. func main() {
  2. http.HandleFunc("/static/", staticHandler)
  3. http.HandleFunc("/api/hello", imageHandler)
  4. println("listen to 8080 ...")
  5. log.Fatal(http.ListenAndServe(":8080", nil))
  6. }
  7. func staticHandler(w http.ResponseWriter, r *http.Request) {
  8. // ... read and return the contents of HTML CSS and JS files ...
  9. }
  10. func imageHandler(w http.ResponseWriter, r *http.Request) {
  11. // ... ...
  12. api := r.Header.Get("api")
  13. if api == "go" {
  14. daprClientSend(body, w)
  15. } else {
  16. httpClientSend(body, w)
  17. }
  18. }
  19. // Send to the image-api-go sidecar (classify) via the Dapr API
  20. func daprClientSend(image []byte, w http.ResponseWriter) {
  21. // ... ...
  22. resp, err := client.InvokeMethodWithContent(ctx, "image-api-go", "/api/image", "post", content)
  23. // ... ...
  24. }
  25. // Send to the image-api-rs sidecar (grayscale) via the HTTP API
  26. func httpClientSend(image []byte, w http.ResponseWriter) {
  27. // ... ...
  28. req, err := http.NewRequest("POST", "http://localhost:3502/v1.0/invoke/image-api-rs/method/api/image", bytes.NewBuffer(image))
  29. // ... ...
  30. }

page.js 中的 JavaScript 只是将图像上传到 web-port sidecar 的 /api/hello 端点,web-port 将根据 request header api 请求分类或 Grayscale 微服务。

  1. function runWasm(e) {
  2. const reader = new FileReader();
  3. reader.onload = function (e) {
  4. setLoading(true);
  5. var req = new XMLHttpRequest();
  6. req.open("POST", '/api/hello', true);
  7. req.setRequestHeader('api', getApi());
  8. req.onload = function () {
  9. // ... display results ...
  10. };
  11. const blob = new Blob([e.target.result], {
  12. type: 'application/octet-stream'
  13. });
  14. req.send(blob);
  15. };
  16. console.log(image.file)
  17. reader.readAsArrayBuffer(image.file);
  18. }

以下 Dapr CLI 命令启动静态 UI 文件的 Web 服务。

  1. $ cd web-port
  2. $ sudo dapr run --app-id go-web-port \
  3. --app-protocol http \
  4. --app-port 8080 \
  5. --dapr-http-port 3500 \
  6. --components-path ../config \
  7. --log-level debug \
  8. ./web-port
  9. $ cd ../

完成了。你现在得到一个有三个部分的分布式应用,并且是用两种语言编写的。

接下来

正如我们所展示的,Dapr 的分布式网络 runtime 和 WasmEdge 的通用语言 runtime 之间有很多协同。 这种方法可以推广并应用于其他服务网格或分布式应用程序框架。与 Dapr 不同,许多服务网格只能在 Kubernetes 作为其控制平面运行,因此依赖于 Kubernetes API。 WasmEdge 是一个与 Kubernetes 兼容的 runtime,可以作为运行微服务的轻量级容器替代方案,起到举足轻重的作用。 敬请关注!