/** * Copyright 2012 - CommonCrawl Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * **/ package org.commoncrawl.mapred.pipelineV3.domainmeta.crawlstats; import java.io.IOException; import java.text.NumberFormat; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.apache.hadoop.fs.Path; import org.apache.hadoop.mapred.JobClient; import org.apache.hadoop.mapred.JobConf; import org.commoncrawl.crawl.common.internal.CrawlEnvironment; import org.commoncrawl.mapred.pipelineV3.CrawlPipelineStep; import org.commoncrawl.mapred.pipelineV3.CrawlPipelineTask; import org.commoncrawl.mapred.pipelineV3.domainmeta.DomainMetadataTask; import org.commoncrawl.mapred.pipelineV3.domainmeta.rank.GenSuperDomainListStep; import org.commoncrawl.util.JobBuilder; import org.commoncrawl.util.TextBytes; import com.google.common.collect.ImmutableList; /** * * @author rana * */ public class CrawlDBStatsCollectorStep extends CrawlPipelineStep { public static final String OUTPUT_DIR_NAME = "crawlDBStats"; private static final Log LOG = LogFactory.getLog(CrawlDBStatsCollectorStep.class); private static final NumberFormat NUMBER_FORMAT = NumberFormat.getInstance(); static { NUMBER_FORMAT.setMinimumIntegerDigits(5); NUMBER_FORMAT.setGroupingUsed(false); } public CrawlDBStatsCollectorStep(CrawlPipelineTask task) { super(task, "Crawl DB Stats Collector", OUTPUT_DIR_NAME); } @Override public Log getLogger() { return LOG; } @Override public void runStep(Path outputPathLocation) throws IOException { LOG.info("Task Identity Path is:" + getTaskIdentityPath()); LOG.info("Temp Path is:" + outputPathLocation); DomainMetadataTask rootTask = findTaskOfType(DomainMetadataTask.class); ImmutableList<Path> paths = new ImmutableList.Builder<Path>().addAll(rootTask.getMergeDBDataPaths()).build(); Path superDomainListPath = new Path(getOutputDirForStep(GenSuperDomainListStep.class), "part-00000"); JobConf job = new JobBuilder(getPipelineStepName() + " - Phase 1", getConf()) .inputIsSeqFile() .inputs(paths) .mapper(StatsAggregationMapper.class) .mapperKeyValue(TextBytes.class, TextBytes.class) .reducer(StatsAggregationReducer.class, false) .outputKeyValue(TextBytes.class, TextBytes.class) .numReducers(CrawlEnvironment.NUM_DB_SHARDS) .outputIsSeqFile().output(outputPathLocation) .set(CrawlStatsCollectorTask.SUPER_DOMAIN_FILE_PATH, superDomainListPath.toString()) .build(); LOG.info("Running Step 1"); JobClient.runJob(job); LOG.info("Done Running Step 1"); } }