You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to haloop-user
Hi
I have Hadoop based iterative BFS program. I would like to migrate it
to Haloop (r408). The iteration stopping condition is a value of a
counter. As such:
long counter = 0;
while (counter !=0) {
//Job config and execution
....
Simply put when all nodes are visited the counter is equal to 0
(counter is incremented only when a new node is visited), thus
terminate execution. How I can achieve this behaviour under Haloop, is
it possible at all?