Return-Path: Delivered-To: apmail-hadoop-core-user-archive@www.apache.org Received: (qmail 90062 invoked from network); 30 Jul 2008 18:38:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 30 Jul 2008 18:38:33 -0000 Received: (qmail 89316 invoked by uid 500); 30 Jul 2008 18:38:28 -0000 Delivered-To: apmail-hadoop-core-user-archive@hadoop.apache.org Received: (qmail 89282 invoked by uid 500); 30 Jul 2008 18:38:28 -0000 Mailing-List: contact core-user-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: core-user@hadoop.apache.org Delivered-To: mailing list core-user@hadoop.apache.org Received: (qmail 89271 invoked by uid 99); 30 Jul 2008 18:38:28 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 Jul 2008 11:38:28 -0700 X-ASF-Spam-Status: No, hits=1.2 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [216.145.54.172] (HELO mrout2.yahoo.com) (216.145.54.172) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 Jul 2008 18:37:31 +0000 Received: from [10.72.106.226] (heighthigh-lx.corp.yahoo.com [10.72.106.226]) by mrout2.yahoo.com (8.13.6/8.13.6/y.out) with ESMTP id m6UIbdEC051605 for ; Wed, 30 Jul 2008 11:37:39 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; s=serpent; d=yahoo-inc.com; c=nofws; q=dns; h=message-id:date:from:user-agent:mime-version:to:subject: references:in-reply-to:content-type:content-transfer-encoding; b=wZfYRoATWLFUGemopYYed/GUoRHmTY2MXVpmkiDHsJqKYmoFiSfe4c5ht9asr3oU Message-ID: <4890B4F2.3000202@yahoo-inc.com> Date: Wed, 30 Jul 2008 11:37:38 -0700 From: Raghu Angadi User-Agent: Thunderbird 2.0.0.16 (Windows/20080708) MIME-Version: 1.0 To: core-user@hadoop.apache.org Subject: Re: NameNode HA References: <18739140.post@talk.nabble.com> In-Reply-To: <18739140.post@talk.nabble.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Himanshu Sharma wrote: > The "dfs.name.dir" attribute, if given a comma-delimited list of directories, > replicates the name table in all such directories for redundancy. > > My question is : whether it does so synchronously or asynchronously i.e does > it make sure that for each entry in EditLog file, all such replicated files > get an entry before that operation is termed as completed ? synchronously. All the files get the entry before the operation is considered complete. Raghu.