ColumnReference colC = new ColumnReference(_ic, 0);
ColumnReference colO = new ColumnReference(_ic, 1);
ComparisonPredicate C_O_comp = new ComparisonPredicate(ComparisonPredicate.EQUAL_OP, colC,
colO);
Component C_Ojoin = ThetaJoinComponentFactory
.createThetaJoinOperator(Theta_JoinType, relationCustomer, relationOrders,
_queryPlan).setHashIndexes(Arrays.asList(3))
.addOperator(new ProjectOperator(new int[] { 0, 1, 2, 3, 4, 5, 6, 7 }))
.setJoinPredicate(C_O_comp);
//-------------------------------------------------------------------------------------
List<Integer> hashNation = Arrays.asList(0);
ProjectOperator projectionNation = new ProjectOperator(new int[] { 0, 1 });
DataSourceComponent relationNation = new DataSourceComponent("NATION", dataPath + "nation"
+ extension, _queryPlan).setHashIndexes(hashNation).addOperator(projectionNation);
//-------------------------------------------------------------------------------------
ColumnReference colC_O = new ColumnReference(_ic, 3);
ColumnReference colN = new ColumnReference(_ic, 0);
ComparisonPredicate C_O_N_comp = new ComparisonPredicate(ComparisonPredicate.EQUAL_OP,
colC_O, colN);
Component C_O_Njoin = ThetaJoinComponentFactory
.createThetaJoinOperator(Theta_JoinType, C_Ojoin, relationNation, _queryPlan)
.addOperator(new ProjectOperator(new int[] { 0, 1, 2, 4, 5, 6, 7, 9 }))
.setHashIndexes(Arrays.asList(6)).setJoinPredicate(C_O_N_comp);
//-------------------------------------------------------------------------------------
List<Integer> hashLineitem = Arrays.asList(0);
SelectOperator selectionLineitem = new SelectOperator(new ComparisonPredicate(
new ColumnReference(_sc, 8), new ValueSpecification(_sc, MARK)));
ProjectOperator projectionLineitem = new ProjectOperator(new int[] { 0, 5, 6 });
DataSourceComponent relationLineitem = new DataSourceComponent("LINEITEM", dataPath
+ "lineitem" + extension, _queryPlan).setHashIndexes(hashLineitem)
.addOperator(selectionLineitem).addOperator(projectionLineitem);
//-------------------------------------------------------------------------------------
// set up aggregation function on the StormComponent(Bolt) where join is performed
//1 - discount
ValueExpression<Double> substract = new Subtraction(
new ValueSpecification(_doubleConv, 1.0), new ColumnReference(_doubleConv, 8));
//extendedPrice*(1-discount)
ValueExpression<Double> product = new Multiplication(new ColumnReference(_doubleConv, 7),
substract);
AggregateOperator agg = new AggregateSumOperator(product, conf)
//.setGroupByColumns(Arrays.asList(0, 1, 4, 6, 2, 3, 5));
.setGroupByColumns(Arrays.asList(0, 1, 4, 6, 2, 3, 5));
ColumnReference colC_O_N = new ColumnReference(_ic, 6);
ColumnReference colL = new ColumnReference(_ic, 0);
ComparisonPredicate C_O_N_L_comp = new ComparisonPredicate(ComparisonPredicate.EQUAL_OP,
colC_O_N, colL);
Component C_O_N_Ljoin = ThetaJoinComponentFactory
.createThetaJoinOperator(Theta_JoinType, C_O_Njoin, relationLineitem, _queryPlan)
.addOperator(new ProjectOperator(new int[] { 0, 1, 2, 3, 4, 5, 7, 9, 10 }))
.addOperator(agg).setJoinPredicate(C_O_N_L_comp);
//-------------------------------------------------------------------------------------