In Hadoop we always putting input file manually through -put command. Is there any way we can automate this process ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
There is no automated process of inputing a file into the Hadoop filesystem. However, it is possible to -put or -get multiple files with one command. Here is the website for the Hadoop shell commands http://hadoop.apache.org/common/docs/r0.18.3/hdfs_shell.html |
|||
|
|
|
I am not sure how many files you are dropping into HDFS, but one solution for watching for files and then dropping them in is Apache Flume. These slides provide a decent intro. |
|||
|
|
You can thing of automatic this process with Fabric library and python. Write hdfs put command in a function and you can call it for multiple file and perform same operations of multiple hosts in network. Fabric should be really helpful to automate in your scenario. |
|||
|
|