문제

I want to chain 3 rounds of MapReduce and at the third one to be able to read the original input as well as the output of the second job. Is this at all possible?

도움이 되었습니까?

해결책

You could setup the last Job to use 2 mappers one of which can have the original file as the input. Assuming you would need to reduce both the inputs (input of first job & output of second job) on some common key. MultipleInputs

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top