Is there a way to run hadoop commands in the mapper?
For example I want to run
hdfs dfs -text /path/to/file
and I will use that output for my mapper logic. Or is there an alternative?
Such as running the command hdfs dfs -text /path/to/file as a subprocess with Java