On Tue, Apr 3, 2012 at 8:01 AM, Pedro Costa <psdc1...@gmail.com> wrote: > If I want to compare 2 sequence files to see if they are the same, how do I > compare?
>From the command line, you can "textify" the files with: hadoop fs -text myfile.seq Of course, if you are using API you can iterate through the two Sequence files and compare them row by row. -- Owen