Can I write text from the command line in Hadoop?
Trying to do something similar to the unix write / append to file command.
echo "hello world" > hello_world.txt
In the land of Hadoop, I would expect this to work, but the teams do not.
hadoop fs -appendToFile "foo bar" /dir/hadoop/hello_world.txt hadoop fs -put "hello world" /dir/hadoop/hello_world.txt
source share