I get multiple small files into my input directory which I want to merge into a single file without using the local file system or writing mapreds. Is there a way I could do it using hadoof fs commands or Pig?
Thanks!
|
|
|
|||||||
|
|
okay...I figured out a way using hadoop fs commands - hadoop fs -cat [dir]/* | hadoop fs -put - [destination file] It worked when I tested it...any pitfalls one can think of? Thanks! |
|||||
|
|
If you set up fuse to mount your HDFS to a local directory, then your output can be the mounted filesystem. For example, I have our HDFS mounted to
Of course, there are other reasons to use fuse to mount HDFS to a local directory, but this was a nice side effect for us. |
||||
|
|
|
You can use the tool HDFSConcat, new in HDFS 0.21, to perform this operation without incurring the cost of a copy. |
|||||
|
|
All the solutions are equivalent to doing a ($hadoop fs -cat [dir]/* > tmp_local_file ; hadoop fs -copyFromLocal tmp_local_file) ... it only means that the local m/c I/O is on the critical path of data transfer. |
|||
|
|