| String keySchema = getKeySchema();
String valSchema = getValueSchema();
new VoldemortStoreBuilderJob(this.getId() + "-build-store",
props,
new VoldemortStoreBuilderConf(replicationFactor,
chunkSize,
tempDir,
outputDir,
inputPath,
cluster,
storeDefs,
storeName,
keySelection,
valSelection,
null,
null,
checkSumType,
saveKeys,
reducerPerBucket,
numChunks,
keyField,
valueField,
recSchema,
keySchema,
valSchema), true).run();
return outputDir.toString();
}
new VoldemortStoreBuilderJob(this.getId() + "-build-store",
props,
new VoldemortStoreBuilderConf(replicationFactor,
chunkSize,
tempDir,
outputDir,
inputPath,
cluster,
|