Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to use multiple files (actually 2 files) as a input files.

they are having same patterns of data. finally, I wanna get to diff datas from two input files.

for example, in a A input file,

A 1
B 2
C 3

in a B input file,

A 1
C 3
D 4

In the end, I wanna generate an output file like

B 2

(yes, this is the result from A - B).

How could I reach this situation on a hadoop?

share|improve this question

2 Answers

Sure, especially if you don't care about the order of the lines.

First, have your mapper emit (line, filename) pairs:

File A:
(0, "A 1")→("A 1", A)
(4, "B 2")→("B 2", A)
(8, "C 3")→("C 3", A)
File B:
(0, "A 1")→("A 1", B)
(4, "C 3")→("C 3", B)
(8, "D 4")→("D 4", B)

(This assumes you're using TextInputFormat as the InputFormat, so the incoming key is the position in the file. You can get the filename with ((FileSplit) context.getInputSplit()).getPath() in the map function.)

In the reduce phase, Hadoop will collect the values (filenames) associated with each key (line), and pass this to your reducer. In your reducer, you should only emit lines that have just the filename, A, and don't emit anything for the others:

("A 1",{A,B})→nothing
("B 2",{A})→"B 2"
("C 3",{A,B})→nothing
("D 4",{B})→nothing

The result will be just the lines that are in only file A.

share|improve this answer

thanks for your answer.

now, I have several questions more based on it.

Would you describe the reason your specify 0, 4, 8 in the beginning of each line? (I mean that A, B C in a file do not mean file name, it just a key) Ok. briefly, here is more clear example to give my question.

in a file A,
Z123 nike   100
Z456 adidas  90
Z789 puma   110
Z012 reebok  80

in a file B,
Z123 nike   100
Z456 adidas 110
Z455 asics   70
Z012 reebok  80

base on those files, I wanna get the result like the following.

in a file output,
Z123 nike   100 (not changed)
Z456 adidas 110 (changed)
Z789 puma   110 (deleted)
Z455 asics   70 (inserted)
Z012 reebok  80 (not changed)

and it's not easy to change input files to emit line and filename in a pair for me. (the given data's size is quite huge (about 500G) and so many files are existed)

Could you provide some examples to test your idea?

thanks Bkkbrad.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.