Return-Path: Delivered-To: apmail-hadoop-core-commits-archive@www.apache.org Received: (qmail 10325 invoked from network); 16 Dec 2008 18:54:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 16 Dec 2008 18:54:13 -0000 Received: (qmail 41345 invoked by uid 500); 16 Dec 2008 18:54:25 -0000 Delivered-To: apmail-hadoop-core-commits-archive@hadoop.apache.org Received: (qmail 41318 invoked by uid 500); 16 Dec 2008 18:54:25 -0000 Mailing-List: contact core-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: core-dev@hadoop.apache.org Delivered-To: mailing list core-commits@hadoop.apache.org Received: (qmail 41309 invoked by uid 99); 16 Dec 2008 18:54:25 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Dec 2008 10:54:25 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 Dec 2008 18:54:10 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id D4EE123888AF; Tue, 16 Dec 2008 10:53:49 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r727117 - in /hadoop/core/trunk: CHANGES.txt src/docs/src/documentation/content/xdocs/hdfs_quota_admin_guide.xml Date: Tue, 16 Dec 2008 18:53:49 -0000 To: core-commits@hadoop.apache.org From: hairong@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081216185349.D4EE123888AF@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: hairong Date: Tue Dec 16 10:53:48 2008 New Revision: 727117 URL: http://svn.apache.org/viewvc?rev=727117&view=rev Log: HADOOP-4821. Usage description in the Quotas guide documentations are incorrect. Contributed by Boris Shkolnik. Modified: hadoop/core/trunk/CHANGES.txt hadoop/core/trunk/src/docs/src/documentation/content/xdocs/hdfs_quota_admin_guide.xml Modified: hadoop/core/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/hadoop/core/trunk/CHANGES.txt?rev=727117&r1=727116&r2=727117&view=diff ============================================================================== --- hadoop/core/trunk/CHANGES.txt (original) +++ hadoop/core/trunk/CHANGES.txt Tue Dec 16 10:53:48 2008 @@ -451,6 +451,9 @@ HADOOP-4458. Add a test creating symlinks in the working directory. (Amareshwari Sriramadasu via cdouglas) + HADOOP-4821. Usage description in the Quotas guide documentations are + incorrect. (Boris Shkolnik via hairong) + Release 0.19.1 - Unreleased IMPROVEMENTS Modified: hadoop/core/trunk/src/docs/src/documentation/content/xdocs/hdfs_quota_admin_guide.xml URL: http://svn.apache.org/viewvc/hadoop/core/trunk/src/docs/src/documentation/content/xdocs/hdfs_quota_admin_guide.xml?rev=727117&r1=727116&r2=727117&view=diff ============================================================================== --- hadoop/core/trunk/src/docs/src/documentation/content/xdocs/hdfs_quota_admin_guide.xml (original) +++ hadoop/core/trunk/src/docs/src/documentation/content/xdocs/hdfs_quota_admin_guide.xml Tue Dec 16 10:53:48 2008 @@ -60,21 +60,21 @@
    -
  • dfsadmin -setquota <N> <directory>...<directory>
    Set the name quota to be N for +
  • dfsadmin -setQuota <N> <directory>...<directory>
    Set the name quota to be N for each directory. Best effort for each directory, with faults reported if N is not a positive long integer, the directory does not exist or it is a file, or the directory would immediately exceed the new quota.
  • -
  • dfsadmin -clrquota <directory>...<director>
    Remove any name quota for each directory. Best +
  • dfsadmin -clrQuota <directory>...<director>
    Remove any name quota for each directory. Best effort for each directory, with faults reported if the directory does not exist or it is a file. It is not a fault if the directory has no quota.
  • -
  • dfsadmin -setspacequota <N> <directory>...<directory>
    Set the space quota to be +
  • dfsadmin -setSpaceQuota <N> <directory>...<directory>
    Set the space quota to be N bytes for each directory. N can also be specified with a binary prefix for convenience, for e.g. 50g for 50 gigabytes and 2t for 2 terabytes etc. Best effort for each directory, with faults reported if N is neither zero nor a positive integer, the directory does not exist or it is a file, or the directory would immediately exceed the new quota.
  • -
  • dfsadmin -clrspacequota <directory>...<director>
    Remove any space quota for each directory. Best +
  • dfsadmin -clrSpaceQuota <directory>...<director>
    Remove any space quota for each directory. Best effort for each directory, with faults reported if the directory does not exist or it is a file. It is not a fault if the directory has no quota.