Return-Path: Delivered-To: apmail-hadoop-hdfs-issues-archive@minotaur.apache.org Received: (qmail 54035 invoked from network); 7 May 2010 05:22:17 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 7 May 2010 05:22:17 -0000 Received: (qmail 38089 invoked by uid 500); 7 May 2010 05:22:17 -0000 Delivered-To: apmail-hadoop-hdfs-issues-archive@hadoop.apache.org Received: (qmail 38001 invoked by uid 500); 7 May 2010 05:22:15 -0000 Mailing-List: contact hdfs-issues-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hdfs-issues@hadoop.apache.org Delivered-To: mailing list hdfs-issues@hadoop.apache.org Received: (qmail 37882 invoked by uid 99); 7 May 2010 05:22:15 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 May 2010 05:22:15 +0000 X-ASF-Spam-Status: No, hits=-1400.0 required=10.0 tests=ALL_TRUSTED,AWL 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; Fri, 07 May 2010 05:22:14 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o475LrK4021883 for ; Fri, 7 May 2010 05:21:53 GMT Message-ID: <11130533.24771273209713951.JavaMail.jira@thor> Date: Fri, 7 May 2010 01:21:53 -0400 (EDT) From: "dhruba borthakur (JIRA)" To: hdfs-issues@hadoop.apache.org Subject: [jira] Updated: (HDFS-1105) Balancer improvement In-Reply-To: <12621154.129461271901590144.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HDFS-1105?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] dhruba borthakur updated HDFS-1105: ----------------------------------- Status: Open (was: Patch Available) Pending review comments from Hairong. > Balancer improvement > -------------------- > > Key: HDFS-1105 > URL: https://issues.apache.org/jira/browse/HDFS-1105 > Project: Hadoop HDFS > Issue Type: Improvement > Reporter: Dmytro Molkov > Assignee: Dmytro Molkov > Attachments: HDFS-1105.2.patch, HDFS-1105.3.patch, HDFS-1105.patch > > > We were seeing some weird issues with the balancer in our cluster: > 1) it can get stuck during an iteration and only restarting it helps > 2) the iterations are highly inefficient. With 20 minutes iteration it moves 7K blocks a minute for the first 6 minutes and hundreds of blocks in the next 14 minutes > 3) it can hit namenode and the network pretty hard > A few improvements we came up with as a result: > Making balancer more deterministic in terms of running time of iteration, improving the efficiency and making the load configurable: > Make many of the constants configurable command line parameters: Iteration length, number of blocks to move in parallel to a given node and in cluster overall. > Terminate transfers that are still in progress after iteration is over. > Previously iteration time was the time window in which the balancer was scheduling the moves and then it would wait for the moves to finish indefinitely. Each scheduling task can run up to iteration time or even longer. This means if you have too many of them and they are long your actual iterations are longer than 20 minutes. Now each scheduling task has a time of the start of iteration and it should schedule the moves only if it did not run out of time. So the tasks that have started after the iteration is over will not schedule any moves. > The number of move threads and dispatch threads is configurable so that depending on the load of the cluster you can run it slower. > I will attach a patch, please let me know what you think and what can be done better. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.