TupleWritable value in mapper Not getting cleaned up ( using CompositeInputFormat )

2013-03-20 Thread Rusia, Devansh
Hi, I am trying to do an outer join on to input files. But while joining the TupleWritable value in the mapper is not getting cleaned up and so is using the previous values of a different key. The code I used is : ( 'plist' is containing the set of paths to be taken as input ) jobConf.setInp

TupleWritable value in mapper Not getting cleaned up ( using CompositeInputFormat )

2013-03-21 Thread devansh kumar
Hi,   I am trying to do an outer join on to input files. Can anyone help me to find out the problem here??   But while joining the TupleWritable value in the mapper is not getting cleaned up and so is using the previous values of a different key.   The code I used is : (  ‘plist’ is containing the

Re: TupleWritable value in mapper Not getting cleaned up ( using CompositeInputFormat )

2013-03-21 Thread Artem Onuchin
Hello! As I remember in TupleWritable there is method hasWritable. You shuld call it in mapper to check if Writable of input 'i' is not null for each record. 22.03.2013 10:39 пользователь "devansh kumar" написал: > Hi, > ** ** > I am trying to do an outer join on to input files. > Can an