Return-Path: Delivered-To: apmail-hadoop-hdfs-issues-archive@minotaur.apache.org Received: (qmail 62589 invoked from network); 11 Nov 2009 06:45:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 11 Nov 2009 06:45:00 -0000 Received: (qmail 5681 invoked by uid 500); 11 Nov 2009 06:45:00 -0000 Delivered-To: apmail-hadoop-hdfs-issues-archive@hadoop.apache.org Received: (qmail 5621 invoked by uid 500); 11 Nov 2009 06:44:59 -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 5610 invoked by uid 99); 11 Nov 2009 06:44:59 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Nov 2009 06:44:59 +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.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Nov 2009 06:44:48 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id DFFCC234C1EF for ; Tue, 10 Nov 2009 22:44:27 -0800 (PST) Message-ID: <1924287769.1257921867902.JavaMail.jira@brutus> Date: Wed, 11 Nov 2009 06:44:27 +0000 (UTC) From: "Todd Lipcon (JIRA)" To: hdfs-issues@hadoop.apache.org Subject: [jira] Commented: (HDFS-718) configuration parameter to prevent accidental formatting of HDFS filesystem In-Reply-To: <1834394332.1256078759417.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HDFS-718?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12776315#action_12776315 ] Todd Lipcon commented on HDFS-718: ---------------------------------- I agree with Allen and Rajiv here somewhat. How about a change to the confirmation message that said something like: {quote} *** You are about to format the namenode on foo-cluster.corp.facebook.com *** This filesystem currently contains 2934823 files and was last formatted on 9/10/09. To confirm deletion, please enter the number of files contained in this namenode: {quote} It's a little bit on the silly side, but would force the operator to be aware of exactly how much data they're deleting. Naturally we should provide a "-y" equivalent that skips the confirmation for use in scripts. (I suppose the number of files is actually impossible to determine without reading the namespace and replaying the edit log, but the same idea could be done with the hostname - basically anything to get the admin off of "autopilot") > configuration parameter to prevent accidental formatting of HDFS filesystem > --------------------------------------------------------------------------- > > Key: HDFS-718 > URL: https://issues.apache.org/jira/browse/HDFS-718 > Project: Hadoop HDFS > Issue Type: Improvement > Components: name-node > Affects Versions: 0.22.0 > Environment: Any > Reporter: Andrew Ryan > Assignee: Andrew Ryan > Priority: Minor > Attachments: HDFS-718.patch.txt > > > Currently, any time the NameNode is not running, an HDFS filesystem will accept the 'format' command, and will duly format itself. There are those of us who have multi-PB HDFS filesystems who are really quite uncomfortable with this behavior. There is "Y/N" confirmation in the format command, but if the formatter genuinely believes themselves to be doing the right thing, the filesystem will be formatted. > This patch adds a configuration parameter to the namenode, dfs.namenode.support.allowformat, which defaults to "true," the current behavior: always allow formatting if the NameNode is down or some other process is not holding the namenode lock. But if dfs.namenode.support.allowformat is set to "false," the NameNode will not allow itself to be formatted until this config parameter is changed to "true". > The general idea is that for production HDFS filesystems, the user would format the HDFS once, then set dfs.namenode.support.allowformat to "false" for all time. > The attached patch was generated against trunk and +1's on my test machine. We have a 0.20 version that we are using in our cluster as well. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.