[jboss-user] [JBoss Messaging] - Re: deathless consumer prooblem

2009-05-31 Thread gaohoward
Hi, 

I'm thinking your problem may relate to this JIRA: 

https://jira.jboss.org/jira/browse/JBMESSAGING-1456

it's been fixed in 1.4.4.GA/remoting 2.2.3.

would you like to give it a try?

Thanks.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4234302#4234302

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4234302
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Messaging] - Re: deathless consumer prooblem

2009-05-29 Thread bodrin
hi,
I just made a mysql dump and copied also the server log when the thing happened.
I do know some of the queues on which the deathless consumer was listenening to 
if you need this: profile_subscriptions_3,  profiles_3,...

I have uploaded the server log at 
http://94.26.60.24/~test/temp/dump.29.05.2009/server.zip 
and the musql dump on 
http://94.26.60.24/~test/temp/dump.29.05.2009/jbm.db.gzip

I see a strange exception in the log
anonymous wrote : 
  | 2009-05-29 15:13:15,232 ERROR [org.jboss.remoting.ConnectionNotifier] Error 
notifying connection listeners of lost client connection.
  | java.lang.NullPointerException
  | at 
org.jboss.remoting.ConnectionNotifier.connectionLost(ConnectionNotifier.java:50)
  | at org.jboss.remoting.Lease.notifyClientLost(Lease.java:211)
  | at org.jboss.remoting.Lease.access$500(Lease.java:39)
  | at org.jboss.remoting.Lease$LeaseTimerTask.run(Lease.java:249)
  | at java.util.TimerThread.mainLoop(Timer.java:512)
  | at java.util.TimerThread.run(Timer.java:462)
  | 

Hope this will help to investigate the problem.
Thanks!

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4234123#4234123

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4234123
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Messaging] - Re: deathless consumer prooblem

2009-03-26 Thread radimchatkalahari
I'm facing exactly the same problem.
I have 5 topics and 6 queues in my
JBossAS 4.2.3, JBoss Messaging 1.4.2SP1, JBoss Remoting 2.2.2SP11
and my remoting-bisocket-service.xml is configured by default from jbm1.4.2SP1
I have tried a lot of combinations of JBossAS, JBM, JBREM but with no success.
This issue appears irregularly with after a couple of day/weeks of jboss run.
The only solution is then restarting jboss completely. Restarting the queue or 
consumer (other application using jms) does not solve the problem.




View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4221267#4221267

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4221267
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Messaging] - Re: deathless consumer prooblem

2009-03-19 Thread gaohoward
If your client dies abruptly the consumer count will be updated at the server 
side after the connection timeout. Check for the leaseTimeout in your remoting 
config. If it is 10 second, you can wait for about 10 second or more to see the 
updated consumer count.

If possible, can you provide the server.log when no messages come for 
processing happens?



View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4219421#4219421

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4219421
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Messaging] - Re: deathless consumer prooblem

2009-03-19 Thread bodrin
Not sure which one is, but both are equal:
leasePeriod=1
clientLeasePeriod=1

from CONFIG\deploy\jboss-messaging.sar\remoting-bisocket-service.xml

  | ...
  |   service-config 
name=jboss.messaging:service=Connector,transport=bisocket
  |   
delegateClass=org.jboss.services.binding.AttributeMappingDelegate
  |  delegate-config
  | attribute name=Configuration![CDATA[
  |config
  |   invoker transport=bisocket
  |  attribute name=marshaller 
isParam=trueorg.jboss.jms.wireformat.JMSWireFormat/attribute
  |  attribute name=unmarshaller 
isParam=trueorg.jboss.jms.wireformat.JMSWireFormat/attribute
  |  attribute name=dataType 
isParam=truejms/attribute
  |  attribute name=socket.check_connection 
isParam=truefalse/attribute
  |  attribute name=timeout isParam=true0/attribute
  |  attribute 
name=serverBindAddress${jboss.bind.address}/attribute
  |  attribute name=serverBindPort4557/attribute
  |  attribute name=leasePeriod1/attribute
  |  attribute name=clientSocketClass 
isParam=trueorg.jboss.jms.client.remoting.ClientSocketWrapper/attribute
  |  attribute 
name=serverSocketClassorg.jboss.jms.server.remoting.ServerSocketWrapper/attribute
  |  attribute name=numberOfCallRetries 
isParam=true1/attribute
  | attribute name=pingFrequency isParam=true214748364/attribute
  | attribute name=pingWindowFactor isParam=true10/attribute
  | attribute 
name=onewayThreadPoolorg.jboss.jms.server.remoting.DirectThreadPool/attribute
  |!-- End immutable parameters --
  |
  |!-- Periodicity of client pings. Server window by default 
is twice this figure --   
  |attribute name=clientLeasePeriod 
isParam=true1/attribute
  | ...
  | 
  | It has happened today, but unfortunatelly the server.log is cleared on 
restart and the desired logs are no there..
  | 
  | I'll provide it if it happens again.
  | 
  | Thanks!
  | 

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4219504#4219504

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4219504
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user