PSQLException: An I/O error occurred while sending to the backend.
- java项目定时任务执行耗时很长的sql语句(很多条sql,从很多表中,很多数据中查询,处理)总之,耗时很长(PG数据库)。报错I/O error,Caused by : java.net.SocketTimeoutException: Read time out
- 场景
- 报错截图
- 解决办法
- 题外话
org.postgresql.util.PSQLException: An I/O error occurred while sending to the backend.
java项目定时任务执行耗时很长的sql语句(很多条sql,从很多表中,很多数据中查询,处理)总之,耗时很长(PG数据库)。报错I/O error,Caused by : java.net.SocketTimeoutException: Read time out
在实际项目中,执行定时任务报错,使用的PG数据库,运行时报 I/O error,Caused by : java.net.SocketTimeoutException: Read time out
场景
java后台配置多定时任务,处理耗时很长的sql查询处理:
- 定时任务执行耗时很长的sql ;
- 定时任务很多,有30多个,多事操作数据库查询,入临时表、处理完入正式表,删除临时表 ;
- 多系统共用一个数据库,夜里都有数据处理,数据同步等频繁操作数据库的问题 ;