Marco
Marco
### 1. background In my case, i want to limit the max memory that the *.wasm file can use, if it reached the limit, it can crash by OOM. it's...
# 1. Background Currently, Layotto supports load and run *.wasm files by integrating [wasmer-go](https://github.com/wasmerio/wasmer-go) and [wasmer](https://github.com/wasmerio/wasmer), now we want to support [wasmtime](https://github.com/bytecodealliance/wasmtime) as another WebAssembly Runtime. # 2. Why is...
# 1. Background In a FaaS scenario, Layotto supports loading and running multiple wasm-based functions at the same time. WebAssembly ensures that multiple functions run in the same process without...
# 1. Background At present, the API that Layotto interacts with wasm functions is a set of specifications defined by proxy-wasm. The official description of the project is shown in...
This issue will participate in the [chinese GLCC activity](https://mp.weixin.qq.com/s/yBem9JTrPI5OKWqunUQWAQ) . So I wrote it in chinese: ## 1、题目描述 为 Layotto 的集成测试增加更多的组件以及覆盖更多的 API 特性。 ## 2、编码任务 - [ ] 在启动配置文件中增加`etcd`、`zookeeper`等组件的配置 -...
### 1. Background 1. istio is a famous implementation of ServiceMesh, using Envoy as the data plane by default. 2. mosn can be integrated with istio as an alternative data...
### 1. What would you like to be added At present, each runtime API in layotto has multiple implementations, such as' lock API 'and' consumer ',' etcd ',' redis' and...
### 1. background In my case, i want to limit the max memory that the *.wasm file can use, if it reached the limit, it can crash by OOM. it's...
### 背景 目前 Layotto 的 Go SDK 放在 https://github.com/mosn/layotto/tree/main/sdk/go-sdk ,功能比较简单,而且扩展性有限,不足以支撑用户在生产环境使用。 ### 希望做什么 希望基于上述 sdk 开发一个能力更完善,扩展性更强,满足用户在生产环境使用的全新版本,并且放在独立的仓库下面: https://github.com/layotto/go-sdk ### 可能涉及的工作 1. 全新的 Go sdk 开发 2. 完善的单元测试 3. 适配现有的集成测试模块:https://github.com/mosn/layotto/blob/main/sdk/go-sdk/test/runtime/integrate_test.sh *** ### Background...
# 1. Background The wit-bindgen project officially provided by WebAssembly can enable better interaction between the wasm module and the runtime, avoiding the development of various data conversion logics, and...