I want to pipe my hadoop streaming job. For example I had run a command hadoop jar hadoop-streaming.jar -mapper map1.py -reducer reducer.py -input xx -output /output1
But I want to use output from step one to be an input for my step two of mapreduce job without storing in hdfs maybe output as stdout. Is there something like linux pipe? Such as hadoop jar hadoop-streaming.jar -mapper map1.py -reducer reducer.py -input xx | hadoop jar hadoop-streaming.jar -mapper map2.py -reducer reducer2.py -output /output