Github user revans2 commented on a diff in the pull request: https://github.com/apache/storm/pull/2203#discussion_r128583930 --- Diff: examples/storm-starter/src/jvm/org/apache/storm/starter/ReliableWordCount.java --- @@ -0,0 +1,121 @@ +package org.apache.storm.starter; + +import org.apache.storm.Config; +import org.apache.storm.LocalCluster; +import org.apache.storm.spout.SpoutOutputCollector; +import org.apache.storm.task.TopologyContext; +import org.apache.storm.topology.BasicOutputCollector; +import org.apache.storm.topology.OutputFieldsDeclarer; +import org.apache.storm.topology.TopologyBuilder; +import org.apache.storm.topology.base.BaseBasicBolt; +import org.apache.storm.topology.base.BaseRichSpout; +import org.apache.storm.tuple.Fields; +import org.apache.storm.tuple.Tuple; +import org.apache.storm.tuple.Values; +import org.apache.storm.utils.Utils; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import java.util.HashMap; +import java.util.Map; +import java.util.Random; +import java.util.UUID; + + +public class ReliableWordCount { + public static class RandomSentenceSpout extends BaseRichSpout { --- End diff -- Actually this entire class is almost a duplicate of ./examples/storm-starter/src/jvm/org/apache/storm/starter/FastWordCountTopology.java could we look at combining the two?
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---