Return-Path: Delivered-To: apmail-activemq-dev-archive@www.apache.org Received: (qmail 82116 invoked from network); 23 Nov 2010 03:03:20 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 23 Nov 2010 03:03:20 -0000 Received: (qmail 14657 invoked by uid 500); 23 Nov 2010 03:03:52 -0000 Delivered-To: apmail-activemq-dev-archive@activemq.apache.org Received: (qmail 14419 invoked by uid 500); 23 Nov 2010 03:03:49 -0000 Mailing-List: contact dev-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list dev@activemq.apache.org Received: (qmail 14411 invoked by uid 99); 23 Nov 2010 03:03:48 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Nov 2010 03:03:48 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Nov 2010 03:03:48 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id oAN33Res025882 for ; Tue, 23 Nov 2010 03:03:27 GMT Message-ID: <22899261.9971290481407435.JavaMail.jira@thor> Date: Mon, 22 Nov 2010 22:03:27 -0500 (EST) From: "Adrian Lisenberg (JIRA)" To: dev@activemq.apache.org Subject: [jira] Commented: (AMQ-2446) Client hangs on receive call with timeout value > 0 when activemq is shutdown (CTRL-C) In-Reply-To: <454877932.1255045792991.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: ae95407df07c98740808b2ef9da0087c [ https://issues.apache.org/activemq/browse/AMQ-2446?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=63449#action_63449 ] Adrian Lisenberg commented on AMQ-2446: --------------------------------------- Hi, I am using 5.4.1 and still have the same situation. I use prefetch=0, failover and connection pool. Sometimes when I call receive(1000), the consumer hangs at this line: org.apache.activemq.SimplePriorityMessageDispatchChannel.dequeue(SimplePriorityMessageDispatchChannel.java:87) org.apache.activemq.ActiveMQMessageConsumer.dequeue(ActiveMQMessageConsumer.java:452) It's very difficult to reproduce with a test case. thanks, adrian > Client hangs on receive call with timeout value > 0 when activemq is shutdown (CTRL-C) > -------------------------------------------------------------------------------------- > > Key: AMQ-2446 > URL: https://issues.apache.org/activemq/browse/AMQ-2446 > Project: ActiveMQ > Issue Type: Bug > Affects Versions: 5.2.0 > Environment: Windows XP SP3, ActiveMQ 5.2, prefetchSize=0 (java.naming.provider.url = tcp://localhost:61616?jms.prefetchPolicy.queuePrefetch=0) > Reporter: Carl Allain > Assignee: Gary Tully > Fix For: 5.3.0 > > Attachments: AMQ-2446-Test.zip, AMQ2446Test.java > > > Start ActiveMQ > create a message consumer and make a receive(30000) call for example. > stop ActiveMQ (CTRL-C) > There is an error reported on the console: > 2009-10-08 19:23:54,978 [ActiveMQ Transport: tcp://localhost/127.0.0.1:61616] DEBUG org.apache.activemq.ActiveMQConnection - Async exception with no exception listener: java.io.EOFException > java.io.EOFException > at java.io.DataInputStream.readInt(DataInputStream.java:358) > at org.apache.activemq.openwire.OpenWireFormat.unmarshal(OpenWireFormat.java:269) > at org.apache.activemq.transport.tcp.TcpTransport.readCommand(TcpTransport.java:210) > at org.apache.activemq.transport.tcp.TcpTransport.doRun(TcpTransport.java:202) > at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:185) > at java.lang.Thread.run(Thread.java:595) > 2009-10-08 19:23:54,978 [ActiveMQ Connection Worker: tcp://localhost/127.0.0.1:61616] DEBUG org.apache.activemq.transport.tcp.TcpTransport - Stopping transport tcp://localhost/127.0.0.1:61616 > The thread making the receive call is waiting on a mutex that the ActiveMQ Connection Worker thread that reported that log has (I guess): > class MessageDispatchChannel > public MessageDispatch dequeue(long timeout) throws InterruptedException { > synchronized (mutex) { > // Wait until the consumer is ready to deliver messages. > while (timeout != 0 && !closed && (list.isEmpty() || !running)) { > if (timeout == -1) { > mutex.wait(); <----------------------------------------------------------- > } else { > mutex.wait(timeout); > break; > } > } > if (closed || !running || list.isEmpty()) { > return null; > } > return list.removeFirst(); > } > } > What is also strange to me is that my timeout of 30000 ms is silently converted to an infinite timeout if the preFetchSize == 0 by this code? Why? > class ActiveMQMessageConsumer > ... > MessageDispatch md; > if (info.getPrefetchSize() == 0) { > md = dequeue(-1); // We let the broker let us know when we > // timeout. > } else { > md = dequeue(timeout); > } -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.