Return-Path: X-Original-To: apmail-storm-user-archive@minotaur.apache.org Delivered-To: apmail-storm-user-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4820D117C3 for ; Wed, 2 Apr 2014 07:18:52 +0000 (UTC) Received: (qmail 21246 invoked by uid 500); 2 Apr 2014 07:18:51 -0000 Delivered-To: apmail-storm-user-archive@storm.apache.org Received: (qmail 20414 invoked by uid 500); 2 Apr 2014 07:18:50 -0000 Mailing-List: contact user-help@storm.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@storm.incubator.apache.org Delivered-To: mailing list user@storm.incubator.apache.org Received: (qmail 19624 invoked by uid 99); 2 Apr 2014 07:18:48 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Apr 2014 07:18:48 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of binita.bharati@gmail.com designates 209.85.223.180 as permitted sender) Received: from [209.85.223.180] (HELO mail-ie0-f180.google.com) (209.85.223.180) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Apr 2014 07:18:42 +0000 Received: by mail-ie0-f180.google.com with SMTP id as1so10379518iec.11 for ; Wed, 02 Apr 2014 00:18:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=eeyzRs0jq1yhRkxzZWgA2P4xxjW/uHidKsBdlmVvQY8=; b=vMPdAMNd/OlBt3yUWSXzi4YvL+OVbhSLb3fek80XA2GKVriB1MGRjBYkoQXPD6mkoF DUgbLjsdwLCzI6LR3F7YEKAflbz9JIUjiP204Gc16Zupt8h6kPS1MhayizwNt935TvvO z5Rw6i6RrgJcK3SJH3ilL++nW4UhBq1rGzpLnmEE+77aQGTDLdhLaPIs1rhq2yZN3WXA +VZV3JfYCj6Pc5XwxAtxpSRCoPbqf0Eg5FO6JPbKObt1j6mugzO3LBA2TJb++CZLRodv O/5cAfMpTtQPw8A243FhYg1gz2r4SyWIJet0tXNl03S4D8xJKj6G5mwtIIYE38oH3okC Ps+A== MIME-Version: 1.0 X-Received: by 10.50.225.134 with SMTP id rk6mr7116306igc.31.1396423100127; Wed, 02 Apr 2014 00:18:20 -0700 (PDT) Received: by 10.43.152.20 with HTTP; Wed, 2 Apr 2014 00:18:20 -0700 (PDT) In-Reply-To: References: Date: Wed, 2 Apr 2014 12:48:20 +0530 Message-ID: Subject: Re: java.lang.IllegalArgumentException: timeout value is negative - seen in Worker logs From: Binita Bharati To: user@storm.incubator.apache.org Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org The same issue is still observed in worker logs. Anyone has any other inputs ? Thanks On Tue, Apr 1, 2014 at 8:25 AM, Binita Bharati wrote: > Thanks , will give it a shot.. > > On Fri, Mar 28, 2014 at 9:27 AM, bijoy deb wrote: >> Hi, >> >> Try modifying "storm.messaging.netty.max_retries: 100" to a lower >> value,e.g. "storm.messaging.netty.max_retries: 10". >> >> Thanks >> Bijoy >> >> >> On Fri, Mar 28, 2014 at 8:48 AM, Binita Bharati >> wrote: >>> >>> Hi all, >>> >>> Am using storm-0.9.0.1. >>> >>> The following error is seen in the worker logs: >>> >>> 2014-03-25 16:18:24 STDIO [ERROR] Mar 25, 2014 4:18:24 PM >>> org.jboss.netty.channel.DefaultChannelPipeline >>> WARNING: An exception was thrown by a user handler while handling an >>> exception event ([id: 0x8068e4b0] EXCEPTION: >>> java.net.ConnectException: Connection refused) >>> java.lang.IllegalArgumentException: timeout value is negative >>> at java.lang.Thread.sleep(Native Method) >>> at backtype.storm.messaging.netty.Client.reconnect(Client.java:78) >>> at >>> backtype.storm.messaging.netty.StormClientHandler.exceptionCaught(StormClientHandler.java:108) >>> at >>> org.jboss.netty.handler.codec.frame.FrameDecoder.exceptionCaught(FrameDecoder.java:377) >>> at >>> org.jboss.netty.channel.Channels.fireExceptionCaught(Channels.java:525) >>> at >>> org.jboss.netty.channel.socket.nio.NioClientBoss.processSelectedKeys(NioClientBoss.java:109) >>> at >>> org.jboss.netty.channel.socket.nio.NioClientBoss.process(NioClientBoss.java:78) >>> at >>> org.jboss.netty.channel.socket.nio.AbstractNioSelector.run(AbstractNioSelector.java:312) >>> at >>> org.jboss.netty.channel.socket.nio.NioClientBoss.run(NioClientBoss.java:41) >>> at >>> java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) >>> at >>> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) >>> at java.lang.Thread.run(Thread.java:662) >>> >>> >>> Relevant Netty config from storm.yaml: >>> storm.messaging.transport: "backtype.storm.messaging.netty.Context" >>> storm.messaging.netty.server_worker_threads: 1 >>> storm.messaging.netty.client_worker_threads: 1 >>> storm.messaging.netty.buffer_size: 5242880 >>> storm.messaging.netty.max_retries: 100 >>> storm.messaging.netty.max_wait_ms: 1000 >>> storm.messaging.netty.min_wait_ms: 100 >>> >>> Anyone knows why ? >>> >>> Thanks >>> Binita >> >>