Is there any way to concatenate/append a local file to a file on HDFS without copying down the HDFS file locally first?
I tried: bin/hadoop dfs -cat file:///[local file] >> hdfs://[hdfs file] But it just tries to look for hdfs://[hdfs file] as a local file, since I suppose the dfs -cat command doesn't support the >> operator. Thanks. -- -Turner Kunkel