HDFS-9048. DistCp documentation is out-of-dated (Daisuke Kobayashi via iwasakims)
(cherry picked from commit33a412e8a4
) Conflicts: hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt (cherry picked from commit55f7ceb0db
)
This commit is contained in:
parent
06d9a245fe
commit
08fc048018
|
@ -41,6 +41,9 @@ Release 2.7.3 - UNRELEASED
|
||||||
HDFS-8791. block ID-based DN storage layout can be very slow for datanode
|
HDFS-8791. block ID-based DN storage layout can be very slow for datanode
|
||||||
on ext4 (Chris Trezzo via kihwal)
|
on ext4 (Chris Trezzo via kihwal)
|
||||||
|
|
||||||
|
HDFS-9048. DistCp documentation is out-of-dated
|
||||||
|
(Daisuke Kobayashi via iwasakims)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
HDFS-8845. DiskChecker should not traverse the entire tree (Chang Li via
|
HDFS-8845. DiskChecker should not traverse the entire tree (Chang Li via
|
||||||
|
|
|
@ -406,12 +406,13 @@ $H3 Map sizing
|
||||||
|
|
||||||
$H3 Copying Between Versions of HDFS
|
$H3 Copying Between Versions of HDFS
|
||||||
|
|
||||||
For copying between two different versions of Hadoop, one will usually use
|
For copying between two different major versions of Hadoop (e.g. between 1.X
|
||||||
HftpFileSystem. This is a read-only FileSystem, so DistCp must be run on the
|
and 2.X), one will usually use WebHdfsFileSystem. Unlike the previous
|
||||||
destination cluster (more specifically, on NodeManagers that can write to the
|
HftpFileSystem, as webhdfs is available for both read and write operations,
|
||||||
destination cluster). Each source is specified as
|
DistCp can be run on both source and destination cluster.
|
||||||
`hftp://<dfs.http.address>/<path>` (the default `dfs.http.address` is
|
Remote cluster is specified as `webhdfs://<namenode_hostname>:<http_port>`.
|
||||||
`<namenode>:50070`).
|
When copying between same major versions of Hadoop cluster (e.g. between 2.X
|
||||||
|
and 2.X), use hdfs protocol for better performance.
|
||||||
|
|
||||||
$H3 MapReduce and other side-effects
|
$H3 MapReduce and other side-effects
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue