PostgreSQL
 sql >> डेटाबेस >  >> RDS >> PostgreSQL

Jboss AS7 कनेक्शन पूल फिर से कनेक्ट नहीं होगा

जेबॉस को कॉन्फ़िगर करते समय याद रखने वाली एक बात यह है कि कभी-कभी व्यक्तिगत घटकों के लिए परियोजनाओं में सबसे अच्छा दस्तावेज होता है। डेटा स्रोत सेटिंग के मामले में, मैं हमेशा लोगों से कहता हूं कि वे आयरनजैमर डॉक्स देखें:http://www.ironjacamar.org/doc/userguide/1.0/en-US/html_single/

आप जो करना चाहते हैं, उसके लिए ये सेटिंग काम करेंगी:

<validation>
    <valid-connection-checker class-name="org.jboss.jca.adapters.jdbc.extensions.postgres.PostgreSQLValidConnectionChecker"/>
    <exception-sorter class-name="org.jboss.jca.adapters.jdbc.extensions.postgres.PostgreSQLExceptionSorter"/>

    <!-- I don't know what this does but someone on my DevOps 
    team said to set it this way. :) -->
    <validate-on-match>false</validate-on-match>

    <!-- validate the connection using a background 
    thread rather than right before you try to use the connection -->
    <background-validation>true</background-validation>

    <!-- sets the frequency the background thread will check each connection.
    The lower this setting, the quicker it will find a bad connection 
    but it will be more chatty sending the validations to the server -->
    <background-validation-millis>60000</background-validation-millis>

    <!-- fast fail will mark all the connections invalid as soon as 
    it finds a bad one. This will make it clear the pool quicker 
    if all connections are reset at once such as a restart. Fast 
    fail would be trouble though if you had a setup where the database
    sometimes selectively kills a single connection, such as killing long
    running queries. -->
    <use-fast-fail>true</use-fast-fail>

</validation>


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. क्रम में अनुक्रम पीढ़ी

  2. निम्नलिखित पंक्तियों को अद्वितीय मान के आधार पर कैसे समूहित करें

  3. PostgreSQL - एक विश्वसनीय कतार लागू करना

  4. जब लेन-देन पूलिंग सक्षम होती है और एक ही स्टेटमेंट जारी किया जाता है, तो pgbouncer कैसे व्यवहार करता है?

  5. मैं गिट (संस्करण नियंत्रण) के तहत डेटाबेस कैसे रख सकता हूं?