Hi,
You can add Thread.sleep(x);
For example,
@Override
public void bsp(
BSPPeer<NullWritable, NullWritable, Text, DoubleWritable,
DoubleWritable> peer)
throws IOException, SyncException, InterruptedException {
…
Thread.sleep(1000000);
peer.sync();
}
--
Best Regards, Edward J. Yoon
@eddieyoon
2013. 7. 29., 오후 1:58, Júlio Pires <[email protected]> 작성:
> Hello,
>
> I'm testing some examples present in Hama.
> However, I am looking for some with "considerable" processing time (in
> minutes or hours).
>
> Unfortunately, modifying some parameters in examples, the majority has
> completed in less than 20 seconds.
>
> Does anyone know how I can increase the processing time, find other
> examples for benchmarking or which parameters/files can change in examples?
>
> Thank you.