An I/O error occurred while sending to the backend
现象
GreenPlum偶尔会报错“An I/O error occurred while sending to the backend”
分析
网上可能原因:
1、DML条数过多,请分批插入。
2、SQL语句参数上限,SQL拼接过长
3、启用了同步复制
4、和Nginx转发有关(请配置长连接)
解决
配置Nginx转发的长连接:
1 2 | proxy_connect_timeout 10s; proxy_timeout 3600s; |