blob: 7f3ffa36403e608d308796b26789430e4bdd7e3e [file] [log] [blame]
// Copyright 2016 Twitter. All rights reserved.
//
// Licensed 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.twitter.heron.integration_test.topology.fields_grouping;
import java.net.MalformedURLException;
import com.twitter.heron.api.tuple.Fields;
import com.twitter.heron.integration_test.common.AbstractTestTopology;
import com.twitter.heron.integration_test.common.bolt.CountAggregatorBolt;
import com.twitter.heron.integration_test.common.bolt.WordCountBolt;
import com.twitter.heron.integration_test.common.spout.ABSpout;
import com.twitter.heron.integration_test.core.TestTopologyBuilder;
/**
* Topology to test fields grouping
*/
public final class FieldsGrouping extends AbstractTestTopology {
private FieldsGrouping(String[] args) throws MalformedURLException {
super(args);
}
@Override
protected TestTopologyBuilder buildTopology(TestTopologyBuilder builder) {
builder.setSpout("ab-spout", new ABSpout(), 1, 400);
builder.setBolt("count-bolt", new WordCountBolt(), 2)
.fieldsGrouping("ab-spout", new Fields("word"));
builder.setBolt("sum-bolt", new CountAggregatorBolt(), 1)
.noneGrouping("count-bolt");
return builder;
}
public static void main(String[] args) throws Exception {
FieldsGrouping topology = new FieldsGrouping(args);
topology.submit();
}
}