-
Notifications
You must be signed in to change notification settings - Fork 2
/
aggregations.dat
36 lines (32 loc) · 1.12 KB
/
aggregations.dat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Count records
SCENARIO;IB-Count;Count records
OPERATION;IB-Count;COUNT
GROUPINGFIELDOFFSET;IB-Count;1
GROUPINGFIELDOFFSET;IB-Count;2
GROUPINGFIELDOFFSET;IB-Count;3
INPFIELDOFFSET;IB-Count;4
OUTPUTFILE;IB-Count;IB-Count.txt
#Create the sum scenario - don't define an output because we are merging
SCENARIO;IB-SumDuration;Sum Duration
OPERATION;IB-SumDuration;SUM
GROUPINGFIELDOFFSET;IB-SumDuration;1
GROUPINGFIELDOFFSET;IB-SumDuration;2
GROUPINGFIELDOFFSET;IB-SumDuration;3
INPFIELDOFFSET;IB-SumDuration;4
#OUTPUTFILE;IB-SumDuration;IB-Sum.txt
#Create the sum scenario - don't define an output because we are merging
SCENARIO;IB-SumCost;Sum Duration
OPERATION;IB-SumCost;SUM
GROUPINGFIELDOFFSET;IB-SumCost;1
GROUPINGFIELDOFFSET;IB-SumCost;2
GROUPINGFIELDOFFSET;IB-SumCost;3
INPFIELDOFFSET;IB-SumCost;5
#OUTPUTFILE;IB-SumCost;IB-Sum.txt
# AggJB will trigger both the sum and the count
KEY;IB-Count;InterconnectBilling
KEY;IB-SumDuration;InterconnectBilling
KEY;IB-SumCost;InterconnectBilling
# Merge the output of the Sum into the Count
MERGEOUTPUT;IB-Count;IB-Count;1
MERGEOUTPUT;IB-SumDuration;IB-Count;2
MERGEOUTPUT;IB-SumCost;IB-Count;3