use of org.apache.apex.malhar.contrib.misc.streamquery.condition.EqualValueCondition in project apex-malhar by apache.
the class HavingOperatorTest method testSqlGroupBy.
@SuppressWarnings({ "rawtypes", "unchecked" })
@Test
public void testSqlGroupBy() throws Exception {
// create operator
GroupByHavingOperator oper = new GroupByHavingOperator();
oper.addColumnGroupByIndex(new ColumnIndex("b", null));
FunctionIndex sum = new SumFunction("c", null);
oper.addAggregateIndex(sum);
// create having condition
HavingCondition having = new HavingCompareValue<Double>(sum, 6.0, 0);
oper.addHavingCondition(having);
EqualValueCondition condition = new EqualValueCondition();
condition.addEqualValue("a", 1);
oper.setCondition(condition);
CollectorTestSink sink = new CollectorTestSink();
oper.outport.setSink(sink);
oper.setup(null);
oper.beginWindow(1);
HashMap<String, Object> tuple = new HashMap<String, Object>();
tuple.put("a", 1);
tuple.put("b", 1);
tuple.put("c", 2);
oper.inport.process(tuple);
tuple = new HashMap<String, Object>();
tuple.put("a", 1);
tuple.put("b", 1);
tuple.put("c", 4);
oper.inport.process(tuple);
tuple = new HashMap<String, Object>();
tuple.put("a", 1);
tuple.put("b", 2);
tuple.put("c", 6);
oper.inport.process(tuple);
tuple = new HashMap<String, Object>();
tuple.put("a", 1);
tuple.put("b", 2);
tuple.put("c", 7);
oper.inport.process(tuple);
oper.endWindow();
oper.teardown();
LOG.debug("{}", sink.collectedTuples);
}
use of org.apache.apex.malhar.contrib.misc.streamquery.condition.EqualValueCondition in project apex-malhar by apache.
the class Application method getFilteredMessagesOperator.
private SelectOperator getFilteredMessagesOperator(String name, DAG dag) {
SelectOperator oper = dag.addOperator(name, new SelectOperator());
oper.addIndex(new ColumnIndex(APACHE_KEYS.host.value, null));
oper.addIndex(new ColumnIndex(APACHE_KEYS.request.value, null));
oper.addIndex(new ColumnIndex(APACHE_KEYS.response.value, null));
EqualValueCondition condition = new EqualValueCondition();
condition.addEqualValue(APACHE_KEYS.response.value, "404");
oper.setCondition(condition);
return oper;
}
Aggregations