ITuple.class, NullWritable.class);
job.setTupleReducer(new IdentityTupleReducer());
// Add multi-output: English index
job.setOutput(new Path(output), new TupleSolrOutputFormat(new File("src/test/resources/solr-en"),
conf), ITuple.class, NullWritable.class);
Job hadoopJob = job.createJob();
try {
hadoopJob.waitForCompletion(true);
if(!hadoopJob.isSuccessful()) {
throw new PangoolRuntimeException("Job was not sucessfull");
}