I have a method which as an argument has an iterator to the collection. Inside the method I want to copy the collection the iterator is "pointing to". However only the last collection entry is present in the collection copy, it is present N times, where N is the size of the original collection.
public void someMethod(Iterator<Node> values) {
Vector<Node> centralNodeNeighbourhood = new Vector<Node>();
while (values.hasNext()) {
Node tmp = values.next();
centralNodeNeighbourhood.add(tmp);
}
...
//store the centralNodeNeighbourhood on disk
}
Exemplar "original collection":
1
2
3
Exemplar "centralNodeNeighbourhood collection":
3
3
3
Can someone point me to my mistake? I can not change the method args, I only get the Iterator to the collection, can't do anything about it.
UPDATE (Answer to some questions)
while (values.hasNext()) {
Node tmp = values.next();
System.out.print("Adding = "+tmp.toString());
centralNodeNeighbourhood.add(tmp);
}
Prints proper original collection elements. I don't know what type is the original collection, but the Iterator is from std java. The method is the
public class GatherNodeNeighboursInfoReducer extends MapReduceBase
implements Reducer<IntWritable, Node, NullWritable, NodeNeighbourhood>{
public void reduce(IntWritable key, Iterator<Node> values,
OutputCollector<NullWritable, NodeNeighbourhood> output, Reporter reporter) throws IOException {...}
}
method from OLD Hadoop api (Hadoop version 0.20.203.0)
SOLVED I made a copy of tmp object at each iteration, and I add this copy to the centralNodeNeighbourhood collection. This solved my problem. Thx for all your (fast) help.
tmpin this loop does it show what you expect? – Dave Newton Nov 29 '11 at 18:07