Re: [JBoss-user] LOCKING-WAITING (CTX)

2001-07-15 Thread Burkhard Vogel
Hi, this is standard ejb behavior, the Bean gets locked if it is accessed, since on BMP the app-server never knows what you are going to do, right (there is no reson why you shouldn't do some update-statement when reading a value, right?!? So go ahead and read the long and most entertaining

Re: [JBoss-user] LOCKING-WAITING after setRollbackOnly()

2001-06-28 Thread Michael Jara
, 2001 11:02 PM Subject: Re: [JBoss-user] LOCKING-WAITING after setRollbackOnly() Michael Jara wrote: I've run into a problem previously mentioned in the archives here: http://www.mail-archive.com/jboss-user@lists.sourceforge.net/msg03141.html Does anyone have a good workaround

Re: [JBoss-user] LOCKING-WAITING after setRollbackOnly()

2001-06-28 Thread Victor Langelo
Michael Jara wrote: Yes, Sybase ASE is case sensitive as to table and column names. (SQL keywords may be any case.) I beleive this is not unique to Sybase, but is also the case in some other database servers such as Oracle. JAWS in JBoss 2.2.2 works properly, but Beta 2.4 does not... I

Re: [JBoss-user] LOCKING-WAITING after setRollbackOnly()

2001-06-28 Thread Victor Langelo
I cannot tell from your description whether the entity bean method's transaction attribute is tx_supports. If it is, then JBoss should be throwing an exception since setRollbackOnly isn't valid in this context. --Victor Michael Jara wrote: FYI: I took a clue from bug #420714 an tried moving

Re: [JBoss-user] LOCKING-WAITING after setRollbackOnly()

2001-06-28 Thread Michael Jara
times out, but the entity bean remains locked until I restart the application server. Mike - Original Message - From: marc fleury [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, June 28, 2001 11:46 AM Subject: RE: [JBoss-user] LOCKING-WAITING after setRollbackOnly() h can't

Re: [JBoss-user] LOCKING-WAITING after setRollbackOnly()

2001-06-27 Thread danch
Michael Jara wrote: I've run into a problem previously mentioned in the archives here: http://www.mail-archive.com/jboss-user@lists.sourceforge.net/msg03141.html Does anyone have a good workaround for this (aside from don't use setRollbackOnly, or hack TxCapsule and build it

Re: [JBoss-user] LOCKING-WAITING

2001-06-13 Thread Georg Rehfeld
Hi, ivanhoe Abrahams wrote: Could anyone point me in the right direction when it comes to solving the LOCKING-WAITING problem It hangs my client/keeps the server so busy that everything slows down to a snail's pace. In the current CVS version of JBoss is a partial fix for that and some

RE: [JBoss-user] LOCKING-WAITING

2001-05-03 Thread Bordet, Simone
Hey, there is no problem. You can reduce the log's size by removing the Debug option from the file logger in jboss.conf HTH, Simon -Original Message- From: madhu [mailto:[EMAIL PROTECTED]] Sent: giovedì 3 maggio 2001 16:59 To: [EMAIL PROTECTED] Subject: [JBoss-user]

Re: [JBoss-user] LOCKING-WAITING after setRollbackOnly()

2001-04-27 Thread danch
I'll put together a little sample and look into this. By my reading of the spec, you should be able to call into the bean (even the same instance) after you call setRollbackOnly and throw an application exception. Even if that weren't legal, locking-waiting would not be what we'd want to see.

Re: [JBoss-user] LOCKING-WAITING after setRollbackOnly()

2001-04-25 Thread danch
What version of JBoss is this? The Classification that's being passed in is null, correct? Otherwise commenting out the call to setRollbackOnly should have no effect. The test client calls the entity directly (not through a session wrapper), correct? -danch Achim Demelt wrote: hi, I

Re: [JBoss-user] LOCKING-WAITING after setRollbackOnly()

2001-04-25 Thread Achim Demelt
What version of JBoss is this? 2.2 binary distribution w/ tomcat 3.2.1 The Classification that's being passed in is null, correct? Otherwise commenting out the call to setRollbackOnly should have no effect. Yes, it's null. Oops, I see I've copied the wrong method into the email, but

RE: [JBoss-user] LOCKING-WAITING

2001-03-21 Thread Bordet, Simone
Marc, Just out of curiousity Simone... when we benched at SUN one of the big difference under load was the thread management. The best in terms of resource usage was put the thread to sleep (with a 5 sec timeout) and notify (1) and that REALLY flew and scaled REALLY well because

RE: [JBoss-user] LOCKING-WAITING

2001-03-21 Thread Swarr, Bob
:07 AM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] LOCKING-WAITING marc fleury wrote: Just out of curiousity Simone... when we benched at SUN one of the big difference under load was the thread management. The best in terms of resource usage was put the thread to sleep (with a 5 sec

RE: [JBoss-user] LOCKING-WAITING

2001-03-21 Thread Bordet, Simone
Hey, Which leads to a question since I'm a JBoss novice. Is there a way to set the number of threads in JBoss? I use WebLogic regularly and it provides a configuration parameter that allows you to set the number of threads in the VM that the server uses. No. (but this is open source

RE: [JBoss-user] LOCKING-WAITING

2001-03-21 Thread Juha Lindfors
Hey, At 13:43 21.3.2001 -, you wrote: I'm also working on that, I fixed it but didn't tested it enough. Keep me informed if you will work on this. I was only planning to drop the patch in...didn't want it to get lost. But you can have this one, you're more familiar with it :) Enjoy! --

RE: [JBoss-user] LOCKING-WAITING

2001-03-21 Thread Juha Lindfors
Hi, At 13:43 21.3.2001 -, you wrote: I'm also working on that, I fixed it but didn't tested it enough. Keep me informed if you will work on this. I was only planning to drop the patch in...didn't want it to get lost. But you can have this one, you're more familiar with it :) Enjoy! --

Re: [JBoss-user] LOCKING-WAITING

2001-03-20 Thread Bill Burke
You're may be getting such a performance hit because of all the LOCKING-WAITING messages being sent to jboss/logs/server.log. Check out that file, my guess it will be very, very large. BTW, please don't remove that message. It is very useful for debugging purposes. Here's a fix for that