问题一:在阿里函数计算里这是什么情况,正常使用呢,突然就不管用,测试就报这个错误怎么办?
在阿里函数计算里FunctionCompute python3 runtime inited.
FC Invoke Start RequestId: 1-656c078f-9a0dcabc96fc7ba1dd85382a
2023-12-03 12:44:01 Bfans 读取配置文件失败,请检查配置文件格式是否正确: Expecting value: line 1 column 1 (char 0)
FC Invoke End RequestId: 1-656c078f-9a0dcabc96fc7ba1dd85382a, Error: Process exited unexpectedly before completing request (duration: 481ms, maxMemoryUsage: 26MB)这是什么情况,正常使用呢,突然就不管用,测试就报这个错误
参考回答:
函数执行异常退出,报错Process exited unexpectedly before completing request怎么办?https://help.aliyun.com/zh/fc/support/how-to-handle-the-process-exited-unexpectedly-before-completing-request-error?spm=a2c4g.11186623.0.i298
函数执行异常退出,可能存在以下问题,你可以根据不同问题采取不同的措施。
函数本身逻辑错误,多见于下游数据库问题,示例代码如下。您可以增加日志功能,根据日志调试解决。
-- coding: utf-8 --
import os
def handler(event, context):
os._exit(-1)
return 'hello world'
如果您的函数是Custom Runtime或者Custom Container函数,可能创建HTTP Server时,Connection未设置为Keep-Alive,且函数的执行超时时间小于15分钟。更多信息,请参见HTTP Server配置要求。
关于本问题的更多回答可点击原文查看:https://developer.aliyun.com/ask/578179
问题二:在阿里函数计算里这是哪里配置错了吗?
在阿里函数计算里这是哪里配置错了吗?{"ErrorCode": "FunctionNotStarted", "ErrorMessage":"Function instance health check failed on port 9000 in 120 seconds. \nlogs:
参考回答:
报错排查
函数实例健康检查失败,一般是代码中监听的IP地址或者端口设置错误导致。函数实例启动后,平台会根据函数配置的端口进行4层连通性检查,若在超时时间内检查不通过,则返回Function instance health check failed报错。
监听地址和端口必须满足以下条件。
监听地址
代码中的监听IP地址必须设置为0.0.0.0或*,不能设置为127.0.0.0或localhost。
监听端口
监听端口必须和函数配置中的端口保持一致。Custom Runtime运行时默认监听端口为9000。
如果使用默认端口,请确保代码中HTTP Server监听的端口也是9000。
如果设置了监听端口,请确保代码中HTTP Server监听的端口与其一致。
https://help.aliyun.com/zh/fc/user-guide/troubleshooting?spm=a2c4g.11186623.0.i312
关于本问题的更多回答可点击原文查看:https://developer.aliyun.com/ask/578163
问题三:在阿里函数计算里这个是什么意思?
在阿里函数计算里这个是什么意思?{"ErrorCode":"InvalidArgument","ErrorMessage":"Mount NFS://mount_points:\u003cserver_addr:\"085a14830c-ivu83.cn-hangzhou.nas.aliyuncs.com:/fc-stable-diffusion-plus\" mount_dir:\"/mnt/auto\" \u003e command failed with output = Function instance exited unexpectedly(code 128, message:key has been revoked) with start command './server '..failed to create task and network: Failed to Create Container: container create\n\nCaused by:\n rpc status: code: INTERNAL message: \"add_storages [driver: \\"erofs\\" source: \\"nodev\\" fstype: \\"erofs\\" options: \\"bootstrap_path=/run/kata-containers/shared/containers/rafs/c-656ea358-6e1e68321f124c69a31d/bootstrap/image.boot\\" options: \\"blob_dir_path=/run/kata-containers/shared/containers/rafs/c-656ea358-6e1e68321f124c69a31d/blob_cache_dir\\" options: \\"user_xattr\\" mount_point: \\"/run/builtin_wlayer/c-656ea358-6e1e68321f124c69a31d/lower\\", driver: \\"overlay\\" driver_options: \\"rootfs_over_builtin\\" source: \\"c-656ea358-6e1e68321f124c69a31d-rootfs\\" fstype: \\"overlay\\" options: \\"lowerdir=/run/builtin_wlayer/c-656ea358-6e1e68321f124c69a31d/lower\\" options: \\"upperdir=/run/builtin_wlayer/c-656ea358-6e1e68321f124c69a31d/upper\\" options: \\"workdir=/run/builtin_wlayer/c-656ea358-6e1e68321f124c69a31d/work\\" options: \\"userxattr\\" options: \\"volatile\\" mount_point: \\"/run/kata-containers/shared/containers/passthrough/c-656ea358-6e1e68321f124c69a31d/rootfs\\", driver: \\"overlay\\" driver_options: \\"dir_over_builtin\\" source: \\"overlay\\" fstype: \\"overlay\\" options: \\"lowerdir=/run/kata-containers/shared/containers/rafs/c-656ea358-1a7e8c3a-rafs:/run/kata-containers/shared/containers/rafs/c-656ea358-5905b7d3-rafs\\" options: \\"upperdir=/run/builtin_wlayer/c-656ea358/fc_lang_layer/upper/\\" options: \\"workdir=/run/builtin_wlayer/c-656ea358/fc_lang_layer/work/\\" options: \\"volatile\\" mount_point: \\"/run/builtin_wlayer/c-656ea358/fc_lang_layer/oci_mount/\\", driver: \\"overlay\\" driver_options。
参考回答:
一般是欠费导致的nas挂载失败。可以充值一块钱 然后等会就能恢复了。
关于本问题的更多回答可点击原文查看:https://developer.aliyun.com/ask/578151
问题四:在阿里函数计算里我在FC上创建了一个egg应用,然后请求post接口时候 报错怎么解决?
在阿里函数计算里我在FC上创建了一个egg应用,然后请求post接口时候 报unauthorized method 'POST' 错误怎么解决呢?
参考回答:
触发器中有post。
关于本问题的更多回答可点击原文查看:https://developer.aliyun.com/ask/578145
问题五:在阿里函数计算里为啥这个接口访问报错?
在阿里函数计算里为啥这个接口访问报错?("ErrorCode":"CAExited", "ErrorMessage":"Functioninstance exited unexpectedly (code 1. message:operation not permitted) with start command ’-Dserver.port=9000 -jar thrgel/springboot-demo 0.0.1-SNAPSHOT.jar’.\nLogs:")
参考回答:
从报错日志中可以找到原因Error: Cannot find module '/code/not_exist_file.js',即/code/not_exist_file.js不存在。报错的退出码为code 1, message:operation not permitted。
当实例启动命令为node ./not_exist_file.js时,报错类似。https://help.aliyun.com/zh/fc/user-guide/troubleshooting?spm=a2c4g.11186623.0.i335
关于本问题的更多回答可点击原文查看:https://developer.aliyun.com/ask/578142