private String startCreationJob(int bytesPerEntity, int entitiesPerShard, int shardCount) {
return MapReduceJob.start(
MapReduceSpecification.of(
"Create MapReduce entities",
new ConsecutiveLongInput(0, entitiesPerShard * (long) shardCount, shardCount),
new EntityCreator("MapReduceTest", bytesPerEntity),
Marshallers.getVoidMarshaller(),
Marshallers.getVoidMarshaller(),
NoReducer.<Void, Void, Void>create(),
NoOutput.<Void, Void>create(1)),