-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 4 posts ] 
Author Message
 Post subject: probleme lock MSSQL2008 spring hibernate C3P0
PostPosted: Mon Feb 27, 2012 11:39 am 
Newbie

Joined: Mon Feb 27, 2012 11:25 am
Posts: 2
Bonjour,
Je rencontre un problême depuis plusieurs mois et je n'arrive pas a le résoudre.
Il arrive que 2 appellent aux meme entités dans le meme dizieme de seconde me génére un lock sur ma base de donnée et me bloque donc mon appli , le seul moyen est de tuer le processus dans la base de donnée.
j'utilise Spring 2.5 , hibernate 3 , et la dernière version officiel de C3P0

Code:
    <bean id="sessionFactory"
      class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
        <property name="configLocation">
            <value>classpath:hibernate.cfg.xml</value>
        </property>
        <property name="hibernateProperties">
            <map>
                <entry key="hibernate.connection.driver_class" value="net.sourceforge.jtds.jdbc.Driver"/>
                <entry key="hibernate.connection.url" value="jdbc:jtds:sqlserver://***********"/>
                <entry key="hibernate.connection.username" value="********"/>
                <entry key="hibernate.connection.password" value="**********"/>
                <!-- Query properties -->
                <entry key="hibernate.show_sql" value="true"/>
                <entry key="hibernate.format_sql" value="false"/>
                <entry key="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/>
                <entry key="hibernate.use_outer_join" value="true"/>               
                <entry key="hibernate.connection.release_mode" value="auto"/>
                <!-- C3P0 - Connection Pool Provider -->   
                <entry key="hibernate.connection.provider_class" value="org.hibernate.connection.C3P0ConnectionProvider"/>
                <entry key="hibernate.c3p0.min_size" value="3"/>
                <entry key="hibernate.c3p0.max_size" value="20"/>
                <entry key="hibernate.c3p0.acquire_increment" value="1"/>
                <entry key="hibernate.c3p0.timeout" value="200"/>
                <entry key="hibernate.c3p0.idle_test_period" value="200"/>
                <entry key="hibernate.c3p0.num_helper_threads" value="3"/>
                <entry key="hibernate.c3p0.max_statements" value="0"/>
                <entry key="hibernate.c3p0.preferredTestQuery" value="select 1;"/>
            </map>
        </property>
    </bean>

Voila pour ma configuration.
J'ai environ 500 clique par heure sur le site, pour a peu pres 1500 requetes .

Les 3 derniers plantage que j'ai eu de la base de données sont les lock sur un appel juste avant un envoie d'email qui est dans une methode encapsulé par le manager de transaction de spring.

Chacun des encapsulage de transaction spring contient des 10 aines de requetes avant libération , ce qui est pratique en cas de rollback, mais peut être est ce la cause de tout mes problêmes, j'aimerais vraiment avoir l'avis de personne qui connaissent bien se sujet avant de devoir redevelopper tout cette partie de mon appli.

Merci d'avance a ceux qui sauront m'aider, car la je sais plus quoi faire.


Top
 Profile  
 
 Post subject: Re: probleme lock MSSQL2008 spring hibernate C3P0
PostPosted: Tue Feb 28, 2012 5:48 am 
Expert
Expert

Joined: Tue Jun 16, 2009 3:36 am
Posts: 990
Hi,

sorry I'm not speaking france,
anyway with following c3p0 parameters you obtain,
that blocked threads are waiting maximal 15 seconds for a release lock.
Maybe it helps you ...
Quote:
<property name="hibernate.c3p0.testConnectionOnCheckout" value="true"/> <!-- N.B.: LOCK_TIMEOUT measure are milliseconds -->
<property name="hibernate.c3p0.preferredTestQuery" value="SET LOCK_TIMEOUT 15000;Select @@LOCK_TIMEOUT;"/>


Top
 Profile  
 
 Post subject: Re: probleme lock MSSQL2008 spring hibernate C3P0
PostPosted: Tue Feb 28, 2012 6:36 am 
Newbie

Joined: Mon Feb 27, 2012 11:25 am
Posts: 2
thanks, i will try it.


Top
 Profile  
 
 Post subject: Re: probleme lock MSSQL2008 spring hibernate C3P0
PostPosted: Tue Jan 22, 2013 7:25 am 
Newbie

Joined: Tue Jan 22, 2013 7:08 am
Posts: 3
thanks, i will try it.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 4 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.