Message-ID: From: "pantam-bhaskar (@pantam-bhaskar)" To: "pgjdbc/pgjdbc" Date: Tue, 05 Aug 2025 09:01:46 +0000 Subject: Re: [pgjdbc/pgjdbc] issue #3530: JDBC Shared Timer set to cancelled In-Reply-To: References: List-Id: X-GitHub-Author-Login: pantam-bhaskar X-GitHub-Comment-Id: 3154198771 X-GitHub-Comment-Type: issue_comment X-GitHub-Edited-At: 2025-08-05T09:06:45Z X-GitHub-Issue: 3530 X-GitHub-Repo: pgjdbc/pgjdbc X-GitHub-Type: comment X-GitHub-Url: https://github.com/pgjdbc/pgjdbc/issues/3530#issuecomment-3154198771 Content-Type: text/plain; charset=utf-8 > Do you also have a corresponding OOM Exception ? Hi @davecramer No, we haven't encountered OOM Exception but I found I/O Exception before "Timer already cancelled" Exception. ``` Caused by: org.postgresql.util.PSQLException: An I/O error occurred while sending to the backend. at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:399) at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:517) at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:434) at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:356) at org.postgresql.jdbc.PgStatement.executeCachedSql(PgStatement.java:341) at org.postgresql.jdbc.PgStatement.executeWithFlags(PgStatement.java:317) at org.postgresql.jdbc.PgStatement.executeQuery(PgStatement.java:266) at com.org.datamanger.query.execution.JdbcExternalQueryExecutorImpl.fetchResultSet(JdbcExternalQueryExecutorImpl.java:1050) at com.org.datamanger.query.execution.JdbcExternalQueryExecutorImpl.executeQuery(JdbcExternalQueryExecutorImpl.java:166) ... 8 common frames omitted Caused by: java.io.EOFException: null at org.postgresql.core.PGStream.receiveChar(PGStream.java:478) at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2174) at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:372) ... 16 common frames omitted ```