Postgres - ERROR: prepared statement “S_1” already exists

前端 未结 4 1743
栀梦
栀梦 2020-12-28 15:39

When executing batch queries via JDBC to pgbouncer, I get the following error:

org.postgresql.util.PSQLException: ERROR: prepared statement \"S_1\" already e         


        
相关标签:
4条回答
  • 2020-12-28 16:16

    Disabling prepared statements in JDBC. The proper way to do it for JDBC is adding "prepareThreshold=0" parameter to connect string.

    jdbc:postgresql://ip:port/db_name?prepareThreshold=0
    
    0 讨论(0)
  • 2020-12-28 16:16

    I had this problem, we have pgbouncer configurated in transaction level, we were using psql 11.8, we just upgraded the psql jar to the latest version, it got fixed.

    0 讨论(0)
  • 2020-12-28 16:20

    This turned out to be a pgBouncer issue that occurs when using anything other than session pooling. We were using transaction pooling, which apparently can't support prepared statements. By switching to session pooling, we got around the issue.

    Unfortunately, this isn't a good fix for our use case. We have two separate uses for pgBouncer: one part of our system does bulk updates which are most efficient as prepared statements, and another part needs many connections in very rapid succession. Since pgBouncer doesn't allow switching back and forth between session pooling and transaction pooling, we're forced to either run two separate instances on different ports just to support our needs, or to implement this patch. Preliminary testing shows it to work well, but time will tell if it proves to be safe and effective.

    0 讨论(0)
  • 2020-12-28 16:26

    New, Better Answer

    To discard session state and effectively forget the "S_1" prepared statement, use server_reset_query option in PgBouncer config.

    Old Answer

    See http://pgbouncer.projects.postgresql.org/doc/faq.html#_how_to_use_prepared_statements_with_transaction_pooling

    Switching into session mode is not an ideal solution. Transacion pooling is much more efficient. But for transaction pooling you need stateless DB calls.

    I think you have three options:

    1. Disable PS in jdbc driver,
    2. manually deallocate them in your Java code,
    3. configure pgbouncer to discard them on transaction end.

    I would try option 1 or option 3 - depending on actual way in which your app uses them.

    For more info, read the docs:

    http://pgbouncer.projects.postgresql.org/doc/config.html (search for server_reset_query),

    or google for this:

    postgresql jdbc +preparethreshold
    
    0 讨论(0)
提交回复
热议问题