/** * Licensed to DigitalPebble Ltd under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * DigitalPebble licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.digitalpebble.stormcrawler.sql; import com.digitalpebble.stormcrawler.ConfigurableTopology; import com.digitalpebble.stormcrawler.Constants; import com.digitalpebble.stormcrawler.bolt.FetcherBolt; import com.digitalpebble.stormcrawler.bolt.JSoupParserBolt; import com.digitalpebble.stormcrawler.bolt.SiteMapParserBolt; import com.digitalpebble.stormcrawler.bolt.URLPartitionerBolt; import com.digitalpebble.stormcrawler.indexing.StdOutIndexer; import org.apache.storm.metric.LoggingMetricsConsumer; import org.apache.storm.topology.TopologyBuilder; import org.apache.storm.tuple.Fields; /** * Dummy topology to play with the spouts and bolts */ public class CrawlTopology extends ConfigurableTopology { public static void main(String[] args) throws Exception { ConfigurableTopology.start(new CrawlTopology(), args); } @Override protected int run(String[] args) { int numBuckets = 10; TopologyBuilder builder = new TopologyBuilder(); builder.setSpout("spout", new SQLSpout()).setNumTasks(numBuckets); builder.setBolt("partitioner", new URLPartitionerBolt()) .shuffleGrouping("spout"); builder.setBolt("fetch", new FetcherBolt()).fieldsGrouping( "partitioner", new Fields("key")); builder.setBolt("sitemap", new SiteMapParserBolt()) .localOrShuffleGrouping("fetch"); builder.setBolt("parse", new JSoupParserBolt()).localOrShuffleGrouping( "sitemap"); builder.setBolt("index", new StdOutIndexer()).localOrShuffleGrouping( "parse"); builder.setBolt("status", new StatusUpdaterBolt(numBuckets)) .localOrShuffleGrouping("fetch", Constants.StatusStreamName) .localOrShuffleGrouping("sitemap", Constants.StatusStreamName) .localOrShuffleGrouping("index", Constants.StatusStreamName) .localOrShuffleGrouping("parse", Constants.StatusStreamName); conf.registerMetricsConsumer(LoggingMetricsConsumer.class); return submit("crawl", conf, builder); } }