You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@storm.apache.org by ptgoetz <gi...@git.apache.org> on 2017/08/11 17:51:40 UTC

[GitHub] storm pull request #2203: STORM-2153: New Metrics Reporting API

Github user ptgoetz commented on a diff in the pull request:

    https://github.com/apache/storm/pull/2203#discussion_r132746643
  
    --- 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 --
    
    We actually have 5 variations of *RandomSentenceSpout. I'll look at combining them.


---
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 infrastructure@apache.org or file a JIRA ticket
with INFRA.
---