Return-Path: Delivered-To: apmail-hadoop-zookeeper-user-archive@minotaur.apache.org Received: (qmail 13870 invoked from network); 25 Jan 2010 21:50:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 25 Jan 2010 21:50:19 -0000 Received: (qmail 70042 invoked by uid 500); 25 Jan 2010 21:50:19 -0000 Delivered-To: apmail-hadoop-zookeeper-user-archive@hadoop.apache.org Received: (qmail 69963 invoked by uid 500); 25 Jan 2010 21:50:19 -0000 Mailing-List: contact zookeeper-user-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: zookeeper-user@hadoop.apache.org Delivered-To: mailing list zookeeper-user@hadoop.apache.org Received: (qmail 69943 invoked by uid 99); 25 Jan 2010 21:50:19 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Jan 2010 21:50:19 +0000 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [216.145.54.173] (HELO mrout3.yahoo.com) (216.145.54.173) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Jan 2010 21:50:11 +0000 Received: from [10.73.135.251] (wifi-e-135-251.corp.yahoo.com [10.73.135.251]) by mrout3.yahoo.com (8.13.6/8.13.6/y.out) with ESMTP id o0PLmlso034975; Mon, 25 Jan 2010 13:48:48 -0800 (PST) Message-ID: <4B5E11C3.1060105@apache.org> Date: Mon, 25 Jan 2010 13:48:51 -0800 From: Patrick Hunt User-Agent: Thunderbird 2.0.0.23 (X11/20090817) MIME-Version: 1.0 To: zookeeper-user@hadoop.apache.org CC: jscheid@velocetechnologies.com Subject: Re: Server exception when closing session References: <34e4e27f1001221740r51fdb34fl2b2104ca9000e828@mail.gmail.com> <34e4e27f1001221801n4c2e9918qd0241866654bec66@mail.gmail.com> <4B5DD841.3000709@apache.org> In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Good point Ted. FYI, this is the case with the HBase<->ZK integration. The HBase java region server code, acting as a client of the ZK service, was seeing > 2min gc pauses in some cases. This was causing the ZK client session to timeout. Tuning has helped, however until the G1 compactor is available there are some nasty cases that can still show up regardless of how much tuning you do (although gc tuning on the client helps considerably, for the most part this is not an issue in HBase if properly tuned). Patrick Ted Dunning wrote: > Be very cautious about misdirection here. It is easy to focus on the ZK > server-side GC's. In my experience, I have had many more GC related ZK > problems caused by *client* side GC. If the client checks out for a minute, > you get disconnects and session expiration which is good for debugging that > code, but generally indicates a really bad user experience. Lots of times > that bad user experience is somewhat covered up by your load balancer and > other general redundancy to you may notice it first from ZK forcing you to > think about these things. > > On Mon, Jan 25, 2010 at 9:43 AM, Patrick Hunt wrote: > >> GC and disk IO (transactional log in particular) will cause significant >> latency in some cases. See this for details on the types of things you >> should look at: >> >> http://wiki.apache.org/hadoop/ZooKeeper/Troubleshooting >> >> I've seen cases where the JVM will pause for 2+ minutes for GC, in some >> cases I've seen 4+ and I've heard of worse than that. Tuning GC (in >> particular using incremental/cms gc) is critical for consistently low >> latencies. >> >> Patrick >> >> Josh Scheid wrote: >> >>> On Fri, Jan 22, 2010 at 17:48, Mahadev Konar >>> wrote: >>> >>>> The server latency does seem huge. What os and hardware are you running >>>> it >>>> on? >>>> >>> RHEL4 2.8GHz 2-core AMD. 8GB RAM. >>> I will check with my admin for evidence of swap activity, but I don't >>> anticipate any. >>> >>> This is bursty. I'm currently seeing ~200 connections, but maxlat in >>> the last hour has been 185ms with 4ms avg. >>> >>> What is usage model of zookeeper? >>> Distributed lock service. Using the lock recipe. Hosts hold a lock >>> for 5s to a couple of minutes with zero to dozens of waiters. >>> >>> How much memory are you allocating to the server? >>> That's a good question. I'm not an expert at java deployment. I just >>> use zkServer.sh defaults. >>> sun-jre 1.6.0_14. It's taking 1188MB of virtual memory right now, >>> 100MB resident. >>> >>> The debug well exacerbate the problem. >>> OK. >>> >>> A dedicated disk means the following: >>>> Zookeeper has snapshots and transaction logs. The datadir is the >>>> directory >>>> that stores the transaction logs. Its highly recommended that this >>>> directory >>>> be on a separate disk that isnt being used by any other process. The >>>> snapshots can sit on a disk that is being used by the OS and can be >>>> shared. >>>> >>> Yeah, I understand. I just need to get that set up and was hoping >>> that my load wouldn't warrant it. >>> >>> Also, Pat ran some tests for serve lantecies at: >>>> http://wiki.apache.org/hadoop/ZooKeeper/ServiceLatencyOverview >>>> >>>> You can take a look at that as well and see what the expected performance >>>> should be for your workload. >>>> >>> I will take a look at that. Thank you for your time. >>> >>> -Josh >>> > >