Merge pull request #1409 from metamx/convertTaskMerger

Converter to use TaskMerger not TaskMaker
This commit is contained in:
Xavier Léauté 2015-06-10 11:58:52 -07:00
commit 7fd9dcff48
2 changed files with 3 additions and 3 deletions

View File

@ -33,7 +33,7 @@ import com.metamx.common.ISE;
import com.metamx.common.logger.Logger;
import io.druid.indexer.JobHelper;
import io.druid.segment.IndexIO;
import io.druid.segment.IndexMaker;
import io.druid.segment.IndexMerger;
import io.druid.timeline.DataSegment;
import org.apache.commons.io.FileUtils;
import org.apache.hadoop.conf.Configuration;
@ -508,7 +508,7 @@ public class HadoopConverterJob
if (!outDir.mkdir() && (!outDir.exists() || !outDir.isDirectory())) {
throw new IOException(String.format("Could not create output directory [%s]", outDir));
}
IndexMaker.convert(
IndexMerger.convert(
inDir,
outDir,
config.getIndexSpec(),

View File

@ -229,7 +229,7 @@ public class IndexIO
return true;
default:
if (forceIfCurrent) {
IndexMaker.convert(toConvert, converted, indexSpec);
IndexMerger.convert(toConvert, converted, indexSpec);
if(validate){
DefaultIndexIOHandler.validateTwoSegments(toConvert, converted);
}