SquatsTonight

Results 10 issues of SquatsTonight

local API invoke 时,若 event 函数的 callback 内容过大,则会报错,问题复现步骤可见 [这里](https://github.com/git-qfzhang/fun-local-invoke-large-callback-problem)

在部署 trigger 时,s 工具不会对 invocation role 的存在性进行检查,导致用户可能最终部署成功,但是触发失败,而触发行为是第三方云产品的行为,因此用户无法感知到触发的错误。 上述问题是我在部署 sls 触发器时遇到的,由于 invocation role 不存在,但是部署成功,最终触发一直不生效,询问 sls 的同学查看 sls 后端日志才定位到问题,因此 s 工具是否可以增加 invocation role 的存在性检查

缺失的指标请参考控制台的监控大盘指标

## 介绍 目前端云联调已经能够支持挂载用户指定的 NAS 到本地的运行环境,需要通过文档来指导用户进行挂载操作。通过该能力能够帮助用户直接将远端 NAS 挂载到本地!

documentation

![image](https://user-images.githubusercontent.com/52195264/138658659-bcc35e35-4010-41bf-b022-7743a7238f42.png)

enhancement

保持本地调试环境与线上一致,基于 torchserve 发现了一处不一致的地方,首先看配置: ```yaml customContainerConfig: image: registry.cn-hangzhou.aliyuncs.com/yhr-work/torchserve command: '["torchserve"]' args: '["--start","--ncs","--model-store","model-store","--models","densenet161.mar"]' ``` 上述配置在本地调试能跑通,但是线上会出现 ca 启动超时问题,而将配置改为如下后,线上线下运行都没问题: ```yaml customContainerConfig: image: registry.cn-hangzhou.aliyuncs.com/yhr-work/torchserve command: '["/usr/local/bin/dockerd-entrypoint.sh"]' args: '["torchserve", "--start", "--ncs", "--model-store", "model-store", "--models", "densenet161.mar"]' ```...

bug