1. ホーム
  2. java

[解決済み] SQLエラーです。0, SQLState: 08006

2022-02-01 07:01:32

質問

私は、Hibernate接続を持つWebアプリケーションを持っています。時々、ログに以下のような例外が表示されることがあります。

Caused by: **org.postgresql.util.PSQLException: An I/O error occured while sending to the backend.**
at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:283)
at org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:479)
at org.postgresql.jdbc2.AbstractJdbc2Statement.executeWithFlags(AbstractJdbc2Statement.java:353)
at org.postgresql.jdbc2.AbstractJdbc2Statement.executeQuery(AbstractJdbc2Statement.java:252)
at org.apache.commons.dbcp.DelegatingStatement.executeQuery(DelegatingStatement.java:208)
at org.apache.commons.dbcp.DelegatingStatement.executeQuery(DelegatingStatement.java:208)
at org.geotools.jdbc.JDBCFeatureReader.<init>(JDBCFeatureReader.java:150)
at org.geotools.jdbc.JDBCFeatureSource.getReaderInternal(JDBCFeatureSource.java:567)
... 101 more
**Caused by: java.io.EOFException**
at org.postgresql.core.PGStream.ReceiveChar(PGStream.java:261)
at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:1620)
at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:257)






Caused by: org.postgresql.util.PSQLException: **An I/O error occured while sending to the backend.**
at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:283)
at org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:479)
at org.postgresql.jdbc2.AbstractJdbc2Statement.executeWithFlags(AbstractJdbc2Statement.java:353)
at org.postgresql.jdbc2.AbstractJdbc2Statement.executeQuery(AbstractJdbc2Statement.java:252)
at org.apache.commons.dbcp.DelegatingStatement.executeQuery(DelegatingStatement.java:208)
at org.apache.commons.dbcp.DelegatingStatement.executeQuery(DelegatingStatement.java:208)
at org.geotools.jdbc.JDBCFeatureReader.<init>(JDBCFeatureReader.java:150)
at org.geotools.jdbc.JDBCFeatureSource.getReaderInternal(JDBCFeatureSource.java:567)
... 101 more
**Caused by: java.net.SocketException: Connection reset**
at java.net.SocketInputStream.read(Unknown Source)
at java.net.SocketInputStream.read(Unknown Source)
at org.postgresql.core.VisibleBufferedInputStream.readMore(VisibleBufferedInputStream.java:135)
at org.postgresql.core.VisibleBufferedInputStream.ensureBytes(VisibleBufferedInputStream.java:104)
at org.postgresql.core.VisibleBufferedInputStream.read(VisibleBufferedInputStream.java:73)
at org.postgresql.core.PGStream.ReceiveChar(PGStream.java:259)
at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:1620)
at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:257)

何が問題なのでしょうか?ハイバーネートの設定ファイルで何か変更する必要があるのか、またはコードに問題があるのか。あなたの提案を教えてください。

私のハイバーネートの設定は以下の通りです。

<property name="hibernate.c3p0.min_size">5</property>
    <property name="hibernate.c3p0.max_size">20</property>
    <property name="hibernate.c3p0.timeout">5000</property>
    <property name="hibernate.c3p0.max_statements">0</property>
    <property name="hibernate.c3p0.idle_test_period">3000</property>

以下の私のpostgreSQLログをご覧ください。

2014-02-19 07:22:35 IST LOG:  server process (PID 74813) was terminated by signal 6: Aborted
2014-02-19 07:22:35 IST LOG:  terminating any other active server processes
2014-02-19 07:22:35 IST WARNING:  terminating connection because of crash of another server process
2014-02-19 07:22:35 IST DETAIL:  The postmaster has commanded this server process to roll back the current transaction and exit, because another server process exited abnormally and possibly corrupted shared memory.
2014-02-19 07:22:35 IST HINT:  In a moment you should be able to reconnect to the database and repeat your command.
2014-02-19 07:22:35 IST WARNING:  terminating connection because of crash of another server process
2014-02-19 07:22:35 IST DETAIL:  The postmaster has commanded this server process to roll back the current transaction and exit, because another server process exited abnormally and possibly corrupted shared memory.
2014-02-19 07:22:35 IST HINT:  In a moment you should be able to reconnect to the database and repeat your command.
2014-02-19 07:22:35 IST LOG:  all server processes terminated; reinitializing
2014-02-19 07:22:35 IST LOG:  database system was interrupted; last known up at 2014-02-19 07:22:29 IST
2014-02-19 07:22:35 IST LOG:  database system was not properly shut down; automatic recovery in progress
2014-02-19 07:22:35 IST LOG:  record with zero length at 0/16D89BB0
2014-02-19 07:22:35 IST LOG:  redo is not required
2014-02-19 07:22:35 IST LOG:  autovacuum launcher started
2014-02-19 07:22:35 IST LOG:  database system is ready to accept connections


2014-02-19 11:17:59 IST LOG:  unexpected EOF on client connection
2014-02-19 11:17:59 IST LOG:  unexpected EOF on client connection
2014-02-19 11:17:59 IST LOG:  unexpected EOF on client connection
2014-02-19 11:17:59 IST LOG:  unexpected EOF on client connection
2014-02-19 11:17:59 IST LOG:  unexpected EOF on client connection
2014-02-19 11:17:59 IST LOG:  unexpected EOF on client connection
2014-02-19 11:17:59 IST LOG:  unexpected EOF on client connection
2014-02-19 11:17:59 IST LOG:  unexpected EOF on client connection

私のサーバーOSは-。 レッドハット・エンタープライズ・リナックス 6 64ビット PostgreSQLのバージョン - postgreSQL 9.1

解決方法は?

なるほど、それは興味深いですね。

<ブロッククオート

2014-02-19 07:22:35 IST LOG: サーバープロセス (PID 74813) はシグナル 6 によって終了しました: Aborted

これは、PostgreSQLサーバーのバックエンドがクラッシュしていることを示しています。具体的には、シグナル 6 (SIGABRT) は次のように発生します。 アサーションの失敗 これは、何かが間違っていて、データが破壊される危険を冒さなければ継続できないため、コードが意図的にクラッシュしていることを意味します。

もし、あなたが使用している PostgreSQL のバージョン(あなたが言及していないもの)の最新のパッチリリースを実行していないなら、今すぐアップデートしてください。

(残りは本当はもっと質問なのですが、SOのフォーマットではコメントがあまりにも制限されることがあります)。

を有効にすることをお勧めします。 log_statement = all を付けて log_line_prefix には、少なくともバックエンドの pid とトランザクション ID が含まれています。その後、PostgreSQLをリロードして設定を有効にしてください。次に問題が発生した時、クエリログを見て、クラッシュしたプロセスがクラッシュした時に何を実行していたかを確認してください。コンソールで同じ文を対話的に実行すると、クラッシュが起こるかどうかを確認してください。

また、コアダンプファイルを有効にし、お使いのPostgreSQLのバージョンに対応したdebuginfoパッケージをダウンロードすることをお勧めします。これにより、クラッシュしたときのサーバの状態を含むファイルにデバッガをアタッチすることができ、何が問題だったのかが分かると思います。コアダンプを有効にする方法はOS/Distroに依存し、OSとバージョンについて言及されていないので、より具体的な説明はできません。