Search in sources :

Example 1 with MapReduceOperationCounter

use of com.hazelcast.simulator.tests.map.helpers.MapReduceOperationCounter in project hazelcast-simulator by hazelcast.

the class MapReduceTest method globalVerify.

@Verify(global = true)
public void globalVerify() {
    MapReduceOperationCounter total = new MapReduceOperationCounter();
    for (MapReduceOperationCounter operationCounter : operationCounterList) {
        total.add(operationCounter);
    }
    logger.info(name + ": " + total + " from " + operationCounterList.size() + " worker threads");
}
Also used : MapReduceOperationCounter(com.hazelcast.simulator.tests.map.helpers.MapReduceOperationCounter) Verify(com.hazelcast.simulator.test.annotations.Verify)

Aggregations

Verify (com.hazelcast.simulator.test.annotations.Verify)1 MapReduceOperationCounter (com.hazelcast.simulator.tests.map.helpers.MapReduceOperationCounter)1