正常运行7个月后,部分表格出现network error

测试了有2个表格是network error 的,其他表格都正常,要如何排查?

nginx 缓存设置多大?磁盘剩余空间有多少?

谢谢 发现问题了磁盘空间不足

你说的 nginx缓存设置 在哪设?

可以参考如下配置,设置缓存
nginx.conf

location /frontProxy/ {
    proxy_pass http://xx.xx.xx.xxx:8088/;
    # 新增如下
    proxy_buffer_size 1024k;
    proxy_buffers 16 1024k;
    proxy_busy_buffers_size 2048k;
    proxy_temp_file_write_size 2048k;
}

谢谢 试下看能否解决