Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id A61022009E2 for ; Wed, 1 Jun 2016 21:55:05 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id A4B68160A4C; Wed, 1 Jun 2016 19:55:05 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id ED917160A4E for ; Wed, 1 Jun 2016 21:55:04 +0200 (CEST) Received: (qmail 69148 invoked by uid 500); 1 Jun 2016 19:55:02 -0000 Mailing-List: contact common-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list common-commits@hadoop.apache.org Received: (qmail 68959 invoked by uid 99); 1 Jun 2016 19:55:02 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Jun 2016 19:55:02 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 8134FE0498; Wed, 1 Jun 2016 19:55:02 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: aengineer@apache.org To: common-commits@hadoop.apache.org Date: Wed, 01 Jun 2016 19:55:10 -0000 Message-Id: <97fbe71999ce438785d63885c8f9ace1@git.apache.org> In-Reply-To: <8bf279bf59c84e0e9ac3691a144cadc2@git.apache.org> References: <8bf279bf59c84e0e9ac3691a144cadc2@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [09/39] hadoop git commit: HADOOP-13199. Add doc for distcp -filters. (John Zhuge via Yongjun Zhang) archived-at: Wed, 01 Jun 2016 19:55:05 -0000 HADOOP-13199. Add doc for distcp -filters. (John Zhuge via Yongjun Zhang) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/cfb860de Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/cfb860de Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/cfb860de Branch: refs/heads/HDFS-1312 Commit: cfb860dee72a27382a26bf450bb8b16784aeebbb Parents: 9161406 Author: Yongjun Zhang Authored: Thu May 26 23:30:31 2016 -0700 Committer: Yongjun Zhang Committed: Thu May 26 23:30:31 2016 -0700 ---------------------------------------------------------------------- hadoop-tools/hadoop-distcp/src/site/markdown/DistCp.md.vm | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/cfb860de/hadoop-tools/hadoop-distcp/src/site/markdown/DistCp.md.vm ---------------------------------------------------------------------- diff --git a/hadoop-tools/hadoop-distcp/src/site/markdown/DistCp.md.vm b/hadoop-tools/hadoop-distcp/src/site/markdown/DistCp.md.vm index 9c11e0f..e9cfdc7 100644 --- a/hadoop-tools/hadoop-distcp/src/site/markdown/DistCp.md.vm +++ b/hadoop-tools/hadoop-distcp/src/site/markdown/DistCp.md.vm @@ -225,6 +225,7 @@ Flag | Description | Notes `-update` | Overwrite if source and destination differ in size, blocksize, or checksum | As noted in the preceding, this is not a "sync" operation. The criteria examined are the source and destination file sizes, blocksizes, and checksums; if they differ, the source file replaces the destination file. As discussed in the Usage documentation, it also changes the semantics for generating destination paths, so users should use this carefully. `-append` | Incremental copy of file with same name but different length | If the source file is greater in length than the destination file, the checksum of the common length part is compared. If the checksum matches, only the difference is copied using read and append functionalities. The -append option only works with `-update` without `-skipcrccheck` `-f ` | Use list at \ as src list | This is equivalent to listing each source on the command line. The `urilist_uri` list should be a fully qualified URI. +`-filters` | The path to a file containing a list of pattern strings, one string per line, such that paths matching the pattern will be excluded from the copy. | Support regular expressions specified by java.util.regex.Pattern. `-filelimit ` | Limit the total number of files to be <= n | **Deprecated!** Ignored in the new DistCp. `-sizelimit ` | Limit the total size to be <= n bytes | **Deprecated!** Ignored in the new DistCp. `-delete` | Delete the files existing in the dst but not in src | The deletion is done by FS Shell. So the trash will be used, if it is enable. --------------------------------------------------------------------- To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org For additional commands, e-mail: common-commits-help@hadoop.apache.org