blob: d56b3ce2e4b87c7f69b37f9288444313c6164d87 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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 org.apache.apex.examples.dedup;
import java.util.Date;
import java.util.Random;
import org.apache.apex.malhar.lib.dedup.TimeBasedDedupOperator;
import org.apache.hadoop.conf.Configuration;
import com.datatorrent.api.Context;
import com.datatorrent.api.DAG;
import com.datatorrent.api.DefaultOutputPort;
import com.datatorrent.api.InputOperator;
import com.datatorrent.api.StreamingApplication;
import com.datatorrent.api.annotation.ApplicationAnnotation;
import com.datatorrent.common.util.BaseOperator;
import com.datatorrent.lib.io.ConsoleOutputOperator;
@ApplicationAnnotation(name = "DedupExample")
/**
* @since 3.7.0
*/
public class Application implements StreamingApplication
{
@Override
public void populateDAG(DAG dag, Configuration conf)
{
// Test Data Generator Operator
RandomDataGeneratorOperator gen = dag.addOperator("RandomGenerator", new RandomDataGeneratorOperator());
// Dedup Operator. Configuration through resources/META-INF/properties.xml
TimeBasedDedupOperator dedup = dag.addOperator("Deduper", new TimeBasedDedupOperator());
// Console output operator for unique tuples
ConsoleOutputOperator consoleUnique = dag.addOperator("ConsoleUnique", new ConsoleOutputOperator());
// Console output operator for duplicate tuples
ConsoleOutputOperator consoleDuplicate = dag.addOperator("ConsoleDuplicate", new ConsoleOutputOperator());
// Console output operator for duplicate tuples
ConsoleOutputOperator consoleExpired = dag.addOperator("ConsoleExpired", new ConsoleOutputOperator());
// Streams
dag.addStream("Generator to Dedup", gen.output, dedup.input);
// Connect Dedup unique to Console
dag.addStream("Dedup Unique to Console", dedup.unique, consoleUnique.input);
// Connect Dedup duplicate to Console
dag.addStream("Dedup Duplicate to Console", dedup.duplicate, consoleDuplicate.input);
// Connect Dedup expired to Console
dag.addStream("Dedup Expired to Console", dedup.expired, consoleExpired.input);
// Set Attribute TUPLE_CLASS for supplying schema information to the port
dag.setInputPortAttribute(dedup.input, Context.PortContext.TUPLE_CLASS, TestEvent.class);
// Uncomment the following line to create multiple partitions for Dedup operator. In this case: 2
// dag.setAttribute(dedup, Context.OperatorContext.PARTITIONER, new StatelessPartitioner<TimeBasedDedupOperator>(2));
}
public static class RandomDataGeneratorOperator extends BaseOperator implements InputOperator
{
public final transient DefaultOutputPort<TestEvent> output = new DefaultOutputPort<>();
private final transient Random r = new Random();
private int tuplesPerWindow = 100;
private transient int count = 0;
@Override
public void beginWindow(long windowId)
{
count = 0;
}
@Override
public void emitTuples()
{
if (count++ > tuplesPerWindow) {
return;
}
TestEvent event = new TestEvent();
event.id = r.nextInt(100);
event.eventTime = new Date(System.currentTimeMillis() - (r.nextInt(60 * 1000)));
output.emit(event);
}
}
public static class TestEvent
{
private int id;
private Date eventTime;
public TestEvent()
{
}
public int getId()
{
return id;
}
public void setId(int id)
{
this.id = id;
}
public Date getEventTime()
{
return eventTime;
}
public void setEventTime(Date eventTime)
{
this.eventTime = eventTime;
}
@Override
public String toString()
{
return "TestEvent [id=" + id + ", eventTime=" + eventTime + "]";
}
}
}