Package com.google.appengine.tools.mapreduce.inputs

Examples of com.google.appengine.tools.mapreduce.inputs.DatastoreKeyInput


        .setNumReducers(reduceShardCount)
        .build();
  }

  private MapSpecification<Key, Void, Void> getDeleteJobSpec(int mapShardCount) {
    DatastoreKeyInput input = new DatastoreKeyInput(datastoreType, mapShardCount);
    DeleteEntityMapper mapper = new DeleteEntityMapper();
    return new MapSpecification.Builder<Key, Void, Void>(input, mapper)
        .setJobName("Delete MapReduce entities")
        .build();
  }
View Full Code Here

TOP

Related Classes of com.google.appengine.tools.mapreduce.inputs.DatastoreKeyInput

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.