I have a simple shell script that I'd like to use to move log files into my Hadoop cluster.
When I invoke the the shell script in my Java program, the script can not be found "Hadoop Commands", and I do not take any action.
For instance, I would like to run the following command:
#!/bin/bash
hadoop fs -put /home/can/workspace2/myWebApp/tweets.txt /user/training/tweetFolder
How can I solve this in a simple manner?
/full/path/to/hadoop fs ...? Good luck.