Use IndexMerger for conversion

This commit is contained in:
Charles Allen 2015-06-01 14:44:20 -07:00
parent 0004ba249f
commit 6230ac90ae
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);
}