Open adofsauron opened 2 years ago
ACK! Nice job!
mysql> explain select
-> p_brand,
-> p_type,
-> p_size,
-> count(distinct ps_suppkey) as supplier_cnt
-> from
-> partsupp,
-> part
-> where
-> p_partkey = ps_partkey
-> and p_brand <> 'Brand#45'
-> and p_type not like 'MEDIUM POLISHED%'
-> and p_size in (49, 14, 23, 45, 19, 3, 36, 9)
-> and ps_suppkey not in (
-> select
-> s_suppkey
-> from
-> supplier
-> where
-> s_comment like '%Customer%Complaints%'
-> )
-> group by
-> p_brand,
-> p_type,
-> p_size
-> order by
-> supplier_cnt desc,
-> p_brand,
-> p_type,
-> p_size\G
*************************** 1. row ***************************
id: 1
select_type: SIMPLE
table: partsupp
partitions: NULL
type: index
possible_keys: PRIMARY
key: PRIMARY
key_len: 8
ref: NULL
rows: 7735092
filtered: 100.00
Extra: Using index; Using temporary; Using filesort
*************************** 2. row ***************************
id: 1
select_type: SIMPLE
table: <subquery2>
partitions: NULL
type: eq_ref
possible_keys: <auto_distinct_key>
key: <auto_distinct_key>
key_len: 5
ref: tpch.partsupp.ps_suppkey
rows: 1
filtered: 100.00
Extra: Using where; Not exists
*************************** 3. row ***************************
id: 1
select_type: SIMPLE
table: part
partitions: NULL
type: eq_ref
possible_keys: PRIMARY
key: PRIMARY
key_len: 4
ref: tpch.partsupp.ps_partkey
rows: 1
filtered: 40.00
Extra: Using where
*************************** 4. row ***************************
id: 2
select_type: MATERIALIZED
table: supplier
partitions: NULL
type: ALL
possible_keys: PRIMARY
key: NULL
key_len: NULL
ref: NULL
rows: 98754
filtered: 100.00
Extra: Using where
4 rows in set, 1 warning (0.00 sec)
mysql> select
-> p_brand,
-> p_type,
-> p_size,
-> count(distinct ps_suppkey) as supplier_cnt
-> from
-> partsupp,
-> part
-> where
-> p_partkey = ps_partkey
-> and p_brand <> 'Brand#45'
-> and p_type not like 'MEDIUM POLISHED%'
-> and p_size in (49, 14, 23, 45, 19, 3, 36, 9)
-> and ps_suppkey not in (
-> select
-> s_suppkey
-> from
-> supplier
-> where
-> s_comment like '%Customer%Complaints%'
-> )
-> group by
-> p_brand,
-> p_type,
-> p_size
-> order by
-> supplier_cnt desc,
-> p_brand,
-> p_type,
-> p_size
-> limit 10;
+----------+--------------------------+--------+--------------+
| p_brand | p_type | p_size | supplier_cnt |
+----------+--------------------------+--------+--------------+
| Brand#44 | STANDARD PLATED TIN | 9 | 120 |
| Brand#12 | STANDARD POLISHED COPPER | 14 | 100 |
| Brand#11 | LARGE BRUSHED STEEL | 36 | 96 |
| Brand#23 | PROMO BURNISHED STEEL | 14 | 96 |
| Brand#34 | MEDIUM BRUSHED STEEL | 23 | 96 |
| Brand#53 | PROMO BURNISHED BRASS | 36 | 96 |
| Brand#54 | STANDARD BRUSHED COPPER | 19 | 96 |
| Brand#32 | LARGE POLISHED COPPER | 14 | 95 |
| Brand#43 | LARGE PLATED COPPER | 19 | 95 |
| Brand#11 | SMALL BRUSHED STEEL | 9 | 92 |
+----------+--------------------------+--------+--------------+
10 rows in set (11.44 sec)
mysql> select
-> p_brand,
-> p_type,
-> p_size,
-> count(distinct ps_suppkey) as supplier_cnt
-> from
-> partsupp,
-> part
-> where
-> p_partkey = ps_partkey
-> and p_brand <> 'Brand#45'
-> and p_type not like 'MEDIUM POLISHED%'
-> and p_size in (49, 14, 23, 45, 19, 3, 36, 9)
-> and ps_suppkey not in (
-> select
-> s_suppkey
-> from
-> supplier
-> where
-> s_comment like '%Customer%Complaints%'
-> )
-> group by
-> p_brand,
-> p_type,
-> p_size
-> order by
-> supplier_cnt desc,
-> p_brand,
-> p_type,
-> p_size
-> limit 10;
+----------+---------------------------+--------+--------------+
| p_brand | p_type | p_size | supplier_cnt |
+----------+---------------------------+--------+--------------+
| Brand#44 | STANDARD PLATED TIN | 9 | 120 |
| Brand#33 | STANDARD BURNISHED COPPER | 42 | 116 |
| Brand#24 | SMALL BURNISHED NICKEL | 11 | 104 |
| Brand#33 | SMALL BURNISHED NICKEL | 12 | 104 |
| Brand#41 | ECONOMY POLISHED BRASS | 16 | 104 |
| Brand#51 | PROMO PLATED STEEL | 28 | 104 |
| Brand#55 | ECONOMY BURNISHED NICKEL | 21 | 104 |
| Brand#11 | ECONOMY ANODIZED COPPER | 28 | 100 |
| Brand#11 | ECONOMY POLISHED COPPER | 41 | 100 |
| Brand#12 | ECONOMY ANODIZED STEEL | 31 | 100 |
+----------+---------------------------+--------+--------------+
10 rows in set (1 min 20.25 sec)
purpose:
How do I get the table tuple description, how many rows, how many columns, how many packs?
What are the rules for dividing a tablespace into intervals, how many worker threads are started, and how many intervals are handled by each worker thread?
GroupByWrapper
currently stores the complete information of the table and holds the identity information of whether a row of the column has a block of data, which makes it impossible for multiple threads to process the class in parallel. Whether to maintain a GroupByWrapper class in each thread to store only the information about the current tuple range, so that the worker thread can handle it independently
The GroupByWrapper
class stores the information of the matching aggregation column, which is the same in each worker thread. Whether to separate the information of the aggregation column into a separate data structure, each worker thread will read only
Should we also use the current encapsulation layers of GroupByWrapper
and GroupTable
, GroupDistinctTable
and GroupDistinctCache
, and does that really cut functionality correctly? What is the maintenance cost? Is it already the optimal class organization structure?
The ValueMatchingTable
class, which previously stored aggregated data, should now be replaced with a Parallel Hash Map
, which would otherwise require data to be stored in each worker thread. Finally, the data in each worker thread is copied together to do a global aggregate processing operation. The performance overhead of memory copy is huge and unacceptable. How does the interface of the Parallel Hash Map class combine with the logic of the upper-level traversal aggregation when replacing a local hash?
When writing aggregate data, how does a parallel Hash map
perform aggregation operation with existing data to form a unified result? How to ensure the correctness of aggregate summary results?
What are the lock rules when a parallel Hash map
involves multiple threads competing to write the value of the same aggregation condition? How can I avoid overwriting the results of different worker threads?
It is necessary to establish the mathematical model of aggregate processing of relational algebra first, and implement the mathematical model under the premise of mathematical rules
Projection is relational algebra's counterpart of existential quantification in predicate logic. The attributes not included correspond to existentially quantified variables in the predicate whose extension the operand relation represents. The example below illustrates this point.
Because of the correspondence with existential quantification, some authorities prefer to define projection in terms of the excluded attributes. In a computer language it is of course possible to provide notations for both, and that was done in ISBL and several languages that have taken their cue from ISBL.
A nearly identical concept occurs in the category of monoids, called a string projection, which consists of removing all of the letters in the string that do not belong to a given alphabet.
When implemented in SQL standard the "default projection" returns a multiset instead a set, and the π projection is obtained by the addition of the DISTINCT keyword to eliminate duplicate data.
Πa1,a2,a3...ak( r )
πname,SUM(length)σMIN(year)<1930γname,MIN(year),SUM(length)σcert = producer(MovieExec×Movie)
γ grouping_attribute, func(A) → name(R)
Example
$\gamma_{A, \ \text{min}(B) \ \to \ D} \left( \begin{array}{ c | c | c }
A & B & C \ \hline \hline 1 & 2 & a \ 1 & 3 & b \ 2 & 3 & c \ 2 & 4 & a \ 2 & 5 & d \ \end{array} \right) = \begin{array}{ c | c | c }
A & D \ \hline \hline 1 & 2 \ 2 & 3 \ \end{array} $
Only mathematical rules can describe existing code logic, so mathematical modeling is used
The engine code can only be mathematically modeled to achieve domain-driven design, and it can only be mathematically understood. This is the way
This makes it impossible to understand and optimize the corresponding code according to the idea of modularity. It needs to understand the relational algebraic operation rules behind it, and then optimize from the mathematical model, and then use formal verification. The last step is to write the mathematical model to the code from the beginning to the end. Changing just one piece violates the domain model
VC=Column
Pack=<VC>
R=<Pack>
Row=Column(line)
Iterator=<Row>
Vector=<Iter>
EachWorker={Vec1,Vec2...}
Aggrega={EachWorker}
=P1{Vec1,Vec2...}+P2+...
=P1{PackRow(Vec1)) => Hash[row]->line]}
[2022-08-21 10:57:51.504922] [45954] [INFO] [aggregation_algorithm.cpp:49] MSG: Aggregate numOfAttrs: 4 packpower: 16 NumOfObj: -1 NumOfTables: 2 NumOfTuples: 7422784 distinct: false
[2022-08-21 10:57:51.504980] [45954] [INFO] [aggregation_algorithm.cpp:69] MSG: Aggregate AddGroupingColumn attr_num: 0 col: 0
[2022-08-21 10:57:51.505004] [45954] [INFO] [aggregation_algorithm.cpp:69] MSG: Aggregate AddGroupingColumn attr_num: 1 col: 1
[2022-08-21 10:57:51.505011] [45954] [INFO] [aggregation_algorithm.cpp:69] MSG: Aggregate AddGroupingColumn attr_num: 2 col: 2
[2022-08-21 10:57:51.505024] [45954] [INFO] [aggregation_algorithm.cpp:127] MSG: Aggregate AddAggregatedColumn col: 3 max_no_of_distinct: 100000 min_v: 1 max_v: 100000 max_size: 11
[2022-08-21 10:57:51.540405] [45954] [INFO] [aggregation_algorithm.cpp:238] MSG: NumOfDimensions: 2 NumOfTuples: 7422784
[2022-08-21 21:41:28.927878] [67237] [INFO] [aggregation_algorithm.cpp:896] MSG: ReadyDist threads: 4 packnum: 154 loopcnt: 4 num: 38 mod: 2
The accessibility of iterators and identity processing after splitting is not properly considered
void AggregationWorkerEnt::PrepShardingCopy(MIIterator *mit, GroupByWrapper *gb_sharding,
std::vector<std::unique_ptr<GroupByWrapper>> *vGBW) {
DimensionVector dims(mind->NumOfDimensions());
std::unique_ptr<GroupByWrapper> gbw_ptr(new GroupByWrapper(*gb_sharding));
gbw_ptr->FillDimsUsed(dims);
gbw_ptr->SetDistinctTuples(mit->NumOfTuples());
if (!gbw_ptr->IsOnePass()) gbw_ptr->InitTupleLeft(mit->NumOfTuples());
gbw_ptr->AddAllGroupingConstants(*mit);
std::scoped_lock guard(mtx);
vGBW->emplace_back(std::move(gbw_ptr));
}
[2022-08-21 22:37:52.698353] [76079] [WARN] [MYSQL:0] MSG: InnoDB: Buffer pool(s) load completed at 220821 22:37:52
[2022-08-21 22:37:56.576907] [76027] [INFO] [mapped_circular_buffer.h:80] MSG: use delayed buffer file TIANMU_INSERT_BUFFER with size 512MB
[2022-08-21 22:37:56.576940] [76027] [INFO] [mapped_circular_buffer.h:211] MSG: insert buffer address 0x7f5d60000000
[2022-08-21 22:37:56.578236] [76027] [INFO] [memory_handling_policy.cpp:94] MSG: Adjusted Main Heap size = 1976565760
[2022-08-21 22:37:56.578263] [76027] [INFO] [memory_handling_policy.cpp:95] MSG: Adjusted LT Heap size = 0
[2022-08-21 22:37:56.579467] [76027] [INFO] [engine.cpp:235] MSG: Tianmu engine started.
[2022-08-21 22:37:56.579497] [76027] [INFO] [engine.cpp:236] MSG: Tianmu data directories:
[2022-08-21 22:37:56.579502] [76027] [INFO] [engine.cpp:237] MSG: {
[2022-08-21 22:37:56.579506] [76027] [INFO] [engine.cpp:239] MSG: default
[2022-08-21 22:37:56.579509] [76027] [INFO] [engine.cpp:246] MSG: }
[2022-08-21 22:37:56.579513] [76027] [INFO] [engine.cpp:249] MSG: Tianmu thread pool for background load, size = 2
[2022-08-21 22:37:56.579516] [76027] [INFO] [engine.cpp:250] MSG: Tianmu thread pool for load, size = 4
[2022-08-21 22:37:56.579519] [76027] [INFO] [engine.cpp:251] MSG: Tianmu thread pool for query, size = 4
[2022-08-21 22:37:56.579644] [76027] [INFO] [tianmu_handler_com.cpp:247] MSG:
-----------------------------------------------------------------------------------------------------------
###### ######## ####### ## ## ######## ###### ######
## ## ## ## ## #### ## ## ## ## ## ##
## ## ## ## ## ## ## ## ## ## ## ##
###### ## ## ## ## ## ## ###### ## ## ########
## ## ## ## ## #### ## ## ## ## ##
## ## ## ## ## ## ### ## ## ## ## ##
###### ## ####### ## ## ######## ###### ######
-----------------------------------------------------------------------------------------------------------
[2022-08-21 22:37:56.580962] [76027] [WARN] [MYSQL:0] MSG: Recovering after a crash using /stonedb57/install/binlog/binlog
[2022-08-21 22:37:56.581018] [76027] [WARN] [MYSQL:0] MSG: Starting crash recovery...
[2022-08-21 22:37:56.581037] [76027] [WARN] [MYSQL:0] MSG: Crash recovery finished.
[2022-08-21 22:37:56.591003] [76027] [WARN] [MYSQL:0] MSG: Read 2 events from binary log file '/stonedb57/install/binlog/binlog.000038' to determine the GTIDs purged from binary logs.
[2022-08-21 22:37:56.592307] [76027] [WARN] [MYSQL:0] MSG: Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them.
[2022-08-21 22:37:56.592346] [76027] [WARN] [MYSQL:0] MSG: Skipping generation of SSL certificates as certificate files are present in data directory.
[2022-08-21 22:37:56.592357] [76027] [WARN] [MYSQL:0] MSG: A deprecated TLS version TLSv1 is enabled. Please use TLSv1.2 or higher.
[2022-08-21 22:37:56.592363] [76027] [WARN] [MYSQL:0] MSG: A deprecated TLS version TLSv1.1 is enabled. Please use TLSv1.2 or higher.
[2022-08-21 22:37:56.593967] [76027] [WARN] [MYSQL:0] MSG: CA certificate ca.pem is self signed.
[2022-08-21 22:37:56.594056] [76027] [WARN] [MYSQL:0] MSG: Skipping generation of RSA key pair as key files are present in data directory.
[2022-08-21 22:37:56.598341] [76027] [WARN] [MYSQL:0] MSG: Server hostname (bind-address): '*'; port: 3306
[2022-08-21 22:37:56.602086] [76027] [WARN] [MYSQL:0] MSG: IPv6 is available.
[2022-08-21 22:37:56.602134] [76027] [WARN] [MYSQL:0] MSG: - '::' resolves to '::';
[2022-08-21 22:37:56.602165] [76027] [WARN] [MYSQL:0] MSG: Server socket created on IP: '::'.
[2022-08-21 22:37:56.624866] [76027] [WARN] [MYSQL:0] MSG: Failed to start slave threads for channel ''
[2022-08-21 22:37:56.660187] [76027] [WARN] [MYSQL:0] MSG: /stonedb57/install//bin/mysqld: ready for connections.
Version: '5.7.36-StoneDB-debug-log' socket: '/stonedb57/install//tmp/mysql.sock' port: 3306 build-
[2022-08-21 22:38:18.414095] [76351] [INFO] [aggregation_algorithm.cpp:49] MSG: Aggregate numOfAttrs: 4 packpower: 16 NumOfObj: -1 NumOfTables: 2 NumOfTuples: 7422784 distinct: false
[2022-08-21 22:38:18.414172] [76351] [INFO] [aggregation_algorithm.cpp:69] MSG: Aggregate AddGroupingColumn attr_num: 0 col: 0
[2022-08-21 22:38:18.414201] [76351] [INFO] [aggregation_algorithm.cpp:69] MSG: Aggregate AddGroupingColumn attr_num: 1 col: 1
[2022-08-21 22:38:18.414211] [76351] [INFO] [aggregation_algorithm.cpp:69] MSG: Aggregate AddGroupingColumn attr_num: 2 col: 2
[2022-08-21 22:38:18.414226] [76351] [INFO] [aggregation_algorithm.cpp:127] MSG: Aggregate AddAggregatedColumn col: 3 max_no_of_distinct: 100000 min_v: 1 max_v: 100000 max_size: 11
[2022-08-21 22:38:18.449893] [76351] [INFO] [aggregation_algorithm.cpp:238] MSG: NumOfDimensions: 2 NumOfTuples: 7422784
[2022-08-21 22:38:18.454589] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 1 curtuple: 0 packrow_length: 60940
[2022-08-21 22:38:18.456093] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 2 curtuple: 60940 packrow_length: 60668
[2022-08-21 22:38:18.456947] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 3 curtuple: 121608 packrow_length: 60776
[2022-08-21 22:38:18.457890] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 4 curtuple: 182384 packrow_length: 60752
[2022-08-21 22:38:18.462206] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 5 curtuple: 243136 packrow_length: 60784
[2022-08-21 22:38:18.463094] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 6 curtuple: 303920 packrow_length: 60912
[2022-08-21 22:38:18.464046] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 7 curtuple: 364832 packrow_length: 60980
[2022-08-21 22:38:18.464913] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 8 curtuple: 425812 packrow_length: 60776
[2022-08-21 22:38:18.469533] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 9 curtuple: 486588 packrow_length: 60680
[2022-08-21 22:38:18.470427] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 10 curtuple: 547268 packrow_length: 60788
[2022-08-21 22:38:18.471303] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 11 curtuple: 608056 packrow_length: 60876
[2022-08-21 22:38:18.472226] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 12 curtuple: 668932 packrow_length: 60984
[2022-08-21 22:38:18.476145] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 13 curtuple: 729916 packrow_length: 60744
[2022-08-21 22:38:18.476921] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 14 curtuple: 790660 packrow_length: 60604
[2022-08-21 22:38:18.477871] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 15 curtuple: 851264 packrow_length: 60796
[2022-08-21 22:38:18.478650] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 16 curtuple: 912060 packrow_length: 15724
[2022-08-21 22:38:18.481210] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 17 curtuple: 927784 packrow_length: 45128
[2022-08-21 22:38:18.481987] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 18 curtuple: 972912 packrow_length: 60776
[2022-08-21 22:38:18.483260] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 19 curtuple: 1033688 packrow_length: 60864
[2022-08-21 22:38:18.484245] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 20 curtuple: 1094552 packrow_length: 13576
[2022-08-21 22:38:18.487550] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 21 curtuple: 1108128 packrow_length: 47268
[2022-08-21 22:38:18.488424] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 22 curtuple: 1155396 packrow_length: 60544
[2022-08-21 22:38:18.489288] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 23 curtuple: 1215940 packrow_length: 60820
[2022-08-21 22:38:18.490170] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 24 curtuple: 1276760 packrow_length: 60892
[2022-08-21 22:38:18.491039] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 25 curtuple: 1337652 packrow_length: 13640
[2022-08-21 22:38:18.494497] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 26 curtuple: 1351292 packrow_length: 47228
[2022-08-21 22:38:18.495357] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 27 curtuple: 1398520 packrow_length: 60820
[2022-08-21 22:38:18.496113] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 28 curtuple: 1459340 packrow_length: 60672
[2022-08-21 22:38:18.497049] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 29 curtuple: 1520012 packrow_length: 60708
[2022-08-21 22:38:18.497817] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 30 curtuple: 1580720 packrow_length: 13632
[2022-08-21 22:38:18.501272] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 31 curtuple: 1594352 packrow_length: 47252
[2022-08-21 22:38:18.502043] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 32 curtuple: 1641604 packrow_length: 61072
[2022-08-21 22:38:18.502981] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 33 curtuple: 1702676 packrow_length: 60988
[2022-08-21 22:38:18.503748] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 34 curtuple: 1763664 packrow_length: 60972
[2022-08-21 22:38:18.504707] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 35 curtuple: 1824636 packrow_length: 13548
[2022-08-21 22:38:18.506232] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 36 curtuple: 1838184 packrow_length: 47188
[2022-08-21 22:38:18.506993] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 37 curtuple: 1885372 packrow_length: 60780
[2022-08-21 22:38:18.509725] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 38 curtuple: 1946152 packrow_length: 60904
[2022-08-21 22:38:18.510577] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 39 curtuple: 2007056 packrow_length: 60820
[2022-08-21 22:38:18.511457] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 40 curtuple: 2067876 packrow_length: 13596
[2022-08-21 22:38:18.515744] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 41 curtuple: 2081472 packrow_length: 47292
[2022-08-21 22:38:18.516644] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 42 curtuple: 2128764 packrow_length: 60876
[2022-08-21 22:38:18.517531] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 43 curtuple: 2189640 packrow_length: 60812
[2022-08-21 22:38:18.518424] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 44 curtuple: 2250452 packrow_length: 60804
[2022-08-21 22:38:18.519317] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 45 curtuple: 2311256 packrow_length: 13564
[2022-08-21 22:38:18.522896] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 46 curtuple: 2324820 packrow_length: 47164
[2022-08-21 22:38:18.524013] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 47 curtuple: 2371984 packrow_length: 60860
[2022-08-21 22:38:18.524969] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 48 curtuple: 2432844 packrow_length: 60940
[2022-08-21 22:38:18.525990] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 49 curtuple: 2493784 packrow_length: 60720
[2022-08-21 22:38:18.526762] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 50 curtuple: 2554504 packrow_length: 13580
[2022-08-21 22:38:18.530361] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 51 curtuple: 2568084 packrow_length: 47340
[2022-08-21 22:38:18.531264] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 52 curtuple: 2615424 packrow_length: 60792
[2022-08-21 22:38:18.532164] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 53 curtuple: 2676216 packrow_length: 60920
[2022-08-21 22:38:18.533045] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 54 curtuple: 2737136 packrow_length: 61044
[2022-08-21 22:38:18.533817] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 55 curtuple: 2798180 packrow_length: 13548
[2022-08-21 22:38:18.537359] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 56 curtuple: 2811728 packrow_length: 47396
[2022-08-21 22:38:18.538249] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 57 curtuple: 2859124 packrow_length: 60672
[2022-08-21 22:38:18.539144] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 58 curtuple: 2919796 packrow_length: 60960
[2022-08-21 22:38:18.540025] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 59 curtuple: 2980756 packrow_length: 60872
[2022-08-21 22:38:18.540796] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 60 curtuple: 3041628 packrow_length: 13664
[2022-08-21 22:38:18.544260] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 61 curtuple: 3055292 packrow_length: 47196
[2022-08-21 22:38:18.545355] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 62 curtuple: 3102488 packrow_length: 60796
[2022-08-21 22:38:18.546280] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 63 curtuple: 3163284 packrow_length: 60820
[2022-08-21 22:38:18.547175] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 64 curtuple: 3224104 packrow_length: 60796
[2022-08-21 22:38:18.548066] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 65 curtuple: 3284900 packrow_length: 13632
[2022-08-21 22:38:18.552047] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 66 curtuple: 3298532 packrow_length: 47368
[2022-08-21 22:38:18.552817] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 67 curtuple: 3345900 packrow_length: 60756
[2022-08-21 22:38:18.553697] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 68 curtuple: 3406656 packrow_length: 60880
[2022-08-21 22:38:18.554677] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 69 curtuple: 3467536 packrow_length: 60864
[2022-08-21 22:38:18.555571] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 70 curtuple: 3528400 packrow_length: 13648
[2022-08-21 22:38:18.559163] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 71 curtuple: 3542048 packrow_length: 47288
[2022-08-21 22:38:18.560204] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 72 curtuple: 3589336 packrow_length: 60852
[2022-08-21 22:38:18.560986] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 73 curtuple: 3650188 packrow_length: 60792
[2022-08-21 22:38:18.561901] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 74 curtuple: 3710980 packrow_length: 60620
[2022-08-21 22:38:18.562829] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 75 curtuple: 3771600 packrow_length: 13528
[2022-08-21 22:38:18.564430] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 76 curtuple: 3785128 packrow_length: 47096
[2022-08-21 22:38:18.565439] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 77 curtuple: 3832224 packrow_length: 60784
[2022-08-21 22:38:18.568231] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 78 curtuple: 3893008 packrow_length: 60688
[2022-08-21 22:38:18.569134] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 79 curtuple: 3953696 packrow_length: 60496
[2022-08-21 22:38:18.569910] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 80 curtuple: 4014192 packrow_length: 13564
[2022-08-21 22:38:18.573454] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 81 curtuple: 4027756 packrow_length: 47064
[2022-08-21 22:38:18.574241] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 82 curtuple: 4074820 packrow_length: 60800
[2022-08-21 22:38:18.575212] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 83 curtuple: 4135620 packrow_length: 60692
[2022-08-21 22:38:18.576485] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 84 curtuple: 4196312 packrow_length: 60800
[2022-08-21 22:38:18.577431] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 85 curtuple: 4257112 packrow_length: 13452
[2022-08-21 22:38:18.580900] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 86 curtuple: 4270564 packrow_length: 47196
[2022-08-21 22:38:18.581796] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 87 curtuple: 4317760 packrow_length: 60748
[2022-08-21 22:38:18.582552] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 88 curtuple: 4378508 packrow_length: 60800
[2022-08-21 22:38:18.583998] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 89 curtuple: 4439308 packrow_length: 61036
[2022-08-21 22:38:18.584934] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 90 curtuple: 4500344 packrow_length: 13600
[2022-08-21 22:38:18.587017] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 91 curtuple: 4513944 packrow_length: 47296
[2022-08-21 22:38:18.587951] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 92 curtuple: 4561240 packrow_length: 60716
[2022-08-21 22:38:18.588710] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 93 curtuple: 4621956 packrow_length: 17840
[2022-08-21 22:38:18.589835] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 94 curtuple: 4639796 packrow_length: 42836
[2022-08-21 22:38:18.590685] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 95 curtuple: 4682632 packrow_length: 2152
[2022-08-21 22:38:18.594290] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 96 curtuple: 4684784 packrow_length: 58396
[2022-08-21 22:38:18.595330] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 97 curtuple: 4743180 packrow_length: 60520
[2022-08-21 22:38:18.596174] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 98 curtuple: 4803700 packrow_length: 60956
[2022-08-21 22:38:18.597022] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 99 curtuple: 4864656 packrow_length: 60828
[2022-08-21 22:38:18.597788] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 100 curtuple: 4925484 packrow_length: 2132
[2022-08-21 22:38:18.601138] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 101 curtuple: 4927616 packrow_length: 58812
[2022-08-21 22:38:18.601900] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 102 curtuple: 4986428 packrow_length: 60484
[2022-08-21 22:38:18.602754] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 103 curtuple: 5046912 packrow_length: 60796
[2022-08-21 22:38:18.603610] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 104 curtuple: 5107708 packrow_length: 60712
[2022-08-21 22:38:18.604606] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 105 curtuple: 5168420 packrow_length: 2084
[2022-08-21 22:38:18.608612] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 106 curtuple: 5170504 packrow_length: 58576
[2022-08-21 22:38:18.609492] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 107 curtuple: 5229080 packrow_length: 60776
[2022-08-21 22:38:18.610364] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 108 curtuple: 5289856 packrow_length: 61160
[2022-08-21 22:38:18.611133] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 109 curtuple: 5351016 packrow_length: 60864
[2022-08-21 22:38:18.612003] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 110 curtuple: 5411880 packrow_length: 2176
[2022-08-21 22:38:18.614175] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 111 curtuple: 5414056 packrow_length: 58812
[2022-08-21 22:38:18.615031] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 112 curtuple: 5472868 packrow_length: 60712
[2022-08-21 22:38:18.616014] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 113 curtuple: 5533580 packrow_length: 33556
[2022-08-21 22:38:18.617790] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 114 curtuple: 5567136 packrow_length: 27404
[2022-08-21 22:38:18.618650] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 115 curtuple: 5594540 packrow_length: 61084
[2022-08-21 22:38:18.619503] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 116 curtuple: 5655624 packrow_length: 47228
[2022-08-21 22:38:18.621270] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 117 curtuple: 5702852 packrow_length: 13648
[2022-08-21 22:38:18.622225] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 118 curtuple: 5716500 packrow_length: 60916
[2022-08-21 22:38:18.623002] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 119 curtuple: 5777416 packrow_length: 60700
[2022-08-21 22:38:18.625554] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 120 curtuple: 5838116 packrow_length: 60640
[2022-08-21 22:38:18.626421] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 121 curtuple: 5898756 packrow_length: 47092
[2022-08-21 22:38:18.629676] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 122 curtuple: 5945848 packrow_length: 13580
[2022-08-21 22:38:18.630531] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 123 curtuple: 5959428 packrow_length: 60748
[2022-08-21 22:38:18.631399] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 124 curtuple: 6020176 packrow_length: 60672
[2022-08-21 22:38:18.632273] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 125 curtuple: 6080848 packrow_length: 60956
[2022-08-21 22:38:18.633132] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 126 curtuple: 6141804 packrow_length: 47340
[2022-08-21 22:38:18.637062] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 127 curtuple: 6189144 packrow_length: 13460
[2022-08-21 22:38:18.638445] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 128 curtuple: 6202604 packrow_length: 61000
[2022-08-21 22:38:18.639432] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 129 curtuple: 6263604 packrow_length: 60976
[2022-08-21 22:38:18.640293] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 130 curtuple: 6324580 packrow_length: 60816
[2022-08-21 22:38:18.641966] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 131 curtuple: 6385396 packrow_length: 47256
[2022-08-21 22:38:18.642850] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 132 curtuple: 6432652 packrow_length: 13604
[2022-08-21 22:38:18.643712] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 133 curtuple: 6446256 packrow_length: 49232
[2022-08-21 22:38:18.645101] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 134 curtuple: 6495488 packrow_length: 11424
[2022-08-21 22:38:18.645869] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 135 curtuple: 6506912 packrow_length: 60932
[2022-08-21 22:38:18.646749] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 136 curtuple: 6567844 packrow_length: 17868
[2022-08-21 22:38:18.650117] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 137 curtuple: 6585712 packrow_length: 42952
[2022-08-21 22:38:18.650887] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 138 curtuple: 6628664 packrow_length: 60772
[2022-08-21 22:38:18.651755] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 139 curtuple: 6689436 packrow_length: 60596
[2022-08-21 22:38:18.652633] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 140 curtuple: 6750032 packrow_length: 60792
[2022-08-21 22:38:18.653498] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 141 curtuple: 6810824 packrow_length: 17824
[2022-08-21 22:38:18.657368] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 142 curtuple: 6828648 packrow_length: 43016
[2022-08-21 22:38:18.658250] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 143 curtuple: 6871664 packrow_length: 60764
[2022-08-21 22:38:18.659021] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 144 curtuple: 6932428 packrow_length: 60780
[2022-08-21 22:38:18.659963] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 145 curtuple: 6993208 packrow_length: 60776
[2022-08-21 22:38:18.660734] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 146 curtuple: 7053984 packrow_length: 17896
[2022-08-21 22:38:18.664039] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 147 curtuple: 7071880 packrow_length: 43008
[2022-08-21 22:38:18.665038] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 148 curtuple: 7114888 packrow_length: 60792
[2022-08-21 22:38:18.665910] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 149 curtuple: 7175680 packrow_length: 60736
[2022-08-21 22:38:18.666678] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 150 curtuple: 7236416 packrow_length: 60512
[2022-08-21 22:38:18.667548] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 151 curtuple: 7296928 packrow_length: 17948
[2022-08-21 22:38:18.669626] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 152 curtuple: 7314876 packrow_length: 42884
[2022-08-21 22:38:18.670495] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 153 curtuple: 7357760 packrow_length: 60740
[2022-08-21 22:38:18.670570] [76351] [INFO] [aggregation_algorithm.cpp:885] MSG: ReadyDist packnum: 154 curtuple: 7418500 packrow_length: 4284
[2022-08-21 22:38:18.670575] [76351] [INFO] [aggregation_algorithm.cpp:900] MSG: ReadyDist threads: 4 packnum: 154 loopcnt: 4 num: 38 mod: 2
[2022-08-21 22:38:18.680407] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 0 packrow_length: 60940 rows_in_pack: 60940
[2022-08-21 22:38:18.803822] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 60940 packrow_length: 60668 rows_in_pack: 60668
[2022-08-21 22:38:18.925337] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 121608 packrow_length: 60776 rows_in_pack: 60776
[2022-08-21 22:38:19.018907] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 182384 packrow_length: 60752 rows_in_pack: 60752
[2022-08-21 22:38:19.116807] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 243136 packrow_length: 60784 rows_in_pack: 60784
[2022-08-21 22:38:19.208885] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 303920 packrow_length: 60912 rows_in_pack: 60912
[2022-08-21 22:38:19.300461] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 364832 packrow_length: 60980 rows_in_pack: 60980
[2022-08-21 22:38:19.393347] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 425812 packrow_length: 60776 rows_in_pack: 60776
[2022-08-21 22:38:19.490598] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 486588 packrow_length: 60680 rows_in_pack: 60680
[2022-08-21 22:38:19.581736] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 547268 packrow_length: 60788 rows_in_pack: 60788
[2022-08-21 22:38:19.672942] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 608056 packrow_length: 60876 rows_in_pack: 60876
[2022-08-21 22:38:19.765583] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 668932 packrow_length: 60984 rows_in_pack: 60984
[2022-08-21 22:38:19.864599] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 729916 packrow_length: 60744 rows_in_pack: 60744
[2022-08-21 22:38:19.955858] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 790660 packrow_length: 60604 rows_in_pack: 60604
[2022-08-21 22:38:20.045724] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 851264 packrow_length: 60796 rows_in_pack: 60796
[2022-08-21 22:38:20.136176] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 912060 packrow_length: 15724 rows_in_pack: 15724
[2022-08-21 22:38:20.163659] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 927784 packrow_length: 45128 rows_in_pack: 45128
[2022-08-21 22:38:20.231606] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 972912 packrow_length: 60776 rows_in_pack: 60776
[2022-08-21 22:38:20.325956] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1033688 packrow_length: 60864 rows_in_pack: 60864
[2022-08-21 22:38:20.416609] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1094552 packrow_length: 13576 rows_in_pack: 13576
[2022-08-21 22:38:20.442148] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1108128 packrow_length: 47268 rows_in_pack: 47268
[2022-08-21 22:38:20.513885] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1155396 packrow_length: 60544 rows_in_pack: 60544
[2022-08-21 22:38:20.605464] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1215940 packrow_length: 60820 rows_in_pack: 60820
[2022-08-21 22:38:20.699293] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1276760 packrow_length: 60892 rows_in_pack: 60892
[2022-08-21 22:38:20.791830] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1337652 packrow_length: 13640 rows_in_pack: 13640
[2022-08-21 22:38:20.817549] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1351292 packrow_length: 47228 rows_in_pack: 47228
[2022-08-21 22:38:20.889892] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1398520 packrow_length: 60820 rows_in_pack: 60820
[2022-08-21 22:38:20.982737] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1459340 packrow_length: 60672 rows_in_pack: 60672
[2022-08-21 22:38:21.077489] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1520012 packrow_length: 60708 rows_in_pack: 60708
[2022-08-21 22:38:21.170250] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1580720 packrow_length: 13632 rows_in_pack: 13632
[2022-08-21 22:38:21.195447] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1594352 packrow_length: 47252 rows_in_pack: 47252
[2022-08-21 22:38:21.268309] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1641604 packrow_length: 61072 rows_in_pack: 61072
[2022-08-21 22:38:21.362755] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1702676 packrow_length: 60988 rows_in_pack: 60988
[2022-08-21 22:38:21.454352] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1763664 packrow_length: 60972 rows_in_pack: 60972
[2022-08-21 22:38:21.549067] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1824636 packrow_length: 13548 rows_in_pack: 13548
[2022-08-21 22:38:21.571976] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1838184 packrow_length: 47188 rows_in_pack: 47188
[2022-08-21 22:38:21.643130] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1885372 packrow_length: 60780 rows_in_pack: 60780
[2022-08-21 22:38:21.739003] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1946152 packrow_length: 60904 rows_in_pack: 60904
[2022-08-21 22:38:21.832483] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2007056 packrow_length: 60820 rows_in_pack: 60820
[2022-08-21 22:38:21.929192] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2067876 packrow_length: 13596 rows_in_pack: 13596
[2022-08-21 22:38:21.957857] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2081472 packrow_length: 47292 rows_in_pack: 47292
[2022-08-21 22:38:22.033945] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2128764 packrow_length: 60876 rows_in_pack: 60876
[2022-08-21 22:38:22.129650] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2189640 packrow_length: 60812 rows_in_pack: 60812
[2022-08-21 22:38:22.226117] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2250452 packrow_length: 60804 rows_in_pack: 60804
[2022-08-21 22:38:22.324246] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2311256 packrow_length: 13564 rows_in_pack: 13564
[2022-08-21 22:38:22.352453] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2324820 packrow_length: 47164 rows_in_pack: 47164
[2022-08-21 22:38:22.427908] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2371984 packrow_length: 60860 rows_in_pack: 60860
[2022-08-21 22:38:22.526649] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2432844 packrow_length: 60940 rows_in_pack: 60940
[2022-08-21 22:38:22.625464] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2493784 packrow_length: 60720 rows_in_pack: 60720
[2022-08-21 22:38:22.724618] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2554504 packrow_length: 13580 rows_in_pack: 13580
[2022-08-21 22:38:22.751439] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2568084 packrow_length: 47340 rows_in_pack: 47340
[2022-08-21 22:38:22.827044] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2615424 packrow_length: 60792 rows_in_pack: 60792
[2022-08-21 22:38:22.919632] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2676216 packrow_length: 60920 rows_in_pack: 60920
[2022-08-21 22:38:23.015390] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2737136 packrow_length: 61044 rows_in_pack: 61044
[2022-08-21 22:38:23.110764] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2798180 packrow_length: 13548 rows_in_pack: 13548
[2022-08-21 22:38:23.141957] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2811728 packrow_length: 47396 rows_in_pack: 47396
[2022-08-21 22:38:23.219387] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2859124 packrow_length: 60672 rows_in_pack: 60672
[2022-08-21 22:38:23.315164] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2919796 packrow_length: 60960 rows_in_pack: 60960
[2022-08-21 22:38:23.412444] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2980756 packrow_length: 60872 rows_in_pack: 60872
[2022-08-21 22:38:23.506977] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3041628 packrow_length: 13664 rows_in_pack: 13664
[2022-08-21 22:38:23.533219] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3055292 packrow_length: 47196 rows_in_pack: 47196
[2022-08-21 22:38:23.608938] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3102488 packrow_length: 60796 rows_in_pack: 60796
[2022-08-21 22:38:23.705948] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3163284 packrow_length: 60820 rows_in_pack: 60820
[2022-08-21 22:38:23.799962] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3224104 packrow_length: 60796 rows_in_pack: 60796
[2022-08-21 22:38:23.894014] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3284900 packrow_length: 13632 rows_in_pack: 13632
[2022-08-21 22:38:23.919929] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3298532 packrow_length: 47368 rows_in_pack: 47368
[2022-08-21 22:38:23.993399] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3345900 packrow_length: 60756 rows_in_pack: 60756
[2022-08-21 22:38:24.089138] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3406656 packrow_length: 60880 rows_in_pack: 60880
[2022-08-21 22:38:24.184540] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3467536 packrow_length: 60864 rows_in_pack: 60864
[2022-08-21 22:38:24.295537] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3528400 packrow_length: 13648 rows_in_pack: 13648
[2022-08-21 22:38:24.323367] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3542048 packrow_length: 47288 rows_in_pack: 47288
[2022-08-21 22:38:24.399090] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3589336 packrow_length: 60852 rows_in_pack: 60852
[2022-08-21 22:38:24.501625] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3650188 packrow_length: 60792 rows_in_pack: 60792
[2022-08-21 22:38:24.597401] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3710980 packrow_length: 60620 rows_in_pack: 60620
[2022-08-21 22:38:24.692512] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3771600 packrow_length: 13528 rows_in_pack: 13528
[2022-08-21 22:38:24.716193] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3785128 packrow_length: 47096 rows_in_pack: 47096
[2022-08-21 22:38:24.789435] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3832224 packrow_length: 60784 rows_in_pack: 60784
[2022-08-21 22:38:24.882259] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3893008 packrow_length: 60688 rows_in_pack: 60688
[2022-08-21 22:38:24.976137] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3953696 packrow_length: 60496 rows_in_pack: 60496
[2022-08-21 22:38:25.067506] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4014192 packrow_length: 13564 rows_in_pack: 13564
[2022-08-21 22:38:25.092905] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4027756 packrow_length: 47064 rows_in_pack: 47064
[2022-08-21 22:38:25.166064] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4074820 packrow_length: 60800 rows_in_pack: 60800
[2022-08-21 22:38:25.261668] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4135620 packrow_length: 60692 rows_in_pack: 60692
[2022-08-21 22:38:25.356853] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4196312 packrow_length: 60800 rows_in_pack: 60800
[2022-08-21 22:38:25.449501] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4257112 packrow_length: 13452 rows_in_pack: 13452
[2022-08-21 22:38:25.474700] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4270564 packrow_length: 47196 rows_in_pack: 47196
[2022-08-21 22:38:25.546490] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4317760 packrow_length: 60748 rows_in_pack: 60748
[2022-08-21 22:38:25.640707] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4378508 packrow_length: 60800 rows_in_pack: 60800
[2022-08-21 22:38:25.733335] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4439308 packrow_length: 61036 rows_in_pack: 61036
[2022-08-21 22:38:25.828015] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4500344 packrow_length: 13600 rows_in_pack: 13600
[2022-08-21 22:38:25.849571] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4513944 packrow_length: 47296 rows_in_pack: 47296
[2022-08-21 22:38:25.924694] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4561240 packrow_length: 60716 rows_in_pack: 60716
[2022-08-21 22:38:26.023394] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4621956 packrow_length: 17840 rows_in_pack: 17840
[2022-08-21 22:38:26.050957] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4639796 packrow_length: 42836 rows_in_pack: 42836
[2022-08-21 22:38:26.119194] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4682632 packrow_length: 2152 rows_in_pack: 2152
[2022-08-21 22:38:26.127745] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4684784 packrow_length: 58396 rows_in_pack: 58396
[2022-08-21 22:38:26.220284] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4743180 packrow_length: 60520 rows_in_pack: 60520
[2022-08-21 22:38:26.313229] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4803700 packrow_length: 60956 rows_in_pack: 60956
[2022-08-21 22:38:26.407616] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4864656 packrow_length: 60828 rows_in_pack: 60828
[2022-08-21 22:38:26.503356] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4925484 packrow_length: 2132 rows_in_pack: 2132
[2022-08-21 22:38:26.512372] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4927616 packrow_length: 58812 rows_in_pack: 58812
[2022-08-21 22:38:26.601731] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4986428 packrow_length: 60484 rows_in_pack: 60484
[2022-08-21 22:38:26.696457] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5046912 packrow_length: 60796 rows_in_pack: 60796
[2022-08-21 22:38:26.788341] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5107708 packrow_length: 60712 rows_in_pack: 60712
[2022-08-21 22:38:26.882289] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5168420 packrow_length: 2084 rows_in_pack: 2084
[2022-08-21 22:38:26.891234] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5170504 packrow_length: 58576 rows_in_pack: 58576
[2022-08-21 22:38:26.982251] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5229080 packrow_length: 60776 rows_in_pack: 60776
[2022-08-21 22:38:27.073968] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5289856 packrow_length: 61160 rows_in_pack: 61160
[2022-08-21 22:38:27.165739] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5351016 packrow_length: 60864 rows_in_pack: 60864
[2022-08-21 22:38:27.257086] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5411880 packrow_length: 2176 rows_in_pack: 2176
[2022-08-21 22:38:27.264898] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5414056 packrow_length: 58812 rows_in_pack: 58812
[2022-08-21 22:38:27.352710] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5472868 packrow_length: 60712 rows_in_pack: 60712
[2022-08-21 22:38:27.444585] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5533580 packrow_length: 33556 rows_in_pack: 33556
[2022-08-21 22:38:27.496930] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5567136 packrow_length: 27404 rows_in_pack: 27404
[2022-08-21 22:38:27.540590] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5594540 packrow_length: 61084 rows_in_pack: 61084
[2022-08-21 22:38:27.631181] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5655624 packrow_length: 47228 rows_in_pack: 47228
[2022-08-21 22:38:27.704093] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5702852 packrow_length: 13648 rows_in_pack: 13648
[2022-08-21 22:38:27.727381] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5716500 packrow_length: 60916 rows_in_pack: 60916
[2022-08-21 22:38:27.822730] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5777416 packrow_length: 60700 rows_in_pack: 60700
[2022-08-21 22:38:27.915667] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5838116 packrow_length: 60640 rows_in_pack: 60640
[2022-08-21 22:38:28.016982] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5898756 packrow_length: 47092 rows_in_pack: 47092
[2022-08-21 22:38:28.096521] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5945848 packrow_length: 13580 rows_in_pack: 13580
[2022-08-21 22:38:28.120402] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5959428 packrow_length: 60748 rows_in_pack: 60748
[2022-08-21 22:38:28.214718] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6020176 packrow_length: 60672 rows_in_pack: 60672
[2022-08-21 22:38:28.308897] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6080848 packrow_length: 60956 rows_in_pack: 60956
[2022-08-21 22:38:28.402934] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6141804 packrow_length: 47340 rows_in_pack: 47340
[2022-08-21 22:38:28.478231] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6189144 packrow_length: 13460 rows_in_pack: 13460
[2022-08-21 22:38:28.501000] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6202604 packrow_length: 61000 rows_in_pack: 61000
[2022-08-21 22:38:28.593724] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6263604 packrow_length: 60976 rows_in_pack: 60976
[2022-08-21 22:38:28.687375] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6324580 packrow_length: 60816 rows_in_pack: 60816
[2022-08-21 22:38:28.780121] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6385396 packrow_length: 47256 rows_in_pack: 47256
[2022-08-21 22:38:28.852690] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6432652 packrow_length: 13604 rows_in_pack: 13604
[2022-08-21 22:38:28.875278] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6446256 packrow_length: 49232 rows_in_pack: 49232
[2022-08-21 22:38:28.948519] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6495488 packrow_length: 11424 rows_in_pack: 11424
[2022-08-21 22:38:28.969087] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6506912 packrow_length: 60932 rows_in_pack: 60932
[2022-08-21 22:38:29.061674] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6567844 packrow_length: 17868 rows_in_pack: 17868
[2022-08-21 22:38:29.093606] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6585712 packrow_length: 42952 rows_in_pack: 42952
[2022-08-21 22:38:29.160870] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6628664 packrow_length: 60772 rows_in_pack: 60772
[2022-08-21 22:38:29.252250] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6689436 packrow_length: 60596 rows_in_pack: 60596
[2022-08-21 22:38:29.343075] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6750032 packrow_length: 60792 rows_in_pack: 60792
[2022-08-21 22:38:29.436999] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6810824 packrow_length: 17824 rows_in_pack: 17824
[2022-08-21 22:38:29.468240] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6828648 packrow_length: 43016 rows_in_pack: 43016
[2022-08-21 22:38:29.532951] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6871664 packrow_length: 60764 rows_in_pack: 60764
[2022-08-21 22:38:29.627838] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6932428 packrow_length: 60780 rows_in_pack: 60780
[2022-08-21 22:38:29.721843] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6993208 packrow_length: 60776 rows_in_pack: 60776
[2022-08-21 22:38:29.815220] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7053984 packrow_length: 17896 rows_in_pack: 17896
[2022-08-21 22:38:29.846823] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7071880 packrow_length: 43008 rows_in_pack: 43008
[2022-08-21 22:38:29.913102] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7114888 packrow_length: 60792 rows_in_pack: 60792
[2022-08-21 22:38:30.008310] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7175680 packrow_length: 60736 rows_in_pack: 60736
[2022-08-21 22:38:30.100438] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7236416 packrow_length: 60512 rows_in_pack: 60512
[2022-08-21 22:38:30.195846] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7296928 packrow_length: 17948 rows_in_pack: 17948
[2022-08-21 22:38:30.224186] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7314876 packrow_length: 42884 rows_in_pack: 42884
[2022-08-21 22:38:30.290709] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7357760 packrow_length: 60740 rows_in_pack: 60740
[2022-08-21 22:38:30.382466] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7418500 packrow_length: 4284 rows_in_pack: 4284
[2022-08-21 22:38:50.346997] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 121608 packrow_length: 60776 rows_in_pack: 47420
[2022-08-21 22:38:50.446708] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 182384 packrow_length: 60752 rows_in_pack: 50752
[2022-08-21 22:38:50.559529] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 243136 packrow_length: 60784 rows_in_pack: 50636
[2022-08-21 22:38:50.656212] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 303920 packrow_length: 60912 rows_in_pack: 50976
[2022-08-21 22:38:50.737586] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 364832 packrow_length: 60980 rows_in_pack: 50872
[2022-08-21 22:38:50.818996] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 425812 packrow_length: 60776 rows_in_pack: 50820
[2022-08-21 22:38:50.906211] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 486588 packrow_length: 60680 rows_in_pack: 50856
[2022-08-21 22:38:50.988356] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 547268 packrow_length: 60788 rows_in_pack: 50608
[2022-08-21 22:38:51.072127] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 608056 packrow_length: 60876 rows_in_pack: 50844
[2022-08-21 22:38:51.154566] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 668932 packrow_length: 60984 rows_in_pack: 50620
[2022-08-21 22:38:51.240010] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 729916 packrow_length: 60744 rows_in_pack: 50772
[2022-08-21 22:38:51.325539] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 790660 packrow_length: 60604 rows_in_pack: 50580
[2022-08-21 22:38:51.417203] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 851264 packrow_length: 60796 rows_in_pack: 50668
[2022-08-21 22:38:51.499534] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 912060 packrow_length: 15724 rows_in_pack: 13296
[2022-08-21 22:38:51.524062] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 927784 packrow_length: 45128 rows_in_pack: 37808
[2022-08-21 22:38:51.583882] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 972912 packrow_length: 60776 rows_in_pack: 50724
[2022-08-21 22:38:51.669094] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1033688 packrow_length: 60864 rows_in_pack: 50824
[2022-08-21 22:38:51.751701] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1094552 packrow_length: 13576 rows_in_pack: 11488
[2022-08-21 22:38:51.774875] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1108128 packrow_length: 47268 rows_in_pack: 39296
[2022-08-21 22:38:51.836877] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1155396 packrow_length: 60544 rows_in_pack: 50884
[2022-08-21 22:38:51.917027] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1215940 packrow_length: 60820 rows_in_pack: 50584
[2022-08-21 22:38:51.994852] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1276760 packrow_length: 60892 rows_in_pack: 50788
[2022-08-21 22:38:52.075445] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1337652 packrow_length: 13640 rows_in_pack: 11396
[2022-08-21 22:38:52.097178] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1351292 packrow_length: 47228 rows_in_pack: 39400
[2022-08-21 22:38:52.161315] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1398520 packrow_length: 60820 rows_in_pack: 50472
[2022-08-21 22:38:52.245324] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1459340 packrow_length: 60672 rows_in_pack: 50652
[2022-08-21 22:38:52.327494] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1520012 packrow_length: 60708 rows_in_pack: 50684
[2022-08-21 22:38:52.409371] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1580720 packrow_length: 13632 rows_in_pack: 11384
[2022-08-21 22:38:52.431051] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1594352 packrow_length: 47252 rows_in_pack: 39432
[2022-08-21 22:38:52.495407] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1641604 packrow_length: 61072 rows_in_pack: 50900
[2022-08-21 22:38:52.576532] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1702676 packrow_length: 60988 rows_in_pack: 50888
[2022-08-21 22:38:52.657855] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1763664 packrow_length: 60972 rows_in_pack: 50724
[2022-08-21 22:38:52.739704] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1824636 packrow_length: 13548 rows_in_pack: 11340
[2022-08-21 22:38:52.759739] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1838184 packrow_length: 47188 rows_in_pack: 39232
[2022-08-21 22:38:52.823198] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1885372 packrow_length: 60780 rows_in_pack: 50876
[2022-08-21 22:38:52.906662] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1946152 packrow_length: 60904 rows_in_pack: 50692
[2022-08-21 22:38:52.990511] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2007056 packrow_length: 60820 rows_in_pack: 50608
[2022-08-21 22:38:53.073313] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2067876 packrow_length: 13596 rows_in_pack: 11284
[2022-08-21 22:38:53.094595] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2081472 packrow_length: 47292 rows_in_pack: 39564
[2022-08-21 22:38:53.157865] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2128764 packrow_length: 60876 rows_in_pack: 50920
[2022-08-21 22:38:53.240654] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2189640 packrow_length: 60812 rows_in_pack: 51012
[2022-08-21 22:38:53.323402] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2250452 packrow_length: 60804 rows_in_pack: 50592
[2022-08-21 22:38:53.406829] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2311256 packrow_length: 13564 rows_in_pack: 11356
[2022-08-21 22:38:53.429175] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2324820 packrow_length: 47164 rows_in_pack: 39260
[2022-08-21 22:38:53.491253] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2371984 packrow_length: 60860 rows_in_pack: 50772
[2022-08-21 22:38:53.575354] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2432844 packrow_length: 60940 rows_in_pack: 50968
[2022-08-21 22:38:53.660603] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2493784 packrow_length: 60720 rows_in_pack: 50956
[2022-08-21 22:38:53.743951] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2554504 packrow_length: 13580 rows_in_pack: 11324
[2022-08-21 22:38:53.765399] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2568084 packrow_length: 47340 rows_in_pack: 39496
[2022-08-21 22:38:53.829103] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2615424 packrow_length: 60792 rows_in_pack: 50368
[2022-08-21 22:38:53.908643] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2676216 packrow_length: 60920 rows_in_pack: 50760
[2022-08-21 22:38:53.987863] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2737136 packrow_length: 61044 rows_in_pack: 51200
[2022-08-21 22:38:54.068712] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2798180 packrow_length: 13548 rows_in_pack: 11312
[2022-08-21 22:38:54.089470] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2811728 packrow_length: 47396 rows_in_pack: 40112
[2022-08-21 22:38:54.151586] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2859124 packrow_length: 60672 rows_in_pack: 50628
[2022-08-21 22:38:54.232938] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2919796 packrow_length: 60960 rows_in_pack: 50880
[2022-08-21 22:38:54.316583] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2980756 packrow_length: 60872 rows_in_pack: 50932
[2022-08-21 22:38:54.399620] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3041628 packrow_length: 13664 rows_in_pack: 11388
[2022-08-21 22:38:54.422422] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3055292 packrow_length: 47196 rows_in_pack: 38876
[2022-08-21 22:38:54.483937] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3102488 packrow_length: 60796 rows_in_pack: 50436
[2022-08-21 22:38:54.565712] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3163284 packrow_length: 60820 rows_in_pack: 50520
[2022-08-21 22:38:54.645617] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3224104 packrow_length: 60796 rows_in_pack: 50848
[2022-08-21 22:38:54.726642] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3284900 packrow_length: 13632 rows_in_pack: 11252
[2022-08-21 22:38:54.748703] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3298532 packrow_length: 47368 rows_in_pack: 39548
[2022-08-21 22:38:54.811425] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3345900 packrow_length: 60756 rows_in_pack: 50836
[2022-08-21 22:38:54.893033] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3406656 packrow_length: 60880 rows_in_pack: 50852
[2022-08-21 22:38:54.976037] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3467536 packrow_length: 60864 rows_in_pack: 50924
[2022-08-21 22:38:55.057307] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3528400 packrow_length: 13648 rows_in_pack: 11336
[2022-08-21 22:38:55.078471] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3542048 packrow_length: 47288 rows_in_pack: 39504
[2022-08-21 22:38:55.141488] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3589336 packrow_length: 60852 rows_in_pack: 51080
[2022-08-21 22:38:55.224625] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3650188 packrow_length: 60792 rows_in_pack: 50900
[2022-08-21 22:38:55.314953] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3710980 packrow_length: 60620 rows_in_pack: 50760
[2022-08-21 22:38:55.399853] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3771600 packrow_length: 13528 rows_in_pack: 11344
[2022-08-21 22:38:55.420374] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3785128 packrow_length: 47096 rows_in_pack: 39612
[2022-08-21 22:38:55.482693] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3832224 packrow_length: 60784 rows_in_pack: 50736
[2022-08-21 22:38:55.567131] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3893008 packrow_length: 60688 rows_in_pack: 50600
[2022-08-21 22:38:55.646634] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3953696 packrow_length: 60496 rows_in_pack: 50364
[2022-08-21 22:38:55.727768] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4014192 packrow_length: 13564 rows_in_pack: 11272
[2022-08-21 22:38:55.748896] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4027756 packrow_length: 47064 rows_in_pack: 39076
[2022-08-21 22:38:55.809954] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4074820 packrow_length: 60800 rows_in_pack: 50812
[2022-08-21 22:38:55.890806] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4135620 packrow_length: 60692 rows_in_pack: 50856
[2022-08-21 22:38:55.969897] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4196312 packrow_length: 60800 rows_in_pack: 50764
[2022-08-21 22:38:56.049938] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4257112 packrow_length: 13452 rows_in_pack: 11188
[2022-08-21 22:38:56.071008] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4270564 packrow_length: 47196 rows_in_pack: 39408
[2022-08-21 22:38:56.132288] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4317760 packrow_length: 60748 rows_in_pack: 50400
[2022-08-21 22:38:56.212867] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4378508 packrow_length: 60800 rows_in_pack: 50744
[2022-08-21 22:38:56.296370] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4439308 packrow_length: 61036 rows_in_pack: 51240
[2022-08-21 22:38:56.382443] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4500344 packrow_length: 13600 rows_in_pack: 11340
[2022-08-21 22:38:56.404635] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4513944 packrow_length: 47296 rows_in_pack: 39320
[2022-08-21 22:38:56.467518] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4561240 packrow_length: 60716 rows_in_pack: 50592
[2022-08-21 22:38:56.552036] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4621956 packrow_length: 17840 rows_in_pack: 14896
[2022-08-21 22:38:56.576880] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4639796 packrow_length: 42836 rows_in_pack: 36084
[2022-08-21 22:38:56.636489] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4682632 packrow_length: 2152 rows_in_pack: 1816
[2022-08-21 22:38:56.644806] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4684784 packrow_length: 58396 rows_in_pack: 48736
[2022-08-21 22:38:56.726679] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4743180 packrow_length: 60520 rows_in_pack: 50500
[2022-08-21 22:38:56.807906] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4803700 packrow_length: 60956 rows_in_pack: 50684
[2022-08-21 22:38:56.889513] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4864656 packrow_length: 60828 rows_in_pack: 50768
[2022-08-21 22:38:56.972283] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4925484 packrow_length: 2132 rows_in_pack: 1804
[2022-08-21 22:38:56.979179] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4927616 packrow_length: 58812 rows_in_pack: 49212
[2022-08-21 22:38:57.059560] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4986428 packrow_length: 60484 rows_in_pack: 50568
[2022-08-21 22:38:57.145224] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5046912 packrow_length: 60796 rows_in_pack: 50636
[2022-08-21 22:38:57.226310] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5107708 packrow_length: 60712 rows_in_pack: 50504
[2022-08-21 22:38:57.307111] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5168420 packrow_length: 2084 rows_in_pack: 1752
[2022-08-21 22:38:57.313740] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5170504 packrow_length: 58576 rows_in_pack: 48956
[2022-08-21 22:38:57.390983] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5229080 packrow_length: 60776 rows_in_pack: 50936
[2022-08-21 22:38:57.473388] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5289856 packrow_length: 61160 rows_in_pack: 51108
[2022-08-21 22:38:57.555667] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5351016 packrow_length: 60864 rows_in_pack: 50940
[2022-08-21 22:38:57.637756] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5411880 packrow_length: 2176 rows_in_pack: 1820
[2022-08-21 22:38:57.643053] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5414056 packrow_length: 58812 rows_in_pack: 49064
[2022-08-21 22:38:57.725841] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5472868 packrow_length: 60712 rows_in_pack: 50576
[2022-08-21 22:38:57.808573] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5533580 packrow_length: 33556 rows_in_pack: 28084
[2022-08-21 22:38:57.856049] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5567136 packrow_length: 27404 rows_in_pack: 22868
[2022-08-21 22:38:57.893200] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5594540 packrow_length: 61084 rows_in_pack: 51124
[2022-08-21 22:38:57.975819] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5655624 packrow_length: 47228 rows_in_pack: 39408
[2022-08-21 22:38:58.038456] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5702852 packrow_length: 13648 rows_in_pack: 11344
[2022-08-21 22:38:58.057264] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5716500 packrow_length: 60916 rows_in_pack: 51052
[2022-08-21 22:38:58.137722] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5777416 packrow_length: 60700 rows_in_pack: 50708
[2022-08-21 22:38:58.219812] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5838116 packrow_length: 60640 rows_in_pack: 50540
[2022-08-21 22:38:58.300331] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5898756 packrow_length: 47092 rows_in_pack: 39568
[2022-08-21 22:38:58.365609] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5945848 packrow_length: 13580 rows_in_pack: 11412
[2022-08-21 22:38:58.385440] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5959428 packrow_length: 60748 rows_in_pack: 50744
[2022-08-21 22:38:58.467538] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6020176 packrow_length: 60672 rows_in_pack: 50424
[2022-08-21 22:38:58.553911] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6080848 packrow_length: 60956 rows_in_pack: 50960
[2022-08-21 22:38:58.643825] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6141804 packrow_length: 47340 rows_in_pack: 39588
[2022-08-21 22:38:58.717637] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6189144 packrow_length: 13460 rows_in_pack: 11360
[2022-08-21 22:38:58.737452] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6202604 packrow_length: 61000 rows_in_pack: 50932
[2022-08-21 22:38:58.822745] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6263604 packrow_length: 60976 rows_in_pack: 50956
[2022-08-21 22:38:58.906691] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6324580 packrow_length: 60816 rows_in_pack: 50568
[2022-08-21 22:38:58.991157] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6385396 packrow_length: 47256 rows_in_pack: 39144
[2022-08-21 22:38:59.054589] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6432652 packrow_length: 13604 rows_in_pack: 11412
[2022-08-21 22:38:59.074403] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6446256 packrow_length: 49232 rows_in_pack: 40960
[2022-08-21 22:38:59.143635] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6495488 packrow_length: 11424 rows_in_pack: 9644
[2022-08-21 22:38:59.161101] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6506912 packrow_length: 60932 rows_in_pack: 50816
[2022-08-21 22:38:59.244524] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6567844 packrow_length: 17868 rows_in_pack: 14824
[2022-08-21 22:38:59.272081] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6585712 packrow_length: 42952 rows_in_pack: 35516
[2022-08-21 22:38:59.330226] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6628664 packrow_length: 60772 rows_in_pack: 50692
[2022-08-21 22:38:59.415678] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6689436 packrow_length: 60596 rows_in_pack: 50332
[2022-08-21 22:38:59.496376] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6750032 packrow_length: 60792 rows_in_pack: 51100
[2022-08-21 22:38:59.576411] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6810824 packrow_length: 17824 rows_in_pack: 14988
[2022-08-21 22:38:59.602676] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6828648 packrow_length: 43016 rows_in_pack: 35948
[2022-08-21 22:38:59.658520] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6871664 packrow_length: 60764 rows_in_pack: 50612
[2022-08-21 22:38:59.741439] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6932428 packrow_length: 60780 rows_in_pack: 50996
[2022-08-21 22:38:59.821442] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6993208 packrow_length: 60776 rows_in_pack: 50280
[2022-08-21 22:38:59.901379] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7053984 packrow_length: 17896 rows_in_pack: 14968
[2022-08-21 22:38:59.928866] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7071880 packrow_length: 43008 rows_in_pack: 35808
[2022-08-21 22:38:59.984744] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7114888 packrow_length: 60792 rows_in_pack: 50808
[2022-08-21 22:39:00.066104] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7175680 packrow_length: 60736 rows_in_pack: 50816
[2022-08-21 22:39:00.151458] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7236416 packrow_length: 60512 rows_in_pack: 50912
[2022-08-21 22:39:00.231467] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7296928 packrow_length: 17948 rows_in_pack: 15008
[2022-08-21 22:39:00.257053] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7314876 packrow_length: 42884 rows_in_pack: 35676
[2022-08-21 22:39:00.313670] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7357760 packrow_length: 60740 rows_in_pack: 50524
[2022-08-21 22:39:00.395178] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7418500 packrow_length: 4284 rows_in_pack: 3480
[2022-08-21 22:39:19.065794] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 243136 packrow_length: 60784 rows_in_pack: 18464
[2022-08-21 22:39:19.119673] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 303920 packrow_length: 60912 rows_in_pack: 41428
[2022-08-21 22:39:19.213538] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 364832 packrow_length: 60980 rows_in_pack: 41016
[2022-08-21 22:39:19.303535] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 425812 packrow_length: 60776 rows_in_pack: 40972
[2022-08-21 22:39:19.393101] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 486588 packrow_length: 60680 rows_in_pack: 40912
[2022-08-21 22:39:19.461845] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 547268 packrow_length: 60788 rows_in_pack: 40400
[2022-08-21 22:39:19.533707] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 608056 packrow_length: 60876 rows_in_pack: 40704
[2022-08-21 22:39:19.610390] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 668932 packrow_length: 60984 rows_in_pack: 40408
[2022-08-21 22:39:19.685757] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 729916 packrow_length: 60744 rows_in_pack: 41004
[2022-08-21 22:39:19.756347] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 790660 packrow_length: 60604 rows_in_pack: 40296
[2022-08-21 22:39:19.825234] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 851264 packrow_length: 60796 rows_in_pack: 40492
[2022-08-21 22:39:19.895401] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 912060 packrow_length: 15724 rows_in_pack: 10820
[2022-08-21 22:39:19.917924] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 927784 packrow_length: 45128 rows_in_pack: 30476
[2022-08-21 22:39:19.971381] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 972912 packrow_length: 60776 rows_in_pack: 40856
[2022-08-21 22:39:20.056423] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1033688 packrow_length: 60864 rows_in_pack: 40796
[2022-08-21 22:39:20.138380] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1094552 packrow_length: 13576 rows_in_pack: 9316
[2022-08-21 22:39:20.164018] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1108128 packrow_length: 47268 rows_in_pack: 31812
[2022-08-21 22:39:20.227267] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1155396 packrow_length: 60544 rows_in_pack: 41060
[2022-08-21 22:39:20.306051] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1215940 packrow_length: 60820 rows_in_pack: 40748
[2022-08-21 22:39:20.379343] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1276760 packrow_length: 60892 rows_in_pack: 40964
[2022-08-21 22:39:20.452881] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1337652 packrow_length: 13640 rows_in_pack: 9168
[2022-08-21 22:39:20.472715] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1351292 packrow_length: 47228 rows_in_pack: 31832
[2022-08-21 22:39:20.529233] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1398520 packrow_length: 60820 rows_in_pack: 40400
[2022-08-21 22:39:20.602062] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1459340 packrow_length: 60672 rows_in_pack: 40840
[2022-08-21 22:39:20.674849] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1520012 packrow_length: 60708 rows_in_pack: 40584
[2022-08-21 22:39:20.746379] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1580720 packrow_length: 13632 rows_in_pack: 9204
[2022-08-21 22:39:20.766702] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1594352 packrow_length: 47252 rows_in_pack: 31884
[2022-08-21 22:39:20.823469] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1641604 packrow_length: 61072 rows_in_pack: 41028
[2022-08-21 22:39:20.896948] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1702676 packrow_length: 60988 rows_in_pack: 41156
[2022-08-21 22:39:20.973878] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1763664 packrow_length: 60972 rows_in_pack: 40788
[2022-08-21 22:39:21.053267] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1824636 packrow_length: 13548 rows_in_pack: 9212
[2022-08-21 22:39:21.072063] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1838184 packrow_length: 47188 rows_in_pack: 31780
[2022-08-21 22:39:21.129894] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1885372 packrow_length: 60780 rows_in_pack: 41036
[2022-08-21 22:39:21.207469] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1946152 packrow_length: 60904 rows_in_pack: 40912
[2022-08-21 22:39:21.280785] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2007056 packrow_length: 60820 rows_in_pack: 40664
[2022-08-21 22:39:21.353704] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2067876 packrow_length: 13596 rows_in_pack: 9180
[2022-08-21 22:39:21.374609] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2081472 packrow_length: 47292 rows_in_pack: 31900
[2022-08-21 22:39:21.432000] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2128764 packrow_length: 60876 rows_in_pack: 41032
[2022-08-21 22:39:21.506022] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2189640 packrow_length: 60812 rows_in_pack: 40864
[2022-08-21 22:39:21.580881] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2250452 packrow_length: 60804 rows_in_pack: 40452
[2022-08-21 22:39:21.661610] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2311256 packrow_length: 13564 rows_in_pack: 9076
[2022-08-21 22:39:21.685664] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2324820 packrow_length: 47164 rows_in_pack: 31696
[2022-08-21 22:39:21.743393] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2371984 packrow_length: 60860 rows_in_pack: 40872
[2022-08-21 22:39:21.821939] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2432844 packrow_length: 60940 rows_in_pack: 41140
[2022-08-21 22:39:21.894273] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2493784 packrow_length: 60720 rows_in_pack: 40952
[2022-08-21 22:39:21.971536] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2554504 packrow_length: 13580 rows_in_pack: 9316
[2022-08-21 22:39:21.991538] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2568084 packrow_length: 47340 rows_in_pack: 31540
[2022-08-21 22:39:22.046341] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2615424 packrow_length: 60792 rows_in_pack: 40828
[2022-08-21 22:39:22.117970] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2676216 packrow_length: 60920 rows_in_pack: 40652
[2022-08-21 22:39:22.191236] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2737136 packrow_length: 61044 rows_in_pack: 41376
[2022-08-21 22:39:22.263000] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2798180 packrow_length: 13548 rows_in_pack: 9048
[2022-08-21 22:39:22.282996] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2811728 packrow_length: 47396 rows_in_pack: 32268
[2022-08-21 22:39:22.340265] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2859124 packrow_length: 60672 rows_in_pack: 40816
[2022-08-21 22:39:22.411421] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2919796 packrow_length: 60960 rows_in_pack: 40592
[2022-08-21 22:39:22.482883] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2980756 packrow_length: 60872 rows_in_pack: 40976
[2022-08-21 22:39:22.558334] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3041628 packrow_length: 13664 rows_in_pack: 9292
[2022-08-21 22:39:22.577460] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3055292 packrow_length: 47196 rows_in_pack: 31364
[2022-08-21 22:39:22.632166] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3102488 packrow_length: 60796 rows_in_pack: 40376
[2022-08-21 22:39:22.703803] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3163284 packrow_length: 60820 rows_in_pack: 40764
[2022-08-21 22:39:22.774532] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3224104 packrow_length: 60796 rows_in_pack: 41056
[2022-08-21 22:39:22.848083] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3284900 packrow_length: 13632 rows_in_pack: 9028
[2022-08-21 22:39:22.867661] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3298532 packrow_length: 47368 rows_in_pack: 31824
[2022-08-21 22:39:22.924166] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3345900 packrow_length: 60756 rows_in_pack: 41088
[2022-08-21 22:39:22.997363] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3406656 packrow_length: 60880 rows_in_pack: 40976
[2022-08-21 22:39:23.070502] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3467536 packrow_length: 60864 rows_in_pack: 41016
[2022-08-21 22:39:23.148054] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3528400 packrow_length: 13648 rows_in_pack: 9196
[2022-08-21 22:39:23.168366] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3542048 packrow_length: 47288 rows_in_pack: 31716
[2022-08-21 22:39:23.222746] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3589336 packrow_length: 60852 rows_in_pack: 41440
[2022-08-21 22:39:23.294035] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3650188 packrow_length: 60792 rows_in_pack: 40696
[2022-08-21 22:39:23.366101] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3710980 packrow_length: 60620 rows_in_pack: 41092
[2022-08-21 22:39:23.444205] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3771600 packrow_length: 13528 rows_in_pack: 9208
[2022-08-21 22:39:23.469175] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3785128 packrow_length: 47096 rows_in_pack: 31988
[2022-08-21 22:39:23.525619] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3832224 packrow_length: 60784 rows_in_pack: 40908
[2022-08-21 22:39:23.601148] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3893008 packrow_length: 60688 rows_in_pack: 41052
[2022-08-21 22:39:23.672568] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3953696 packrow_length: 60496 rows_in_pack: 40204
[2022-08-21 22:39:23.744603] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4014192 packrow_length: 13564 rows_in_pack: 9056
[2022-08-21 22:39:23.764530] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4027756 packrow_length: 47064 rows_in_pack: 31492
[2022-08-21 22:39:23.820298] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4074820 packrow_length: 60800 rows_in_pack: 40844
[2022-08-21 22:39:23.890516] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4135620 packrow_length: 60692 rows_in_pack: 40980
[2022-08-21 22:39:23.961064] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4196312 packrow_length: 60800 rows_in_pack: 40664
[2022-08-21 22:39:24.031321] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4257112 packrow_length: 13452 rows_in_pack: 8964
[2022-08-21 22:39:24.051285] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4270564 packrow_length: 47196 rows_in_pack: 31844
[2022-08-21 22:39:24.105987] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4317760 packrow_length: 60748 rows_in_pack: 41120
[2022-08-21 22:39:24.176983] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4378508 packrow_length: 60800 rows_in_pack: 40852
[2022-08-21 22:39:24.248314] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4439308 packrow_length: 61036 rows_in_pack: 41620
[2022-08-21 22:39:24.320619] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4500344 packrow_length: 13600 rows_in_pack: 9140
[2022-08-21 22:39:24.338149] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4513944 packrow_length: 47296 rows_in_pack: 31612
[2022-08-21 22:39:24.393445] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4561240 packrow_length: 60716 rows_in_pack: 40816
[2022-08-21 22:39:24.466265] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4621956 packrow_length: 17840 rows_in_pack: 11984
[2022-08-21 22:39:24.488138] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4639796 packrow_length: 42836 rows_in_pack: 29228
[2022-08-21 22:39:24.538984] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4682632 packrow_length: 2152 rows_in_pack: 1444
[2022-08-21 22:39:24.544775] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4684784 packrow_length: 58396 rows_in_pack: 39200
[2022-08-21 22:39:24.611880] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4743180 packrow_length: 60520 rows_in_pack: 40660
[2022-08-21 22:39:24.684288] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4803700 packrow_length: 60956 rows_in_pack: 40608
[2022-08-21 22:39:24.765621] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4864656 packrow_length: 60828 rows_in_pack: 40920
[2022-08-21 22:39:24.837755] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4925484 packrow_length: 2132 rows_in_pack: 1496
[2022-08-21 22:39:24.844385] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4927616 packrow_length: 58812 rows_in_pack: 39404
[2022-08-21 22:39:24.912021] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4986428 packrow_length: 60484 rows_in_pack: 40580
[2022-08-21 22:39:24.983313] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5046912 packrow_length: 60796 rows_in_pack: 40920
[2022-08-21 22:39:25.061954] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5107708 packrow_length: 60712 rows_in_pack: 40664
[2022-08-21 22:39:25.134068] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5168420 packrow_length: 2084 rows_in_pack: 1408
[2022-08-21 22:39:25.141246] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5170504 packrow_length: 58576 rows_in_pack: 39408
[2022-08-21 22:39:25.210960] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5229080 packrow_length: 60776 rows_in_pack: 41088
[2022-08-21 22:39:25.283289] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5289856 packrow_length: 61160 rows_in_pack: 40984
[2022-08-21 22:39:25.355544] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5351016 packrow_length: 60864 rows_in_pack: 41224
[2022-08-21 22:39:25.428118] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5411880 packrow_length: 2176 rows_in_pack: 1488
[2022-08-21 22:39:25.432880] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5414056 packrow_length: 58812 rows_in_pack: 39724
[2022-08-21 22:39:25.501470] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5472868 packrow_length: 60712 rows_in_pack: 40468
[2022-08-21 22:39:25.570198] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5533580 packrow_length: 33556 rows_in_pack: 22772
[2022-08-21 22:39:25.611657] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5567136 packrow_length: 27404 rows_in_pack: 18420
[2022-08-21 22:39:25.643867] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5594540 packrow_length: 61084 rows_in_pack: 41388
[2022-08-21 22:39:25.716471] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5655624 packrow_length: 47228 rows_in_pack: 31772
[2022-08-21 22:39:25.773292] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5702852 packrow_length: 13648 rows_in_pack: 9160
[2022-08-21 22:39:25.789609] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5716500 packrow_length: 60916 rows_in_pack: 40716
[2022-08-21 22:39:25.860640] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5777416 packrow_length: 60700 rows_in_pack: 40916
[2022-08-21 22:39:25.933533] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5838116 packrow_length: 60640 rows_in_pack: 40748
[2022-08-21 22:39:26.005559] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5898756 packrow_length: 47092 rows_in_pack: 31780
[2022-08-21 22:39:26.065328] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5945848 packrow_length: 13580 rows_in_pack: 9108
[2022-08-21 22:39:26.081610] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5959428 packrow_length: 60748 rows_in_pack: 40984
[2022-08-21 22:39:26.150444] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6020176 packrow_length: 60672 rows_in_pack: 40680
[2022-08-21 22:39:26.221796] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6080848 packrow_length: 60956 rows_in_pack: 40640
[2022-08-21 22:39:26.296654] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6141804 packrow_length: 47340 rows_in_pack: 31964
[2022-08-21 22:39:26.357185] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6189144 packrow_length: 13460 rows_in_pack: 9144
[2022-08-21 22:39:26.373882] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6202604 packrow_length: 61000 rows_in_pack: 40900
[2022-08-21 22:39:26.445635] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6263604 packrow_length: 60976 rows_in_pack: 41112
[2022-08-21 22:39:26.517943] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6324580 packrow_length: 60816 rows_in_pack: 40756
[2022-08-21 22:39:26.589335] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6385396 packrow_length: 47256 rows_in_pack: 31804
[2022-08-21 22:39:26.643956] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6432652 packrow_length: 13604 rows_in_pack: 9132
[2022-08-21 22:39:26.660152] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6446256 packrow_length: 49232 rows_in_pack: 33116
[2022-08-21 22:39:26.718712] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6495488 packrow_length: 11424 rows_in_pack: 7948
[2022-08-21 22:39:26.733560] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6506912 packrow_length: 60932 rows_in_pack: 41048
[2022-08-21 22:39:26.806503] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6567844 packrow_length: 17868 rows_in_pack: 11908
[2022-08-21 22:39:26.832747] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6585712 packrow_length: 42952 rows_in_pack: 28700
[2022-08-21 22:39:26.883628] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6628664 packrow_length: 60772 rows_in_pack: 40808
[2022-08-21 22:39:26.953110] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6689436 packrow_length: 60596 rows_in_pack: 40596
[2022-08-21 22:39:27.022705] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6750032 packrow_length: 60792 rows_in_pack: 40904
[2022-08-21 22:39:27.093989] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6810824 packrow_length: 17824 rows_in_pack: 12084
[2022-08-21 22:39:27.118621] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6828648 packrow_length: 43016 rows_in_pack: 29140
[2022-08-21 22:39:27.169153] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6871664 packrow_length: 60764 rows_in_pack: 40968
[2022-08-21 22:39:27.241733] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6932428 packrow_length: 60780 rows_in_pack: 40888
[2022-08-21 22:39:27.313106] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6993208 packrow_length: 60776 rows_in_pack: 40508
[2022-08-21 22:39:27.383988] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7053984 packrow_length: 17896 rows_in_pack: 12068
[2022-08-21 22:39:27.409326] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7071880 packrow_length: 43008 rows_in_pack: 28716
[2022-08-21 22:39:27.460349] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7114888 packrow_length: 60792 rows_in_pack: 40656
[2022-08-21 22:39:27.533896] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7175680 packrow_length: 60736 rows_in_pack: 41144
[2022-08-21 22:39:27.604998] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7236416 packrow_length: 60512 rows_in_pack: 41020
[2022-08-21 22:39:27.681647] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7296928 packrow_length: 17948 rows_in_pack: 12144
[2022-08-21 22:39:27.704554] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7314876 packrow_length: 42884 rows_in_pack: 28824
[2022-08-21 22:39:27.754525] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7357760 packrow_length: 60740 rows_in_pack: 40912
[2022-08-21 22:39:27.824573] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7418500 packrow_length: 4284 rows_in_pack: 2820
[2022-08-21 22:39:45.274836] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 425812 packrow_length: 60776 rows_in_pack: 12056
[2022-08-21 22:39:45.322775] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 486588 packrow_length: 60680 rows_in_pack: 31228
[2022-08-21 22:39:45.397565] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 547268 packrow_length: 60788 rows_in_pack: 30780
[2022-08-21 22:39:45.472767] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 608056 packrow_length: 60876 rows_in_pack: 30860
[2022-08-21 22:39:45.546245] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 668932 packrow_length: 60984 rows_in_pack: 31020
[2022-08-21 22:39:45.619852] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 729916 packrow_length: 60744 rows_in_pack: 31200
[2022-08-21 22:39:45.686295] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 790660 packrow_length: 60604 rows_in_pack: 30832
[2022-08-21 22:39:45.747463] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 851264 packrow_length: 60796 rows_in_pack: 30792
[2022-08-21 22:39:45.808097] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 912060 packrow_length: 15724 rows_in_pack: 8188
[2022-08-21 22:39:45.827682] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 927784 packrow_length: 45128 rows_in_pack: 23492
[2022-08-21 22:39:45.873235] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 972912 packrow_length: 60776 rows_in_pack: 31488
[2022-08-21 22:39:45.935491] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1033688 packrow_length: 60864 rows_in_pack: 31268
[2022-08-21 22:39:45.997553] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1094552 packrow_length: 13576 rows_in_pack: 7072
[2022-08-21 22:39:46.015203] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1108128 packrow_length: 47268 rows_in_pack: 24200
[2022-08-21 22:39:46.063575] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1155396 packrow_length: 60544 rows_in_pack: 31324
[2022-08-21 22:39:46.124595] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1215940 packrow_length: 60820 rows_in_pack: 31320
[2022-08-21 22:39:46.185832] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1276760 packrow_length: 60892 rows_in_pack: 31492
[2022-08-21 22:39:46.247565] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1337652 packrow_length: 13640 rows_in_pack: 6940
[2022-08-21 22:39:46.264634] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1351292 packrow_length: 47228 rows_in_pack: 24272
[2022-08-21 22:39:46.314198] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1398520 packrow_length: 60820 rows_in_pack: 31096
[2022-08-21 22:39:46.374183] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1459340 packrow_length: 60672 rows_in_pack: 31336
[2022-08-21 22:39:46.437582] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1520012 packrow_length: 60708 rows_in_pack: 31048
[2022-08-21 22:39:46.505687] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1580720 packrow_length: 13632 rows_in_pack: 6932
[2022-08-21 22:39:46.522469] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1594352 packrow_length: 47252 rows_in_pack: 24308
[2022-08-21 22:39:46.568934] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1641604 packrow_length: 61072 rows_in_pack: 31408
[2022-08-21 22:39:46.628067] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1702676 packrow_length: 60988 rows_in_pack: 31444
[2022-08-21 22:39:46.690457] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1763664 packrow_length: 60972 rows_in_pack: 31160
[2022-08-21 22:39:46.753105] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1824636 packrow_length: 13548 rows_in_pack: 7180
[2022-08-21 22:39:46.770013] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1838184 packrow_length: 47188 rows_in_pack: 24332
[2022-08-21 22:39:46.818865] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1885372 packrow_length: 60780 rows_in_pack: 31332
[2022-08-21 22:39:46.881970] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1946152 packrow_length: 60904 rows_in_pack: 31304
[2022-08-21 22:39:46.944595] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2007056 packrow_length: 60820 rows_in_pack: 30916
[2022-08-21 22:39:47.007189] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2067876 packrow_length: 13596 rows_in_pack: 7080
[2022-08-21 22:39:47.024995] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2081472 packrow_length: 47292 rows_in_pack: 24212
[2022-08-21 22:39:47.073997] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2128764 packrow_length: 60876 rows_in_pack: 31672
[2022-08-21 22:39:47.138051] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2189640 packrow_length: 60812 rows_in_pack: 31164
[2022-08-21 22:39:47.198969] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2250452 packrow_length: 60804 rows_in_pack: 31016
[2022-08-21 22:39:47.258047] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2311256 packrow_length: 13564 rows_in_pack: 6964
[2022-08-21 22:39:47.275436] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2324820 packrow_length: 47164 rows_in_pack: 24368
[2022-08-21 22:39:47.324445] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2371984 packrow_length: 60860 rows_in_pack: 31288
[2022-08-21 22:39:47.386377] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2432844 packrow_length: 60940 rows_in_pack: 31444
[2022-08-21 22:39:47.448270] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2493784 packrow_length: 60720 rows_in_pack: 31460
[2022-08-21 22:39:47.508783] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2554504 packrow_length: 13580 rows_in_pack: 7100
[2022-08-21 22:39:47.525619] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2568084 packrow_length: 47340 rows_in_pack: 24008
[2022-08-21 22:39:47.572744] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2615424 packrow_length: 60792 rows_in_pack: 31352
[2022-08-21 22:39:47.631435] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2676216 packrow_length: 60920 rows_in_pack: 31024
[2022-08-21 22:39:47.694527] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2737136 packrow_length: 61044 rows_in_pack: 31588
[2022-08-21 22:39:47.754548] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2798180 packrow_length: 13548 rows_in_pack: 6804
[2022-08-21 22:39:47.771133] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2811728 packrow_length: 47396 rows_in_pack: 24728
[2022-08-21 22:39:47.820532] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2859124 packrow_length: 60672 rows_in_pack: 31340
[2022-08-21 22:39:47.881952] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2919796 packrow_length: 60960 rows_in_pack: 31224
[2022-08-21 22:39:47.946680] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2980756 packrow_length: 60872 rows_in_pack: 31320
[2022-08-21 22:39:48.014484] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3041628 packrow_length: 13664 rows_in_pack: 7084
[2022-08-21 22:39:48.032934] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3055292 packrow_length: 47196 rows_in_pack: 23960
[2022-08-21 22:39:48.080179] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3102488 packrow_length: 60796 rows_in_pack: 31184
[2022-08-21 22:39:48.139547] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3163284 packrow_length: 60820 rows_in_pack: 31348
[2022-08-21 22:39:48.201344] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3224104 packrow_length: 60796 rows_in_pack: 31336
[2022-08-21 22:39:48.263564] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3284900 packrow_length: 13632 rows_in_pack: 6960
[2022-08-21 22:39:48.281371] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3298532 packrow_length: 47368 rows_in_pack: 24200
[2022-08-21 22:39:48.328319] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3345900 packrow_length: 60756 rows_in_pack: 31252
[2022-08-21 22:39:48.389347] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3406656 packrow_length: 60880 rows_in_pack: 31488
[2022-08-21 22:39:48.450931] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3467536 packrow_length: 60864 rows_in_pack: 31476
[2022-08-21 22:39:48.514663] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3528400 packrow_length: 13648 rows_in_pack: 7012
[2022-08-21 22:39:48.531615] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3542048 packrow_length: 47288 rows_in_pack: 24212
[2022-08-21 22:39:48.580671] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3589336 packrow_length: 60852 rows_in_pack: 31580
[2022-08-21 22:39:48.641428] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3650188 packrow_length: 60792 rows_in_pack: 31100
[2022-08-21 22:39:48.701933] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3710980 packrow_length: 60620 rows_in_pack: 31552
[2022-08-21 22:39:48.763431] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3771600 packrow_length: 13528 rows_in_pack: 7092
[2022-08-21 22:39:48.778743] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3785128 packrow_length: 47096 rows_in_pack: 24780
[2022-08-21 22:39:48.826738] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3832224 packrow_length: 60784 rows_in_pack: 31172
[2022-08-21 22:39:48.888591] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3893008 packrow_length: 60688 rows_in_pack: 31180
[2022-08-21 22:39:48.950892] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3953696 packrow_length: 60496 rows_in_pack: 30624
[2022-08-21 22:39:49.011722] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4014192 packrow_length: 13564 rows_in_pack: 6848
[2022-08-21 22:39:49.029433] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4027756 packrow_length: 47064 rows_in_pack: 24092
[2022-08-21 22:39:49.077714] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4074820 packrow_length: 60800 rows_in_pack: 31184
[2022-08-21 22:39:49.139110] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4135620 packrow_length: 60692 rows_in_pack: 31512
[2022-08-21 22:39:49.199823] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4196312 packrow_length: 60800 rows_in_pack: 31288
[2022-08-21 22:39:49.260688] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4257112 packrow_length: 13452 rows_in_pack: 6756
[2022-08-21 22:39:49.277658] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4270564 packrow_length: 47196 rows_in_pack: 24388
[2022-08-21 22:39:49.326954] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4317760 packrow_length: 60748 rows_in_pack: 31472
[2022-08-21 22:39:49.390936] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4378508 packrow_length: 60800 rows_in_pack: 31268
[2022-08-21 22:39:49.453453] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4439308 packrow_length: 61036 rows_in_pack: 31988
[2022-08-21 22:39:49.518414] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4500344 packrow_length: 13600 rows_in_pack: 7056
[2022-08-21 22:39:49.533953] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4513944 packrow_length: 47296 rows_in_pack: 24200
[2022-08-21 22:39:49.582177] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4561240 packrow_length: 60716 rows_in_pack: 31016
[2022-08-21 22:39:49.643661] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4621956 packrow_length: 17840 rows_in_pack: 8964
[2022-08-21 22:39:49.662779] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4639796 packrow_length: 42836 rows_in_pack: 22236
[2022-08-21 22:39:49.705848] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4682632 packrow_length: 2152 rows_in_pack: 1132
[2022-08-21 22:39:49.712210] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4684784 packrow_length: 58396 rows_in_pack: 30104
[2022-08-21 22:39:49.770859] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4743180 packrow_length: 60520 rows_in_pack: 30896
[2022-08-21 22:39:49.833863] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4803700 packrow_length: 60956 rows_in_pack: 31236
[2022-08-21 22:39:49.896434] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4864656 packrow_length: 60828 rows_in_pack: 31520
[2022-08-21 22:39:49.959258] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4925484 packrow_length: 2132 rows_in_pack: 1128
[2022-08-21 22:39:49.965774] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4927616 packrow_length: 58812 rows_in_pack: 30088
[2022-08-21 22:39:50.026077] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4986428 packrow_length: 60484 rows_in_pack: 30948
[2022-08-21 22:39:50.087901] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5046912 packrow_length: 60796 rows_in_pack: 31188
[2022-08-21 22:39:50.150481] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5107708 packrow_length: 60712 rows_in_pack: 31012
[2022-08-21 22:39:50.212099] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5168420 packrow_length: 2084 rows_in_pack: 1056
[2022-08-21 22:39:50.217544] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5170504 packrow_length: 58576 rows_in_pack: 29956
[2022-08-21 22:39:50.277519] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5229080 packrow_length: 60776 rows_in_pack: 31148
[2022-08-21 22:39:50.341270] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5289856 packrow_length: 61160 rows_in_pack: 31152
[2022-08-21 22:39:50.405653] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5351016 packrow_length: 60864 rows_in_pack: 31396
[2022-08-21 22:39:50.466849] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5411880 packrow_length: 2176 rows_in_pack: 1132
[2022-08-21 22:39:50.471135] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5414056 packrow_length: 58812 rows_in_pack: 30628
[2022-08-21 22:39:50.533443] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5472868 packrow_length: 60712 rows_in_pack: 30992
[2022-08-21 22:39:50.602811] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5533580 packrow_length: 33556 rows_in_pack: 17408
[2022-08-21 22:39:50.638945] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5567136 packrow_length: 27404 rows_in_pack: 14000
[2022-08-21 22:39:50.667829] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5594540 packrow_length: 61084 rows_in_pack: 31816
[2022-08-21 22:39:50.728879] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5655624 packrow_length: 47228 rows_in_pack: 24248
[2022-08-21 22:39:50.780267] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5702852 packrow_length: 13648 rows_in_pack: 6844
[2022-08-21 22:39:50.795751] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5716500 packrow_length: 60916 rows_in_pack: 31032
[2022-08-21 22:39:50.856448] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5777416 packrow_length: 60700 rows_in_pack: 31284
[2022-08-21 22:39:50.922378] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5838116 packrow_length: 60640 rows_in_pack: 31144
[2022-08-21 22:39:50.986281] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5898756 packrow_length: 47092 rows_in_pack: 24336
[2022-08-21 22:39:51.035624] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5945848 packrow_length: 13580 rows_in_pack: 7032
[2022-08-21 22:39:51.050282] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5959428 packrow_length: 60748 rows_in_pack: 31340
[2022-08-21 22:39:51.112827] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6020176 packrow_length: 60672 rows_in_pack: 31056
[2022-08-21 22:39:51.176223] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6080848 packrow_length: 60956 rows_in_pack: 30936
[2022-08-21 22:39:51.238072] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6141804 packrow_length: 47340 rows_in_pack: 24524
[2022-08-21 22:39:51.288552] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6189144 packrow_length: 13460 rows_in_pack: 6956
[2022-08-21 22:39:51.303299] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6202604 packrow_length: 61000 rows_in_pack: 31024
[2022-08-21 22:39:51.366589] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6263604 packrow_length: 60976 rows_in_pack: 31240
[2022-08-21 22:39:51.430882] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6324580 packrow_length: 60816 rows_in_pack: 31192
[2022-08-21 22:39:51.495775] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6385396 packrow_length: 47256 rows_in_pack: 24564
[2022-08-21 22:39:51.552725] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6432652 packrow_length: 13604 rows_in_pack: 6976
[2022-08-21 22:39:51.568044] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6446256 packrow_length: 49232 rows_in_pack: 25332
[2022-08-21 22:39:51.621559] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6495488 packrow_length: 11424 rows_in_pack: 6124
[2022-08-21 22:39:51.634396] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6506912 packrow_length: 60932 rows_in_pack: 31700
[2022-08-21 22:39:51.697511] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6567844 packrow_length: 17868 rows_in_pack: 8976
[2022-08-21 22:39:51.719269] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6585712 packrow_length: 42952 rows_in_pack: 21664
[2022-08-21 22:39:51.766469] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6628664 packrow_length: 60772 rows_in_pack: 31016
[2022-08-21 22:39:51.828953] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6689436 packrow_length: 60596 rows_in_pack: 30920
[2022-08-21 22:39:51.891982] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6750032 packrow_length: 60792 rows_in_pack: 31012
[2022-08-21 22:39:51.955930] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6810824 packrow_length: 17824 rows_in_pack: 9020
[2022-08-21 22:39:51.981282] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6828648 packrow_length: 43016 rows_in_pack: 22548
[2022-08-21 22:39:52.027166] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6871664 packrow_length: 60764 rows_in_pack: 31184
[2022-08-21 22:39:52.090386] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6932428 packrow_length: 60780 rows_in_pack: 31408
[2022-08-21 22:39:52.156710] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6993208 packrow_length: 60776 rows_in_pack: 31168
[2022-08-21 22:39:52.217982] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7053984 packrow_length: 17896 rows_in_pack: 9188
[2022-08-21 22:39:52.239057] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7071880 packrow_length: 43008 rows_in_pack: 22268
[2022-08-21 22:39:52.284358] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7114888 packrow_length: 60792 rows_in_pack: 31288
[2022-08-21 22:39:52.347098] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7175680 packrow_length: 60736 rows_in_pack: 31864
[2022-08-21 22:39:52.411897] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7236416 packrow_length: 60512 rows_in_pack: 31160
[2022-08-21 22:39:52.474714] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7296928 packrow_length: 17948 rows_in_pack: 9288
[2022-08-21 22:39:52.495380] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7314876 packrow_length: 42884 rows_in_pack: 22204
[2022-08-21 22:39:52.539227] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7357760 packrow_length: 60740 rows_in_pack: 31724
[2022-08-21 22:39:52.599926] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7418500 packrow_length: 4284 rows_in_pack: 2152
[2022-08-21 22:39:56.580765] [76324] [INFO] [engine.cpp:1352] MSG: Command: select 5/5, update 0/0, insert 0/0, load 0/0, queries 0/14
[2022-08-21 22:39:56.580824] [76324] [INFO] [engine.cpp:1364] MSG: Select: 0/1, Loaded: 0/0(0/0), dup: 0/0, insert: 0/0, failed insert: 0/0, update: 0/0
[2022-08-21 22:40:08.620579] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 668932 packrow_length: 60984 rows_in_pack: 6936
[2022-08-21 22:40:08.659514] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 729916 packrow_length: 60744 rows_in_pack: 21628
[2022-08-21 22:40:08.720279] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 790660 packrow_length: 60604 rows_in_pack: 21468
[2022-08-21 22:40:08.781406] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 851264 packrow_length: 60796 rows_in_pack: 21724
[2022-08-21 22:40:08.843636] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 912060 packrow_length: 15724 rows_in_pack: 5832
[2022-08-21 22:40:08.863124] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 927784 packrow_length: 45128 rows_in_pack: 16436
[2022-08-21 22:40:08.909852] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 972912 packrow_length: 60776 rows_in_pack: 22192
[2022-08-21 22:40:08.970146] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1033688 packrow_length: 60864 rows_in_pack: 22044
[2022-08-21 22:40:09.031153] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1094552 packrow_length: 13576 rows_in_pack: 4864
[2022-08-21 22:40:09.045832] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1108128 packrow_length: 47268 rows_in_pack: 17016
[2022-08-21 22:40:09.086494] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1155396 packrow_length: 60544 rows_in_pack: 21848
[2022-08-21 22:40:09.135941] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1215940 packrow_length: 60820 rows_in_pack: 21940
[2022-08-21 22:40:09.186741] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1276760 packrow_length: 60892 rows_in_pack: 21780
[2022-08-21 22:40:09.238651] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1337652 packrow_length: 13640 rows_in_pack: 4952
[2022-08-21 22:40:09.253520] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1351292 packrow_length: 47228 rows_in_pack: 17092
[2022-08-21 22:40:09.295038] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1398520 packrow_length: 60820 rows_in_pack: 21680
[2022-08-21 22:40:09.345445] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1459340 packrow_length: 60672 rows_in_pack: 21760
[2022-08-21 22:40:09.396959] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1520012 packrow_length: 60708 rows_in_pack: 21900
[2022-08-21 22:40:09.449744] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1580720 packrow_length: 13632 rows_in_pack: 4828
[2022-08-21 22:40:09.464759] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1594352 packrow_length: 47252 rows_in_pack: 17244
[2022-08-21 22:40:09.505570] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1641604 packrow_length: 61072 rows_in_pack: 22044
[2022-08-21 22:40:09.556456] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1702676 packrow_length: 60988 rows_in_pack: 22160
[2022-08-21 22:40:09.608478] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1763664 packrow_length: 60972 rows_in_pack: 21796
[2022-08-21 22:40:09.666682] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1824636 packrow_length: 13548 rows_in_pack: 5148
[2022-08-21 22:40:09.680442] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1838184 packrow_length: 47188 rows_in_pack: 17024
[2022-08-21 22:40:09.721321] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1885372 packrow_length: 60780 rows_in_pack: 22004
[2022-08-21 22:40:09.772875] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1946152 packrow_length: 60904 rows_in_pack: 21976
[2022-08-21 22:40:09.824678] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2007056 packrow_length: 60820 rows_in_pack: 21528
[2022-08-21 22:40:09.877668] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2067876 packrow_length: 13596 rows_in_pack: 4988
[2022-08-21 22:40:09.892939] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2081472 packrow_length: 47292 rows_in_pack: 16980
[2022-08-21 22:40:09.933339] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2128764 packrow_length: 60876 rows_in_pack: 22428
[2022-08-21 22:40:09.984925] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2189640 packrow_length: 60812 rows_in_pack: 21940
[2022-08-21 22:40:10.036445] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2250452 packrow_length: 60804 rows_in_pack: 21840
[2022-08-21 22:40:10.088355] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2311256 packrow_length: 13564 rows_in_pack: 4996
[2022-08-21 22:40:10.103669] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2324820 packrow_length: 47164 rows_in_pack: 17304
[2022-08-21 22:40:10.144560] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2371984 packrow_length: 60860 rows_in_pack: 22176
[2022-08-21 22:40:10.195726] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2432844 packrow_length: 60940 rows_in_pack: 22080
[2022-08-21 22:40:10.247886] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2493784 packrow_length: 60720 rows_in_pack: 22384
[2022-08-21 22:40:10.300820] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2554504 packrow_length: 13580 rows_in_pack: 5092
[2022-08-21 22:40:10.316542] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2568084 packrow_length: 47340 rows_in_pack: 16656
[2022-08-21 22:40:10.357383] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2615424 packrow_length: 60792 rows_in_pack: 22092
[2022-08-21 22:40:10.412189] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2676216 packrow_length: 60920 rows_in_pack: 21796
[2022-08-21 22:40:10.468380] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2737136 packrow_length: 61044 rows_in_pack: 22192
[2022-08-21 22:40:10.521214] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2798180 packrow_length: 13548 rows_in_pack: 4828
[2022-08-21 22:40:10.536582] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2811728 packrow_length: 47396 rows_in_pack: 17316
[2022-08-21 22:40:10.578687] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2859124 packrow_length: 60672 rows_in_pack: 21904
[2022-08-21 22:40:10.629595] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2919796 packrow_length: 60960 rows_in_pack: 22368
[2022-08-21 22:40:10.682737] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2980756 packrow_length: 60872 rows_in_pack: 22248
[2022-08-21 22:40:10.735674] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3041628 packrow_length: 13664 rows_in_pack: 4944
[2022-08-21 22:40:10.751279] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3055292 packrow_length: 47196 rows_in_pack: 16664
[2022-08-21 22:40:10.792323] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3102488 packrow_length: 60796 rows_in_pack: 21624
[2022-08-21 22:40:10.842536] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3163284 packrow_length: 60820 rows_in_pack: 22252
[2022-08-21 22:40:10.895470] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3224104 packrow_length: 60796 rows_in_pack: 21992
[2022-08-21 22:40:10.950515] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3284900 packrow_length: 13632 rows_in_pack: 4836
[2022-08-21 22:40:10.965508] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3298532 packrow_length: 47368 rows_in_pack: 17008
[2022-08-21 22:40:11.006567] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3345900 packrow_length: 60756 rows_in_pack: 21984
[2022-08-21 22:40:11.056644] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3406656 packrow_length: 60880 rows_in_pack: 22104
[2022-08-21 22:40:11.108501] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3467536 packrow_length: 60864 rows_in_pack: 22132
[2022-08-21 22:40:11.160179] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3528400 packrow_length: 13648 rows_in_pack: 4928
[2022-08-21 22:40:11.176145] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3542048 packrow_length: 47288 rows_in_pack: 16984
[2022-08-21 22:40:11.218242] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3589336 packrow_length: 60852 rows_in_pack: 22236
[2022-08-21 22:40:11.270318] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3650188 packrow_length: 60792 rows_in_pack: 21752
[2022-08-21 22:40:11.325956] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3710980 packrow_length: 60620 rows_in_pack: 22264
[2022-08-21 22:40:11.380642] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3771600 packrow_length: 13528 rows_in_pack: 4968
[2022-08-21 22:40:11.394257] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3785128 packrow_length: 47096 rows_in_pack: 17536
[2022-08-21 22:40:11.436556] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3832224 packrow_length: 60784 rows_in_pack: 22264
[2022-08-21 22:40:11.490643] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3893008 packrow_length: 60688 rows_in_pack: 21796
[2022-08-21 22:40:11.543907] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3953696 packrow_length: 60496 rows_in_pack: 21568
[2022-08-21 22:40:11.596466] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4014192 packrow_length: 13564 rows_in_pack: 4960
[2022-08-21 22:40:11.612460] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4027756 packrow_length: 47064 rows_in_pack: 17032
[2022-08-21 22:40:11.653690] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4074820 packrow_length: 60800 rows_in_pack: 22068
[2022-08-21 22:40:11.705742] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4135620 packrow_length: 60692 rows_in_pack: 22072
[2022-08-21 22:40:11.758338] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4196312 packrow_length: 60800 rows_in_pack: 21920
[2022-08-21 22:40:11.811038] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4257112 packrow_length: 13452 rows_in_pack: 4664
[2022-08-21 22:40:11.825770] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4270564 packrow_length: 47196 rows_in_pack: 17476
[2022-08-21 22:40:11.868430] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4317760 packrow_length: 60748 rows_in_pack: 22380
[2022-08-21 22:40:11.922860] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4378508 packrow_length: 60800 rows_in_pack: 22056
[2022-08-21 22:40:11.977736] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4439308 packrow_length: 61036 rows_in_pack: 22392
[2022-08-21 22:40:12.032273] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4500344 packrow_length: 13600 rows_in_pack: 4844
[2022-08-21 22:40:12.045753] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4513944 packrow_length: 47296 rows_in_pack: 17068
[2022-08-21 22:40:12.093208] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4561240 packrow_length: 60716 rows_in_pack: 21988
[2022-08-21 22:40:12.144278] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4621956 packrow_length: 17840 rows_in_pack: 6380
[2022-08-21 22:40:12.159349] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4639796 packrow_length: 42836 rows_in_pack: 15668
[2022-08-21 22:40:12.196848] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4682632 packrow_length: 2152 rows_in_pack: 748
[2022-08-21 22:40:12.202298] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4684784 packrow_length: 58396 rows_in_pack: 21292
[2022-08-21 22:40:12.252861] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4743180 packrow_length: 60520 rows_in_pack: 21940
[2022-08-21 22:40:12.305592] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4803700 packrow_length: 60956 rows_in_pack: 22016
[2022-08-21 22:40:12.357906] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4864656 packrow_length: 60828 rows_in_pack: 22360
[2022-08-21 22:40:12.410534] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4925484 packrow_length: 2132 rows_in_pack: 800
[2022-08-21 22:40:12.416291] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4927616 packrow_length: 58812 rows_in_pack: 21236
[2022-08-21 22:40:12.468412] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4986428 packrow_length: 60484 rows_in_pack: 21460
[2022-08-21 22:40:12.521310] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5046912 packrow_length: 60796 rows_in_pack: 21832
[2022-08-21 22:40:12.574266] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5107708 packrow_length: 60712 rows_in_pack: 21700
[2022-08-21 22:40:12.628714] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5168420 packrow_length: 2084 rows_in_pack: 816
[2022-08-21 22:40:12.634369] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5170504 packrow_length: 58576 rows_in_pack: 20964
[2022-08-21 22:40:12.685600] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5229080 packrow_length: 60776 rows_in_pack: 21788
[2022-08-21 22:40:12.744026] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5289856 packrow_length: 61160 rows_in_pack: 22116
[2022-08-21 22:40:12.801938] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5351016 packrow_length: 60864 rows_in_pack: 22284
[2022-08-21 22:40:12.853359] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5411880 packrow_length: 2176 rows_in_pack: 800
[2022-08-21 22:40:12.858217] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5414056 packrow_length: 58812 rows_in_pack: 21676
[2022-08-21 22:40:12.908955] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5472868 packrow_length: 60712 rows_in_pack: 21568
[2022-08-21 22:40:12.961333] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5533580 packrow_length: 33556 rows_in_pack: 12084
[2022-08-21 22:40:12.993103] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5567136 packrow_length: 27404 rows_in_pack: 9696
[2022-08-21 22:40:13.017269] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5594540 packrow_length: 61084 rows_in_pack: 22304
[2022-08-21 22:40:13.070809] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5655624 packrow_length: 47228 rows_in_pack: 17216
[2022-08-21 22:40:13.113278] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5702852 packrow_length: 13648 rows_in_pack: 4896
[2022-08-21 22:40:13.125388] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5716500 packrow_length: 60916 rows_in_pack: 21464
[2022-08-21 22:40:13.175625] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5777416 packrow_length: 60700 rows_in_pack: 22036
[2022-08-21 22:40:13.230817] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5838116 packrow_length: 60640 rows_in_pack: 22344
[2022-08-21 22:40:13.284637] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5898756 packrow_length: 47092 rows_in_pack: 17208
[2022-08-21 22:40:13.327552] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5945848 packrow_length: 13580 rows_in_pack: 5080
[2022-08-21 22:40:13.339936] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5959428 packrow_length: 60748 rows_in_pack: 22076
[2022-08-21 22:40:13.391310] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6020176 packrow_length: 60672 rows_in_pack: 21856
[2022-08-21 22:40:13.444172] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6080848 packrow_length: 60956 rows_in_pack: 21696
[2022-08-21 22:40:13.498397] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6141804 packrow_length: 47340 rows_in_pack: 17176
[2022-08-21 22:40:13.543115] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6189144 packrow_length: 13460 rows_in_pack: 4868
[2022-08-21 22:40:13.555491] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6202604 packrow_length: 61000 rows_in_pack: 21540
[2022-08-21 22:40:13.605910] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6263604 packrow_length: 60976 rows_in_pack: 22004
[2022-08-21 22:40:13.659765] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6324580 packrow_length: 60816 rows_in_pack: 22032
[2022-08-21 22:40:13.713418] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6385396 packrow_length: 47256 rows_in_pack: 17264
[2022-08-21 22:40:13.754521] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6432652 packrow_length: 13604 rows_in_pack: 5044
[2022-08-21 22:40:13.767075] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6446256 packrow_length: 49232 rows_in_pack: 17660
[2022-08-21 22:40:13.808448] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6495488 packrow_length: 11424 rows_in_pack: 4388
[2022-08-21 22:40:13.819337] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6506912 packrow_length: 60932 rows_in_pack: 22212
[2022-08-21 22:40:13.872141] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6567844 packrow_length: 17868 rows_in_pack: 6164
[2022-08-21 22:40:13.890141] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6585712 packrow_length: 42952 rows_in_pack: 15236
[2022-08-21 22:40:13.927270] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6628664 packrow_length: 60772 rows_in_pack: 21856
[2022-08-21 22:40:13.979201] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6689436 packrow_length: 60596 rows_in_pack: 21760
[2022-08-21 22:40:14.031944] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6750032 packrow_length: 60792 rows_in_pack: 21708
[2022-08-21 22:40:14.083436] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6810824 packrow_length: 17824 rows_in_pack: 6172
[2022-08-21 22:40:14.101442] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6828648 packrow_length: 43016 rows_in_pack: 15796
[2022-08-21 22:40:14.140328] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6871664 packrow_length: 60764 rows_in_pack: 21876
[2022-08-21 22:40:14.194136] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6932428 packrow_length: 60780 rows_in_pack: 21956
[2022-08-21 22:40:14.246444] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6993208 packrow_length: 60776 rows_in_pack: 21740
[2022-08-21 22:40:14.298110] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7053984 packrow_length: 17896 rows_in_pack: 6512
[2022-08-21 22:40:14.316799] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7071880 packrow_length: 43008 rows_in_pack: 15772
[2022-08-21 22:40:14.354206] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7114888 packrow_length: 60792 rows_in_pack: 22056
[2022-08-21 22:40:14.405423] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7175680 packrow_length: 60736 rows_in_pack: 22236
[2022-08-21 22:40:14.461092] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7236416 packrow_length: 60512 rows_in_pack: 21996
[2022-08-21 22:40:14.513057] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7296928 packrow_length: 17948 rows_in_pack: 6648
[2022-08-21 22:40:14.530367] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7314876 packrow_length: 42884 rows_in_pack: 15720
[2022-08-21 22:40:14.568596] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7357760 packrow_length: 60740 rows_in_pack: 22468
[2022-08-21 22:40:14.623877] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7418500 packrow_length: 4284 rows_in_pack: 1604
[2022-08-21 22:40:28.333891] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1033688 packrow_length: 60864 rows_in_pack: 7552
[2022-08-21 22:40:28.369520] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1094552 packrow_length: 13576 rows_in_pack: 2912
[2022-08-21 22:40:28.382901] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1108128 packrow_length: 47268 rows_in_pack: 10292
[2022-08-21 22:40:28.417129] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1155396 packrow_length: 60544 rows_in_pack: 13400
[2022-08-21 22:40:28.460349] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1215940 packrow_length: 60820 rows_in_pack: 13388
[2022-08-21 22:40:28.503530] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1276760 packrow_length: 60892 rows_in_pack: 13404
[2022-08-21 22:40:28.547233] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1337652 packrow_length: 13640 rows_in_pack: 2880
[2022-08-21 22:40:28.560324] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1351292 packrow_length: 47228 rows_in_pack: 10496
[2022-08-21 22:40:28.596213] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1398520 packrow_length: 60820 rows_in_pack: 12816
[2022-08-21 22:40:28.640649] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1459340 packrow_length: 60672 rows_in_pack: 13416
[2022-08-21 22:40:28.685905] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1520012 packrow_length: 60708 rows_in_pack: 13100
[2022-08-21 22:40:28.731311] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1580720 packrow_length: 13632 rows_in_pack: 2992
[2022-08-21 22:40:28.744948] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1594352 packrow_length: 47252 rows_in_pack: 10576
[2022-08-21 22:40:28.781278] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1641604 packrow_length: 61072 rows_in_pack: 13316
[2022-08-21 22:40:28.824785] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1702676 packrow_length: 60988 rows_in_pack: 13312
[2022-08-21 22:40:28.867230] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1763664 packrow_length: 60972 rows_in_pack: 13448
[2022-08-21 22:40:28.909405] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1824636 packrow_length: 13548 rows_in_pack: 3052
[2022-08-21 22:40:28.920293] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1838184 packrow_length: 47188 rows_in_pack: 10328
[2022-08-21 22:40:28.952862] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1885372 packrow_length: 60780 rows_in_pack: 13520
[2022-08-21 22:40:28.995760] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1946152 packrow_length: 60904 rows_in_pack: 13176
[2022-08-21 22:40:29.036310] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2007056 packrow_length: 60820 rows_in_pack: 13132
[2022-08-21 22:40:29.077228] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2067876 packrow_length: 13596 rows_in_pack: 3044
[2022-08-21 22:40:29.089826] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2081472 packrow_length: 47292 rows_in_pack: 10544
[2022-08-21 22:40:29.123251] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2128764 packrow_length: 60876 rows_in_pack: 13984
[2022-08-21 22:40:29.164893] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2189640 packrow_length: 60812 rows_in_pack: 13452
[2022-08-21 22:40:29.206396] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2250452 packrow_length: 60804 rows_in_pack: 13400
[2022-08-21 22:40:29.247066] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2311256 packrow_length: 13564 rows_in_pack: 3008
[2022-08-21 22:40:29.260032] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2324820 packrow_length: 47164 rows_in_pack: 10512
[2022-08-21 22:40:29.292987] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2371984 packrow_length: 60860 rows_in_pack: 13312
[2022-08-21 22:40:29.334439] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2432844 packrow_length: 60940 rows_in_pack: 13324
[2022-08-21 22:40:29.376843] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2493784 packrow_length: 60720 rows_in_pack: 13620
[2022-08-21 22:40:29.418625] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2554504 packrow_length: 13580 rows_in_pack: 3100
[2022-08-21 22:40:29.431277] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2568084 packrow_length: 47340 rows_in_pack: 10016
[2022-08-21 22:40:29.464107] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2615424 packrow_length: 60792 rows_in_pack: 13408
[2022-08-21 22:40:29.505141] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2676216 packrow_length: 60920 rows_in_pack: 13632
[2022-08-21 22:40:29.547436] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2737136 packrow_length: 61044 rows_in_pack: 13348
[2022-08-21 22:40:29.588764] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2798180 packrow_length: 13548 rows_in_pack: 2908
[2022-08-21 22:40:29.602443] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2811728 packrow_length: 47396 rows_in_pack: 10708
[2022-08-21 22:40:29.635076] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2859124 packrow_length: 60672 rows_in_pack: 13116
[2022-08-21 22:40:29.675768] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2919796 packrow_length: 60960 rows_in_pack: 13552
[2022-08-21 22:40:29.717569] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2980756 packrow_length: 60872 rows_in_pack: 13620
[2022-08-21 22:40:29.760299] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3041628 packrow_length: 13664 rows_in_pack: 3020
[2022-08-21 22:40:29.773173] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3055292 packrow_length: 47196 rows_in_pack: 10176
[2022-08-21 22:40:29.805239] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3102488 packrow_length: 60796 rows_in_pack: 13216
[2022-08-21 22:40:29.846355] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3163284 packrow_length: 60820 rows_in_pack: 13652
[2022-08-21 22:40:29.887656] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3224104 packrow_length: 60796 rows_in_pack: 13272
[2022-08-21 22:40:29.927536] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3284900 packrow_length: 13632 rows_in_pack: 2912
[2022-08-21 22:40:29.939769] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3298532 packrow_length: 47368 rows_in_pack: 10436
[2022-08-21 22:40:29.971138] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3345900 packrow_length: 60756 rows_in_pack: 13240
[2022-08-21 22:40:30.010741] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3406656 packrow_length: 60880 rows_in_pack: 13520
[2022-08-21 22:40:30.052157] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3467536 packrow_length: 60864 rows_in_pack: 13560
[2022-08-21 22:40:30.093324] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3528400 packrow_length: 13648 rows_in_pack: 2940
[2022-08-21 22:40:30.105960] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3542048 packrow_length: 47288 rows_in_pack: 10248
[2022-08-21 22:40:30.138672] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3589336 packrow_length: 60852 rows_in_pack: 13332
[2022-08-21 22:40:30.180217] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3650188 packrow_length: 60792 rows_in_pack: 13020
[2022-08-21 22:40:30.221108] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3710980 packrow_length: 60620 rows_in_pack: 13268
[2022-08-21 22:40:30.262570] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3771600 packrow_length: 13528 rows_in_pack: 2952
[2022-08-21 22:40:30.273149] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3785128 packrow_length: 47096 rows_in_pack: 10560
[2022-08-21 22:40:30.305268] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3832224 packrow_length: 60784 rows_in_pack: 13556
[2022-08-21 22:40:30.348971] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3893008 packrow_length: 60688 rows_in_pack: 13180
[2022-08-21 22:40:30.390789] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3953696 packrow_length: 60496 rows_in_pack: 13064
[2022-08-21 22:40:30.432306] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4014192 packrow_length: 13564 rows_in_pack: 3068
[2022-08-21 22:40:30.444724] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4027756 packrow_length: 47064 rows_in_pack: 10520
[2022-08-21 22:40:30.477432] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4074820 packrow_length: 60800 rows_in_pack: 13412
[2022-08-21 22:40:30.519195] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4135620 packrow_length: 60692 rows_in_pack: 13360
[2022-08-21 22:40:30.560479] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4196312 packrow_length: 60800 rows_in_pack: 13420
[2022-08-21 22:40:30.601458] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4257112 packrow_length: 13452 rows_in_pack: 2924
[2022-08-21 22:40:30.614116] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4270564 packrow_length: 47196 rows_in_pack: 10440
[2022-08-21 22:40:30.646699] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4317760 packrow_length: 60748 rows_in_pack: 13612
[2022-08-21 22:40:30.688483] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4378508 packrow_length: 60800 rows_in_pack: 13500
[2022-08-21 22:40:30.731109] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4439308 packrow_length: 61036 rows_in_pack: 13504
[2022-08-21 22:40:30.772945] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4500344 packrow_length: 13600 rows_in_pack: 2888
[2022-08-21 22:40:30.784344] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4513944 packrow_length: 47296 rows_in_pack: 10380
[2022-08-21 22:40:30.818196] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4561240 packrow_length: 60716 rows_in_pack: 13320
[2022-08-21 22:40:30.860054] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4621956 packrow_length: 17840 rows_in_pack: 4020
[2022-08-21 22:40:30.872835] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4639796 packrow_length: 42836 rows_in_pack: 9448
[2022-08-21 22:40:30.901906] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4682632 packrow_length: 2152 rows_in_pack: 424
[2022-08-21 22:40:30.906615] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4684784 packrow_length: 58396 rows_in_pack: 12776
[2022-08-21 22:40:30.945844] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4743180 packrow_length: 60520 rows_in_pack: 13320
[2022-08-21 22:40:30.986908] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4803700 packrow_length: 60956 rows_in_pack: 13432
[2022-08-21 22:40:31.027471] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4864656 packrow_length: 60828 rows_in_pack: 13308
[2022-08-21 22:40:31.068688] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4925484 packrow_length: 2132 rows_in_pack: 492
[2022-08-21 22:40:31.073577] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4927616 packrow_length: 58812 rows_in_pack: 12800
[2022-08-21 22:40:31.113151] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4986428 packrow_length: 60484 rows_in_pack: 12988
[2022-08-21 22:40:31.152838] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5046912 packrow_length: 60796 rows_in_pack: 13356
[2022-08-21 22:40:31.193480] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5107708 packrow_length: 60712 rows_in_pack: 13140
[2022-08-21 22:40:31.234923] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5168420 packrow_length: 2084 rows_in_pack: 500
[2022-08-21 22:40:31.240304] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5170504 packrow_length: 58576 rows_in_pack: 12808
[2022-08-21 22:40:31.280357] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5229080 packrow_length: 60776 rows_in_pack: 13144
[2022-08-21 22:40:31.321383] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5289856 packrow_length: 61160 rows_in_pack: 13324
[2022-08-21 22:40:31.363762] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5351016 packrow_length: 60864 rows_in_pack: 13600
[2022-08-21 22:40:31.405147] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5411880 packrow_length: 2176 rows_in_pack: 508
[2022-08-21 22:40:31.409068] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5414056 packrow_length: 58812 rows_in_pack: 13048
[2022-08-21 22:40:31.448589] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5472868 packrow_length: 60712 rows_in_pack: 13076
[2022-08-21 22:40:31.489185] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5533580 packrow_length: 33556 rows_in_pack: 7440
[2022-08-21 22:40:31.513278] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5567136 packrow_length: 27404 rows_in_pack: 5776
[2022-08-21 22:40:31.531932] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5594540 packrow_length: 61084 rows_in_pack: 13696
[2022-08-21 22:40:31.573626] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5655624 packrow_length: 47228 rows_in_pack: 10424
[2022-08-21 22:40:31.607802] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5702852 packrow_length: 13648 rows_in_pack: 2952
[2022-08-21 22:40:31.617713] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5716500 packrow_length: 60916 rows_in_pack: 13008
[2022-08-21 22:40:31.658592] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5777416 packrow_length: 60700 rows_in_pack: 13088
[2022-08-21 22:40:31.700886] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5838116 packrow_length: 60640 rows_in_pack: 13604
[2022-08-21 22:40:31.742383] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5898756 packrow_length: 47092 rows_in_pack: 10300
[2022-08-21 22:40:31.777035] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5945848 packrow_length: 13580 rows_in_pack: 2892
[2022-08-21 22:40:31.787239] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5959428 packrow_length: 60748 rows_in_pack: 13420
[2022-08-21 22:40:31.828333] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6020176 packrow_length: 60672 rows_in_pack: 13064
[2022-08-21 22:40:31.869295] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6080848 packrow_length: 60956 rows_in_pack: 13052
[2022-08-21 22:40:31.910535] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6141804 packrow_length: 47340 rows_in_pack: 10324
[2022-08-21 22:40:31.945315] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6189144 packrow_length: 13460 rows_in_pack: 3076
[2022-08-21 22:40:31.955068] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6202604 packrow_length: 61000 rows_in_pack: 13124
[2022-08-21 22:40:31.996454] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6263604 packrow_length: 60976 rows_in_pack: 13484
[2022-08-21 22:40:32.037276] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6324580 packrow_length: 60816 rows_in_pack: 13272
[2022-08-21 22:40:32.078778] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6385396 packrow_length: 47256 rows_in_pack: 10612
[2022-08-21 22:40:32.111568] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6432652 packrow_length: 13604 rows_in_pack: 3108
[2022-08-21 22:40:32.121723] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6446256 packrow_length: 49232 rows_in_pack: 10840
[2022-08-21 22:40:32.156347] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6495488 packrow_length: 11424 rows_in_pack: 2632
[2022-08-21 22:40:32.165015] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6506912 packrow_length: 60932 rows_in_pack: 13364
[2022-08-21 22:40:32.205197] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6567844 packrow_length: 17868 rows_in_pack: 3808
[2022-08-21 22:40:32.220735] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6585712 packrow_length: 42952 rows_in_pack: 9196
[2022-08-21 22:40:32.249376] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6628664 packrow_length: 60772 rows_in_pack: 12988
[2022-08-21 22:40:32.289528] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6689436 packrow_length: 60596 rows_in_pack: 13204
[2022-08-21 22:40:32.330026] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6750032 packrow_length: 60792 rows_in_pack: 13148
[2022-08-21 22:40:32.370618] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6810824 packrow_length: 17824 rows_in_pack: 3772
[2022-08-21 22:40:32.385770] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6828648 packrow_length: 43016 rows_in_pack: 9640
[2022-08-21 22:40:32.415006] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6871664 packrow_length: 60764 rows_in_pack: 13144
[2022-08-21 22:40:32.455622] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6932428 packrow_length: 60780 rows_in_pack: 13328
[2022-08-21 22:40:32.495650] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6993208 packrow_length: 60776 rows_in_pack: 13060
[2022-08-21 22:40:32.536439] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7053984 packrow_length: 17896 rows_in_pack: 3960
[2022-08-21 22:40:32.552193] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7071880 packrow_length: 43008 rows_in_pack: 9760
[2022-08-21 22:40:32.583155] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7114888 packrow_length: 60792 rows_in_pack: 13352
[2022-08-21 22:40:32.624478] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7175680 packrow_length: 60736 rows_in_pack: 13556
[2022-08-21 22:40:32.666339] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7236416 packrow_length: 60512 rows_in_pack: 13372
[2022-08-21 22:40:32.708646] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7296928 packrow_length: 17948 rows_in_pack: 4084
[2022-08-21 22:40:32.722698] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7314876 packrow_length: 42884 rows_in_pack: 9324
[2022-08-21 22:40:32.752449] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7357760 packrow_length: 60740 rows_in_pack: 13632
[2022-08-21 22:40:32.794740] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7418500 packrow_length: 4284 rows_in_pack: 944
[2022-08-21 22:40:43.477287] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1594352 packrow_length: 47252 rows_in_pack: 616
[2022-08-21 22:40:43.497079] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1641604 packrow_length: 61072 rows_in_pack: 5896
[2022-08-21 22:40:43.530769] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1702676 packrow_length: 60988 rows_in_pack: 5784
[2022-08-21 22:40:43.564287] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1763664 packrow_length: 60972 rows_in_pack: 5980
[2022-08-21 22:40:43.598248] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1824636 packrow_length: 13548 rows_in_pack: 1348
[2022-08-21 22:40:43.606855] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1838184 packrow_length: 47188 rows_in_pack: 4504
[2022-08-21 22:40:43.632374] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1885372 packrow_length: 60780 rows_in_pack: 5904
[2022-08-21 22:40:43.668364] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 1946152 packrow_length: 60904 rows_in_pack: 5756
[2022-08-21 22:40:43.702179] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2007056 packrow_length: 60820 rows_in_pack: 5568
[2022-08-21 22:40:43.735932] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2067876 packrow_length: 13596 rows_in_pack: 1360
[2022-08-21 22:40:43.746644] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2081472 packrow_length: 47292 rows_in_pack: 4784
[2022-08-21 22:40:43.773832] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2128764 packrow_length: 60876 rows_in_pack: 6132
[2022-08-21 22:40:43.808104] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2189640 packrow_length: 60812 rows_in_pack: 5684
[2022-08-21 22:40:43.841646] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2250452 packrow_length: 60804 rows_in_pack: 6016
[2022-08-21 22:40:43.875621] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2311256 packrow_length: 13564 rows_in_pack: 1364
[2022-08-21 22:40:43.886476] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2324820 packrow_length: 47164 rows_in_pack: 4716
[2022-08-21 22:40:43.912915] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2371984 packrow_length: 60860 rows_in_pack: 5820
[2022-08-21 22:40:43.946690] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2432844 packrow_length: 60940 rows_in_pack: 5864
[2022-08-21 22:40:43.980589] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2493784 packrow_length: 60720 rows_in_pack: 5976
[2022-08-21 22:40:44.015131] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2554504 packrow_length: 13580 rows_in_pack: 1356
[2022-08-21 22:40:44.025598] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2568084 packrow_length: 47340 rows_in_pack: 4228
[2022-08-21 22:40:44.051603] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2615424 packrow_length: 60792 rows_in_pack: 5944
[2022-08-21 22:40:44.086090] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2676216 packrow_length: 60920 rows_in_pack: 6024
[2022-08-21 22:40:44.119904] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2737136 packrow_length: 61044 rows_in_pack: 6044
[2022-08-21 22:40:44.153995] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2798180 packrow_length: 13548 rows_in_pack: 1244
[2022-08-21 22:40:44.164541] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2811728 packrow_length: 47396 rows_in_pack: 4668
[2022-08-21 22:40:44.191376] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2859124 packrow_length: 60672 rows_in_pack: 5700
[2022-08-21 22:40:44.224184] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2919796 packrow_length: 60960 rows_in_pack: 5988
[2022-08-21 22:40:44.258968] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2980756 packrow_length: 60872 rows_in_pack: 5964
[2022-08-21 22:40:44.294003] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3041628 packrow_length: 13664 rows_in_pack: 1292
[2022-08-21 22:40:44.304726] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3055292 packrow_length: 47196 rows_in_pack: 4644
[2022-08-21 22:40:44.332016] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3102488 packrow_length: 60796 rows_in_pack: 5716
[2022-08-21 22:40:44.367468] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3163284 packrow_length: 60820 rows_in_pack: 5964
[2022-08-21 22:40:44.400861] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3224104 packrow_length: 60796 rows_in_pack: 5584
[2022-08-21 22:40:44.433563] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3284900 packrow_length: 13632 rows_in_pack: 1228
[2022-08-21 22:40:44.444500] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3298532 packrow_length: 47368 rows_in_pack: 4604
[2022-08-21 22:40:44.471002] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3345900 packrow_length: 60756 rows_in_pack: 5776
[2022-08-21 22:40:44.505119] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3406656 packrow_length: 60880 rows_in_pack: 5960
[2022-08-21 22:40:44.540149] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3467536 packrow_length: 60864 rows_in_pack: 6076
[2022-08-21 22:40:44.574579] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3528400 packrow_length: 13648 rows_in_pack: 1248
[2022-08-21 22:40:44.585385] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3542048 packrow_length: 47288 rows_in_pack: 4424
[2022-08-21 22:40:44.611618] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3589336 packrow_length: 60852 rows_in_pack: 5968
[2022-08-21 22:40:44.645155] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3650188 packrow_length: 60792 rows_in_pack: 5580
[2022-08-21 22:40:44.678570] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3710980 packrow_length: 60620 rows_in_pack: 5724
[2022-08-21 22:40:44.710803] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3771600 packrow_length: 13528 rows_in_pack: 1204
[2022-08-21 22:40:44.719525] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3785128 packrow_length: 47096 rows_in_pack: 4684
[2022-08-21 22:40:44.746446] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3832224 packrow_length: 60784 rows_in_pack: 5684
[2022-08-21 22:40:44.782554] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3893008 packrow_length: 60688 rows_in_pack: 5552
[2022-08-21 22:40:44.815919] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3953696 packrow_length: 60496 rows_in_pack: 5660
[2022-08-21 22:40:44.848512] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4014192 packrow_length: 13564 rows_in_pack: 1368
[2022-08-21 22:40:44.859870] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4027756 packrow_length: 47064 rows_in_pack: 4636
[2022-08-21 22:40:44.886516] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4074820 packrow_length: 60800 rows_in_pack: 5756
[2022-08-21 22:40:44.920615] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4135620 packrow_length: 60692 rows_in_pack: 5760
[2022-08-21 22:40:44.954282] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4196312 packrow_length: 60800 rows_in_pack: 6012
[2022-08-21 22:40:44.988430] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4257112 packrow_length: 13452 rows_in_pack: 1348
[2022-08-21 22:40:44.000333] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4270564 packrow_length: 47196 rows_in_pack: 4440
[2022-08-21 22:40:45.027805] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4317760 packrow_length: 60748 rows_in_pack: 5872
[2022-08-21 22:40:45.061515] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4378508 packrow_length: 60800 rows_in_pack: 5964
[2022-08-21 22:40:45.094618] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4439308 packrow_length: 61036 rows_in_pack: 6040
[2022-08-21 22:40:45.127864] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4500344 packrow_length: 13600 rows_in_pack: 1320
[2022-08-21 22:40:45.137565] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4513944 packrow_length: 47296 rows_in_pack: 4532
[2022-08-21 22:40:45.164086] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4561240 packrow_length: 60716 rows_in_pack: 5904
[2022-08-21 22:40:45.197052] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4621956 packrow_length: 17840 rows_in_pack: 1672
[2022-08-21 22:40:45.207434] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4639796 packrow_length: 42836 rows_in_pack: 4152
[2022-08-21 22:40:45.231855] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4682632 packrow_length: 2152 rows_in_pack: 188
[2022-08-21 22:40:45.237899] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4684784 packrow_length: 58396 rows_in_pack: 5728
[2022-08-21 22:40:45.272532] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4743180 packrow_length: 60520 rows_in_pack: 5588
[2022-08-21 22:40:45.305219] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4803700 packrow_length: 60956 rows_in_pack: 5804
[2022-08-21 22:40:45.339393] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4864656 packrow_length: 60828 rows_in_pack: 5836
[2022-08-21 22:40:45.373067] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4925484 packrow_length: 2132 rows_in_pack: 256
[2022-08-21 22:40:45.378436] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4927616 packrow_length: 58812 rows_in_pack: 5736
[2022-08-21 22:40:45.411299] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4986428 packrow_length: 60484 rows_in_pack: 5768
[2022-08-21 22:40:45.445081] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5046912 packrow_length: 60796 rows_in_pack: 5848
[2022-08-21 22:40:45.477533] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5107708 packrow_length: 60712 rows_in_pack: 5732
[2022-08-21 22:40:45.511140] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5168420 packrow_length: 2084 rows_in_pack: 216
[2022-08-21 22:40:45.515945] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5170504 packrow_length: 58576 rows_in_pack: 5700
[2022-08-21 22:40:45.548375] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5229080 packrow_length: 60776 rows_in_pack: 5888
[2022-08-21 22:40:45.583567] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5289856 packrow_length: 61160 rows_in_pack: 5924
[2022-08-21 22:40:45.618527] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5351016 packrow_length: 60864 rows_in_pack: 5976
[2022-08-21 22:40:45.652917] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5411880 packrow_length: 2176 rows_in_pack: 244
[2022-08-21 22:40:45.656449] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5414056 packrow_length: 58812 rows_in_pack: 5768
[2022-08-21 22:40:45.689756] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5472868 packrow_length: 60712 rows_in_pack: 5652
[2022-08-21 22:40:45.723227] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5533580 packrow_length: 33556 rows_in_pack: 3112
[2022-08-21 22:40:45.743200] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5567136 packrow_length: 27404 rows_in_pack: 2432
[2022-08-21 22:40:45.758702] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5594540 packrow_length: 61084 rows_in_pack: 6024
[2022-08-21 22:40:45.793827] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5655624 packrow_length: 47228 rows_in_pack: 4344
[2022-08-21 22:40:45.822193] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5702852 packrow_length: 13648 rows_in_pack: 1272
[2022-08-21 22:40:45.830387] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5716500 packrow_length: 60916 rows_in_pack: 5528
[2022-08-21 22:40:45.865330] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5777416 packrow_length: 60700 rows_in_pack: 5732
[2022-08-21 22:40:45.900210] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5838116 packrow_length: 60640 rows_in_pack: 6204
[2022-08-21 22:40:45.934457] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5898756 packrow_length: 47092 rows_in_pack: 4484
[2022-08-21 22:40:45.963659] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5945848 packrow_length: 13580 rows_in_pack: 1252
[2022-08-21 22:40:45.972112] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5959428 packrow_length: 60748 rows_in_pack: 5744
[2022-08-21 22:40:46.005478] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6020176 packrow_length: 60672 rows_in_pack: 5704
[2022-08-21 22:40:46.039663] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6080848 packrow_length: 60956 rows_in_pack: 5764
[2022-08-21 22:40:46.073212] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6141804 packrow_length: 47340 rows_in_pack: 4612
[2022-08-21 22:40:46.102278] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6189144 packrow_length: 13460 rows_in_pack: 1380
[2022-08-21 22:40:46.110616] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6202604 packrow_length: 61000 rows_in_pack: 5636
[2022-08-21 22:40:46.144304] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6263604 packrow_length: 60976 rows_in_pack: 5716
[2022-08-21 22:40:46.177082] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6324580 packrow_length: 60816 rows_in_pack: 5896
[2022-08-21 22:40:46.210456] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6385396 packrow_length: 47256 rows_in_pack: 4576
[2022-08-21 22:40:46.236420] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6432652 packrow_length: 13604 rows_in_pack: 1344
[2022-08-21 22:40:46.244921] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6446256 packrow_length: 49232 rows_in_pack: 4720
[2022-08-21 22:40:46.272939] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6495488 packrow_length: 11424 rows_in_pack: 1108
[2022-08-21 22:40:46.279747] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6506912 packrow_length: 60932 rows_in_pack: 5864
[2022-08-21 22:40:46.313053] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6567844 packrow_length: 17868 rows_in_pack: 1600
[2022-08-21 22:40:46.326228] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6585712 packrow_length: 42952 rows_in_pack: 3920
[2022-08-21 22:40:46.349547] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6628664 packrow_length: 60772 rows_in_pack: 5676
[2022-08-21 22:40:46.382163] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6689436 packrow_length: 60596 rows_in_pack: 5624
[2022-08-21 22:40:46.414492] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6750032 packrow_length: 60792 rows_in_pack: 5728
[2022-08-21 22:40:46.446586] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6810824 packrow_length: 17824 rows_in_pack: 1596
[2022-08-21 22:40:46.460384] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6828648 packrow_length: 43016 rows_in_pack: 4152
[2022-08-21 22:40:46.485012] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6871664 packrow_length: 60764 rows_in_pack: 5700
[2022-08-21 22:40:46.522307] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6932428 packrow_length: 60780 rows_in_pack: 5992
[2022-08-21 22:40:46.559067] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6993208 packrow_length: 60776 rows_in_pack: 5908
[2022-08-21 22:40:46.595017] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7053984 packrow_length: 17896 rows_in_pack: 1740
[2022-08-21 22:40:46.609093] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7071880 packrow_length: 43008 rows_in_pack: 4192
[2022-08-21 22:40:46.635995] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7114888 packrow_length: 60792 rows_in_pack: 6120
[2022-08-21 22:40:46.670985] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7175680 packrow_length: 60736 rows_in_pack: 5896
[2022-08-21 22:40:46.703679] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7236416 packrow_length: 60512 rows_in_pack: 5876
[2022-08-21 22:40:46.736702] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7296928 packrow_length: 17948 rows_in_pack: 1784
[2022-08-21 22:40:46.748192] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7314876 packrow_length: 42884 rows_in_pack: 4024
[2022-08-21 22:40:46.771939] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7357760 packrow_length: 60740 rows_in_pack: 5892
[2022-08-21 22:40:46.805348] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7418500 packrow_length: 4284 rows_in_pack: 392
[2022-08-21 22:40:52.678879] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2919796 packrow_length: 60960 rows_in_pack: 724
[2022-08-21 22:40:52.703820] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 2980756 packrow_length: 60872 rows_in_pack: 812
[2022-08-21 22:40:52.728580] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3041628 packrow_length: 13664 rows_in_pack: 224
[2022-08-21 22:40:52.737368] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3055292 packrow_length: 47196 rows_in_pack: 692
[2022-08-21 22:40:52.757110] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3102488 packrow_length: 60796 rows_in_pack: 924
[2022-08-21 22:40:52.782198] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3163284 packrow_length: 60820 rows_in_pack: 812
[2022-08-21 22:40:52.807660] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3224104 packrow_length: 60796 rows_in_pack: 888
[2022-08-21 22:40:52.833933] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3284900 packrow_length: 13632 rows_in_pack: 220
[2022-08-21 22:40:52.843226] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3298532 packrow_length: 47368 rows_in_pack: 780
[2022-08-21 22:40:52.866339] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3345900 packrow_length: 60756 rows_in_pack: 832
[2022-08-21 22:40:52.891867] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3406656 packrow_length: 60880 rows_in_pack: 896
[2022-08-21 22:40:52.917085] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3467536 packrow_length: 60864 rows_in_pack: 948
[2022-08-21 22:40:52.942389] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3528400 packrow_length: 13648 rows_in_pack: 228
[2022-08-21 22:40:52.953680] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3542048 packrow_length: 47288 rows_in_pack: 796
[2022-08-21 22:40:52.975322] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3589336 packrow_length: 60852 rows_in_pack: 948
[2022-08-21 22:40:53.001411] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3650188 packrow_length: 60792 rows_in_pack: 844
[2022-08-21 22:40:53.026549] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3710980 packrow_length: 60620 rows_in_pack: 856
[2022-08-21 22:40:53.051490] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3771600 packrow_length: 13528 rows_in_pack: 168
[2022-08-21 22:40:53.058444] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3785128 packrow_length: 47096 rows_in_pack: 732
[2022-08-21 22:40:53.077955] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3832224 packrow_length: 60784 rows_in_pack: 872
[2022-08-21 22:40:53.104666] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3893008 packrow_length: 60688 rows_in_pack: 924
[2022-08-21 22:40:53.129486] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 3953696 packrow_length: 60496 rows_in_pack: 884
[2022-08-21 22:40:53.154404] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4014192 packrow_length: 13564 rows_in_pack: 204
[2022-08-21 22:40:53.163222] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4027756 packrow_length: 47064 rows_in_pack: 596
[2022-08-21 22:40:53.182846] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4074820 packrow_length: 60800 rows_in_pack: 888
[2022-08-21 22:40:53.208023] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4135620 packrow_length: 60692 rows_in_pack: 988
[2022-08-21 22:40:53.232830] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4196312 packrow_length: 60800 rows_in_pack: 960
[2022-08-21 22:40:53.257748] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4257112 packrow_length: 13452 rows_in_pack: 256
[2022-08-21 22:40:53.266587] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4270564 packrow_length: 47196 rows_in_pack: 752
[2022-08-21 22:40:53.286215] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4317760 packrow_length: 60748 rows_in_pack: 956
[2022-08-21 22:40:53.311071] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4378508 packrow_length: 60800 rows_in_pack: 956
[2022-08-21 22:40:53.336135] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4439308 packrow_length: 61036 rows_in_pack: 924
[2022-08-21 22:40:53.360957] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4500344 packrow_length: 13600 rows_in_pack: 248
[2022-08-21 22:40:53.368531] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4513944 packrow_length: 47296 rows_in_pack: 676
[2022-08-21 22:40:53.387995] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4561240 packrow_length: 60716 rows_in_pack: 932
[2022-08-21 22:40:53.412742] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4621956 packrow_length: 17840 rows_in_pack: 244
[2022-08-21 22:40:53.421135] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4639796 packrow_length: 42836 rows_in_pack: 624
[2022-08-21 22:40:53.438767] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4682632 packrow_length: 2152 rows_in_pack: 12
[2022-08-21 22:40:53.443134] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4684784 packrow_length: 58396 rows_in_pack: 988
[2022-08-21 22:40:53.467567] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4743180 packrow_length: 60520 rows_in_pack: 792
[2022-08-21 22:40:53.492500] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4803700 packrow_length: 60956 rows_in_pack: 856
[2022-08-21 22:40:53.517494] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4864656 packrow_length: 60828 rows_in_pack: 952
[2022-08-21 22:40:53.542967] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4925484 packrow_length: 2132 rows_in_pack: 28
[2022-08-21 22:40:53.548026] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4927616 packrow_length: 58812 rows_in_pack: 872
[2022-08-21 22:40:53.572197] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 4986428 packrow_length: 60484 rows_in_pack: 864
[2022-08-21 22:40:53.596317] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5046912 packrow_length: 60796 rows_in_pack: 912
[2022-08-21 22:40:53.621022] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5107708 packrow_length: 60712 rows_in_pack: 880
[2022-08-21 22:40:53.645521] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5168420 packrow_length: 2084 rows_in_pack: 28
[2022-08-21 22:40:53.650682] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5170504 packrow_length: 58576 rows_in_pack: 916
[2022-08-21 22:40:53.674766] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5229080 packrow_length: 60776 rows_in_pack: 948
[2022-08-21 22:40:53.699686] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5289856 packrow_length: 61160 rows_in_pack: 976
[2022-08-21 22:40:53.724658] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5351016 packrow_length: 60864 rows_in_pack: 940
[2022-08-21 22:40:53.749490] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5411880 packrow_length: 2176 rows_in_pack: 32
[2022-08-21 22:40:53.752529] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5414056 packrow_length: 58812 rows_in_pack: 876
[2022-08-21 22:40:53.776704] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5472868 packrow_length: 60712 rows_in_pack: 864
[2022-08-21 22:40:53.802439] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5533580 packrow_length: 33556 rows_in_pack: 464
[2022-08-21 22:40:53.817450] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5567136 packrow_length: 27404 rows_in_pack: 352
[2022-08-21 22:40:53.829031] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5594540 packrow_length: 61084 rows_in_pack: 924
[2022-08-21 22:40:53.853797] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5655624 packrow_length: 47228 rows_in_pack: 620
[2022-08-21 22:40:53.874525] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5702852 packrow_length: 13648 rows_in_pack: 200
[2022-08-21 22:40:53.881285] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5716500 packrow_length: 60916 rows_in_pack: 892
[2022-08-21 22:40:53.906298] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5777416 packrow_length: 60700 rows_in_pack: 932
[2022-08-21 22:40:53.932563] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5838116 packrow_length: 60640 rows_in_pack: 832
[2022-08-21 22:40:53.957716] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5898756 packrow_length: 47092 rows_in_pack: 672
[2022-08-21 22:40:53.979634] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5945848 packrow_length: 13580 rows_in_pack: 220
[2022-08-21 22:40:53.986042] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 5959428 packrow_length: 60748 rows_in_pack: 908
[2022-08-21 22:40:54.010717] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6020176 packrow_length: 60672 rows_in_pack: 988
[2022-08-21 22:40:54.035689] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6080848 packrow_length: 60956 rows_in_pack: 904
[2022-08-21 22:40:54.060784] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6141804 packrow_length: 47340 rows_in_pack: 704
[2022-08-21 22:40:54.083211] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6189144 packrow_length: 13460 rows_in_pack: 228
[2022-08-21 22:40:54.089433] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6202604 packrow_length: 61000 rows_in_pack: 956
[2022-08-21 22:40:54.114712] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6263604 packrow_length: 60976 rows_in_pack: 960
[2022-08-21 22:40:54.139357] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6324580 packrow_length: 60816 rows_in_pack: 916
[2022-08-21 22:40:54.165441] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6385396 packrow_length: 47256 rows_in_pack: 736
[2022-08-21 22:40:54.185103] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6432652 packrow_length: 13604 rows_in_pack: 216
[2022-08-21 22:40:54.191518] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6446256 packrow_length: 49232 rows_in_pack: 720
[2022-08-21 22:40:54.212321] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6495488 packrow_length: 11424 rows_in_pack: 152
[2022-08-21 22:40:54.218362] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6506912 packrow_length: 60932 rows_in_pack: 924
[2022-08-21 22:40:54.243991] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6567844 packrow_length: 17868 rows_in_pack: 276
[2022-08-21 22:40:54.254735] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6585712 packrow_length: 42952 rows_in_pack: 644
[2022-08-21 22:40:54.272606] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6628664 packrow_length: 60772 rows_in_pack: 880
[2022-08-21 22:40:54.297524] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6689436 packrow_length: 60596 rows_in_pack: 904
[2022-08-21 22:40:54.322464] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6750032 packrow_length: 60792 rows_in_pack: 1004
[2022-08-21 22:40:54.347331] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6810824 packrow_length: 17824 rows_in_pack: 308
[2022-08-21 22:40:54.357761] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6828648 packrow_length: 43016 rows_in_pack: 608
[2022-08-21 22:40:54.376068] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6871664 packrow_length: 60764 rows_in_pack: 976
[2022-08-21 22:40:54.400844] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6932428 packrow_length: 60780 rows_in_pack: 964
[2022-08-21 22:40:54.426286] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 6993208 packrow_length: 60776 rows_in_pack: 904
[2022-08-21 22:40:54.450857] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7053984 packrow_length: 17896 rows_in_pack: 228
[2022-08-21 22:40:54.461325] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7071880 packrow_length: 43008 rows_in_pack: 584
[2022-08-21 22:40:54.480135] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7114888 packrow_length: 60792 rows_in_pack: 964
[2022-08-21 22:40:54.505818] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7175680 packrow_length: 60736 rows_in_pack: 936
[2022-08-21 22:40:54.531807] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7236416 packrow_length: 60512 rows_in_pack: 892
[2022-08-21 22:40:54.556468] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7296928 packrow_length: 17948 rows_in_pack: 284
[2022-08-21 22:40:54.565184] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7314876 packrow_length: 42884 rows_in_pack: 648
[2022-08-21 22:40:54.582756] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7357760 packrow_length: 60740 rows_in_pack: 864
[2022-08-21 22:40:54.606726] [76351] [INFO] [aggregation_algorithm.cpp:516] MSG: AggregatePackrow TuplesLeftBetween cur_tuple: 7418500 packrow_length: 4284 rows_in_pack: 40
[2022-08-21 22:40:56.581066] [76324] [INFO] [engine.cpp:1352] MSG: Command: select 0/5, update 0/0, insert 0/0, load 0/0, queries 1/15
[2022-08-21 22:40:56.581106] [76324] [INFO] [engine.cpp:1364] MSG: Select: 0/1, Loaded: 0/0(0/0), dup: 0/0, insert: 0/0, failed insert: 0/0, update: 0/0
[2022-08-21 22:41:56.581630] [76324] [INFO] [engine.cpp:1352] MSG: Command: select 0/5, update 0/0, insert 0/0, load 0/0, queries 0/15
[2022-08-21 22:41:56.581696] [76324] [INFO] [engine.cpp:1364] MSG: Select: 0/1, Loaded: 0/0(0/0), dup: 0/0, insert: 0/0, failed insert: 0/0, update: 0/0
int64_t Filter::NumOfOnesBetween(int64_t n1, int64_t n2) // no of 1 between n1 and n2, inclusively
{
DEBUG_ASSERT((n1 >= 0) && (n1 <= n2));
if (n1 == n2) return (Get(n1) ? 1 : 0);
size_t b1 = int(n1 >> no_power);
size_t b2 = int(n2 >> no_power);
int nn1 = int(n1 & (pack_def - 1));
int nn2 = int(n2 & (pack_def - 1));
// TIANMU_LOG(LogCtl_Level::INFO, "Filter::TuplesLeftBetween n1: %d n2: %d b1: %d b2: %d nn1: %d nn2: %d", n1, n2, b1, b2, nn1, nn2);
if (b1 == b2) {
if (block_status[b1] == FB_FULL) {
nn2 = std::min(nn2, int(block_last_one[b1]));
if (nn1 > block_last_one[b1]) return 0;
TIANMU_LOG(LogCtl_Level::INFO, "Filter::TuplesLeftBetween b1 == b2 and nn1 <= block_last_one[b1]: %d",
block_last_one[b1]);
return nn2 - nn1 + 1;
}
if (block_status[b1] == FB_EMPTY) return 0;
return blocks[b1]->NumOfOnesBetween(nn1, nn2);
}
int64_t counter = 0;
size_t full_pack_start = (nn1 == 0 ? b1 : b1 + 1);
size_t full_pack_stop = b2 - 1;
if ((uint)nn2 == (pack_def - 1) || (b2 == no_blocks - 1 && nn2 == no_of_bits_in_last_block - 1)) full_pack_stop = b2;
for (size_t i = full_pack_start; i <= full_pack_stop; i++) {
if (block_status[i] == FB_MIXED)
counter += blocks[i]->NumOfOnes();
else if (block_status[i] == FB_FULL)
counter += int64_t(block_last_one[i]) + 1;
}
if (b1 != full_pack_start) {
if (block_status[b1] == FB_FULL) {
if (nn1 <= block_last_one[b1]) counter += block_last_one[b1] - nn1 + 1;
} else if (block_status[b1] != FB_EMPTY)
counter += blocks[b1]->NumOfOnesBetween(nn1, (pack_def - 1)); // note that b1 is never the last block
}
if (b2 != full_pack_stop) {
if (block_status[b2] == FB_FULL)
counter += std::min(nn2 + 1, int(block_last_one[b2]) + 1);
else if (block_status[b2] != FB_EMPTY)
counter += blocks[b2]->NumOfOnesBetween(0, nn2);
}
return counter;
}
types::BString RCAttr::GetNotNullValueString(const int64_t obj) {
int pack = row2pack(obj);
int offset = row2offset(obj);
if (GetPackType() == common::PackType::STR) {
auto cur_pack = get_packS(pack);
if (!cur_pack) {
ASSERT(cur_pack != NULL, "Pack ptr is null");
}
ASSERT(cur_pack->IsLocked(), "Access unlocked pack");
return cur_pack->GetValueBinary(offset);
}
int64_t v = GetNotNullValueInt64(obj);
return DecodeValue_S(v);
}types::BString RCAttr::GetNotNullValueString(const int64_t obj) {
int pack = row2pack(obj);
int offset = row2offset(obj);
if (GetPackType() == common::PackType::STR) {
auto cur_pack = get_packS(pack);
if (!cur_pack) {
ASSERT(cur_pack != NULL, "Pack ptr is null");
}
ASSERT(cur_pack->IsLocked(), "Access unlocked pack");
return cur_pack->GetValueBinary(offset);
}
int64_t v = GetNotNullValueInt64(obj);
return DecodeValue_S(v);
}types::BString RCAttr::GetNotNullValueString(const int64_t obj) {
int pack = row2pack(obj);
int offset = row2offset(obj);
if (GetPackType() == common::PackType::STR) {
auto cur_pack = get_packS(pack);
if (!cur_pack) {
ASSERT(cur_pack != NULL, "Pack ptr is null");
}
ASSERT(cur_pack->IsLocked(), "Access unlocked pack");
return cur_pack->GetValueBinary(offset);
}
int64_t v = GetNotNullValueInt64(obj);
return DecodeValue_S(v);
}
(gdb) bt
#0 Tianmu::core::RCAttr::GetNotNullValueString (this=0x7f78b4916e00, obj=1255432) at /home/jenkins/workspace/stonedb5.7-zsl-centos7.9-75-131-20220805/storage/tianmu/core/rc_attr.cpp:392
#1 0x00000000030b9394 in Tianmu::core::RCAttr::GetNotNullValueString (this=0x7f78b4916e00, row=1255432, s=...)
at /home/jenkins/workspace/stonedb5.7-zsl-centos7.9-75-131-20220805/storage/tianmu/core/rc_attr.h:181
#2 0x0000000002e92fed in Tianmu::vcolumn::SingleColumn::GetNotNullValueString (this=0x7f78b492bd90, s=..., mit=...)
at /home/jenkins/workspace/stonedb5.7-zsl-centos7.9-75-131-20220805/storage/tianmu/vc/single_column.h:59
#3 0x00000000030245e9 in Tianmu::core::ColumnBinEncoder::EncoderText_UTF::Encode (this=0x7f78b492ade0, buf=0x7f78b4942180 "", buf_sec=0x7f78b49421cb "Brand#35\t", vc=0x7f78b492bd90,
mit=..., update_stats=false) at /home/jenkins/workspace/stonedb5.7-zsl-centos7.9-75-131-20220805/storage/tianmu/core/column_bin_encoder.cpp:930
#4 0x0000000003020abf in Tianmu::core::ColumnBinEncoder::Encode (this=0x7f78b49425a0, buf=0x7f78b4942180 "", mit=..., alternative_vc=0x0, update_stats=false)
at /home/jenkins/workspace/stonedb5.7-zsl-centos7.9-75-131-20220805/storage/tianmu/core/column_bin_encoder.cpp:169
#5 0x00000000030075a1 in Tianmu::core::GroupTable::PutGroupingValue (this=0x7f7a364372d8, col=0, mit=...)
at /home/jenkins/workspace/stonedb5.7-zsl-centos7.9-75-131-20220805/storage/tianmu/core/group_table.h:85
#6 0x000000000300790f in Tianmu::core::GroupByWrapper::PutGroupingValue (this=0x7f7a36437210, gr_a=0, mit=...)
at /home/jenkins/workspace/stonedb5.7-zsl-centos7.9-75-131-20220805/storage/tianmu/core/groupby_wrapper.h:82
#7 0x0000000003004224 in Tianmu::core::AggregationAlgorithm::AggregatePackrow (this=0x7f7a36437580, gbw=..., mit=0x7f79e97f8d70, cur_tuple=20077)
at /home/jenkins/workspace/stonedb5.7-zsl-centos7.9-75-131-20220805/storage/tianmu/core/aggregation_algorithm.cpp:593
#8 0x0000000003005362 in Tianmu::core::AggregationWorkerEnt::TaskAggrePacks (this=0x7f7a36436e50, taskIterator=0x7f78b492b8c0, dims=0x7f7a36436b70, mit=0x7f7a36436ea0, pstart=0, pend=30,
tuple=0, gbw=0x7f7a36437210, ci=0x7f78b4016400) at /home/jenkins/workspace/stonedb5.7-zsl-centos7.9-75-131-20220805/storage/tianmu/core/aggregation_algorithm.cpp:893
#9 0x0000000003016fc9 in _ZSt13__invoke_implIvRMN6Tianmu4core20AggregationWorkerEntEFvPNS1_18MIUpdatingIteratorEPNS1_15DimensionVectorEPNS1_10MIIteratorEiiiPNS1_14GroupByWrapperEPNS1_11TransactionEERPS2_IRS4_RS6_RS8_RiSL_SL_RSA_RSC_EET_St21__invoke_memfun_derefOT0_OT1_DpOT2_ (__f=
@0x7f78b4944f48: (void (Tianmu::core::AggregationWorkerEnt::*)(Tianmu::core::AggregationWorkerEnt * const, Tianmu::core::MIUpdatingIterator *, Tianmu::core::DimensionVector *, Tianmu::core::MIIterator *, int, int, int, Tianmu::core::GroupByWrapper *, Tianmu::core::Transaction *)) 0x3005190 <Tianmu::core::AggregationWorkerEnt::TaskAggrePacks(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>, __t=@0x7f78b4944f90: 0x7f7a36436e50,
__args#0=@0x7f78b4944f88: 0x7f78b492b8c0, __args#1=@0x7f78b4944f80: 0x7f7a36436b70, __args#2=@0x7f78b4944f78: 0x7f7a36436ea0, __args#3=@0x7f78b4944f70: 0, __args#4=@0x7f78b4944f6c: 30,
__args#5=@0x7f78b4944f68: 0, __args#6=@0x7f78b4944f60: 0x7f7a36437210, __args#7=@0x7f78b4944f58: 0x7f78b4016400) at /opt/rh/devtoolset-7/root/usr/include/c++/7/bits/invoke.h:73
#10 0x0000000003016af3 in std::__invoke<void (Tianmu::core::AggregationWorkerEnt::*&)(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*), Tianmu::core::AggregationWorkerEnt*&, Tianmu::core::MIUpdatingIterator*&, Tianmu::core::DimensionVector*&, Tianmu::core::MIIterator*&, int&, int&, int&, Tianmu::core::GroupByWrapper*&, Tianmu::core::Transaction*&> (__fn=
@0x7f78b4944f48: (void (Tianmu::core::AggregationWorkerEnt::*)(Tianmu::core::AggregationWorkerEnt * const, Tianmu::core::MIUpdatingIterator *, Tianmu::core::DimensionVector *, Tianmu::core::MIIterator *, int, int, int, Tianmu::core::GroupByWrapper *, Tianmu::core::Transaction *)) 0x3005190 <Tianmu::core::AggregationWorkerEnt::TaskAggrePacks(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>, __args#0=@0x7f78b4944f90: 0x7f7a36436e50,
__args#1=@0x7f78b4944f88: 0x7f78b492b8c0, __args#2=@0x7f78b4944f80: 0x7f7a36436b70, __args#3=@0x7f78b4944f78: 0x7f7a36436ea0, __args#4=@0x7f78b4944f70: 0, __args#5=@0x7f78b4944f6c: 30,
__args#6=@0x7f78b4944f68: 0, __args#7=@0x7f78b4944f60: 0x7f7a36437210, __args#8=@0x7f78b4944f58: 0x7f78b4016400) at /opt/rh/devtoolset-7/root/usr/include/c++/7/bits/invoke.h:95
#11 0x00000000030164d9 in std::_Bind<void (Tianmu::core::AggregationWorkerEnt::*(Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*))(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>::__call<void, , 0ul, 1ul, 2ul, 3ul, 4ul, 5ul, 6ul, 7ul, 8ul>(std::tuple<>&&, std::_Index_tuple<0ul, 1ul, 2ul, 3ul, 4ul, 5ul, 6ul, 7ul, 8ul>) (this=0x7f78b4944f48, __args=empty std::tuple) at /opt/rh/devtoolset-7/root/usr/include/c++/7/functional:467
#12 0x00000000030157fc in std::_Bind<void (Tianmu::core::AggregationWorkerEnt::*(Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*))(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>::operator()<, void>() (this=0x7f78b4944f48) at /opt/rh/devtoolset-7/root/usr/include/c++/7/functional:551
#13 0x0000000003014faf in std::__invoke_impl<void, std::_Bind<void (Tianmu::core::AggregationWorkerEnt::*(Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*))(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>&>(std::__invoke_other, std::_Bind<void (Tianmu::core::AggregationWorkerEnt::*(Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*))(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>&) (__f=...)
---Type <return> to continue, or q <return> to quit---
at /opt/rh/devtoolset-7/root/usr/include/c++/7/bits/invoke.h:60
#14 0x00000000030148aa in std::__invoke<std::_Bind<void (Tianmu::core::AggregationWorkerEnt::*(Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*))(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>&>(std::_Bind<void (Tianmu::core::AggregationWorkerEnt::*(Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*))(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>&) (__fn=...)
at /opt/rh/devtoolset-7/root/usr/include/c++/7/bits/invoke.h:95
#15 0x0000000003014229 in std::__future_base::_Task_state<std::_Bind<void (Tianmu::core::AggregationWorkerEnt::*(Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*))(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>, std::allocator<int>, void ()>::_M_run()::{lambda()#1}::operator()() const (
__closure=0x7f79e97f9518) at /opt/rh/devtoolset-7/root/usr/include/c++/7/future:1421
#16 0x00000000030158a3 in std::__future_base::_Task_setter<std::unique_ptr<std::__future_base::_Result<void>, std::__future_base::_Result_base::_Deleter>, std::__future_base::_Task_state<std::_Bind<void (Tianmu::core::AggregationWorkerEnt::*(Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*))(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>, std::allocator<int>, void ()>::_M_run()::{lambda()#1}, void>::operator()() const (this=0x7f79e97f9520)
at /opt/rh/devtoolset-7/root/usr/include/c++/7/future:1362
#17 0x000000000301502e in std::_Function_handler<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> (), std::__future_base::_Task_setter<std::unique_ptr<std::__future_base::_Result<void>, std::__future_base::_Result_base::_Deleter>, std::__future_base::_Task_state<std::_Bind<void (Tianmu::core::AggregationWorkerEnt::*(Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*))(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>, std::allocator<int>, void ()>::_M_run()::{lambda()#1}, void> >::_M_invoke(std::_Any_data const&) (__functor=...) at /opt/rh/devtoolset-7/root/usr/include/c++/7/bits/std_function.h:302
#18 0x0000000002d03eb7 in std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>::operator()() const (this=0x7f79e97f9520)
at /opt/rh/devtoolset-7/root/usr/include/c++/7/bits/std_function.h:706
#19 0x0000000002cfe19f in std::__future_base::_State_baseV2::_M_do_set(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*) (this=0x7f78b4944f20, __f=0x7f79e97f9520, __did_set=0x7f79e97f9497) at /opt/rh/devtoolset-7/root/usr/include/c++/7/future:561
#20 0x0000000002d130a3 in std::__invoke_impl<void, void (std::__future_base::_State_baseV2::*)(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*), std::__future_base::_State_baseV2<std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*>*> (__f=
@0x7f79e97f94b0: (void (std::__future_base::_State_baseV2::*)(std::__future_base::_State_baseV2 * const, std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter>()> *, bool *)) 0x2cfe178 <std::__future_base::_State_baseV2::_M_do_set(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*)>, __t=@0x7f79e97f94a8: 0x7f78b4944f20, __args#0=@0x7f79e97f94a0: 0x7f79e97f9520, __args#1=@0x7f79e97f9498: 0x7f79e97f9497)
at /opt/rh/devtoolset-7/root/usr/include/c++/7/bits/invoke.h:73
#21 0x0000000002d0b46f in std::__invoke<void (std::__future_base::_State_baseV2::*)(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*), std::__future_base::_State_baseV2*, std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*>(void (std::__future_base::_State_baseV2::*&&)(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*), std::__future_base::_State_baseV2*&&, std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*&&, bool*&&) (__fn=
@0x7f79e97f94b0: (void (std::__future_base::_State_baseV2::*)(std::__future_base::_State_baseV2 * const, std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter>()> *, bool *)) 0x2cfe178 <std::__future_base::_State_baseV2::_M_do_set(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*)>, __args#0=@0x7f79e97f94a8: 0x7f78b4944f20, __args#1=@0x7f79e97f94a0: 0x7f79e97f9520, __args#2=@0x7f79e97f9498: 0x7f79e97f9497)
at /opt/rh/devtoolset-7/root/usr/include/c++/7/bits/invoke.h:95
#22 0x0000000002d03a0a in void std::call_once<void (std::__future_base::_State_baseV2::*)(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*), std::__future_base::_State_baseV2*, std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*>(std::once_flag&, void (std::__future_base::_State_baseV2::*&&)(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*), std::__future_base::_State_baseV2*&&, std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*&&, bool*&&)::{lambda()#1}::operator()() const (
__closure=0x7f79e97f9420) at /opt/rh/devtoolset-7/root/usr/include/c++/7/mutex:672
---Type <return> to continue, or q <return> to quit---
#23 0x0000000002d03a75 in void std::call_once<void (std::__future_base::_State_baseV2::*)(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*), std::__future_base::_State_baseV2*, std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*>(std::once_flag&, void (std::__future_base::_State_baseV2::*&&)(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*), std::__future_base::_State_baseV2*&&, std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*&&, bool*&&)::{lambda()#2}::operator()() const (
__closure=0x0) at /opt/rh/devtoolset-7/root/usr/include/c++/7/mutex:677
#24 0x0000000002d03a86 in void std::call_once<void (std::__future_base::_State_baseV2::*)(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*), std::__future_base::_State_baseV2*, std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*>(std::once_flag&, void (std::__future_base::_State_baseV2::*&&)(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*), std::__future_base::_State_baseV2*&&, std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*&&, bool*&&)::{lambda()#2}::_FUN() ()
at /opt/rh/devtoolset-7/root/usr/include/c++/7/mutex:677
#25 0x00007f7a8526320b in __pthread_once_slow () from /lib64/libpthread.so.0
#26 0x0000000002ce6236 in __gthread_once (__once=0x7f78b4944f38, __func=0x35ed1c0 <__once_proxy>) at /opt/rh/devtoolset-7/root/usr/include/c++/7/x86_64-redhat-linux/bits/gthr-default.h:699
#27 0x0000000002d03b30 in std::call_once<void (std::__future_base::_State_baseV2::*)(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*), std::__future_base::_State_baseV2*, std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*>(std::once_flag&, void (std::__future_base::_State_baseV2::*&&)(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*), std::__future_base::_State_baseV2*&&, std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*&&, bool*&&) (__once=..., __f=
@0x7f79e97f94b0: (void (std::__future_base::_State_baseV2::*)(std::__future_base::_State_baseV2 * const, std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter>()> *, bool *)) 0x2cfe178 <std::__future_base::_State_baseV2::_M_do_set(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*)>, __args#0=@0x7f79e97f94a8: 0x7f78b4944f20, __args#1=@0x7f79e97f94a0: 0x7f79e97f9520, __args#2=@0x7f79e97f9498: 0x7f79e97f9497)
at /opt/rh/devtoolset-7/root/usr/include/c++/7/mutex:684
#28 0x0000000002cfddfd in std::__future_base::_State_baseV2::_M_set_result(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>, bool) (this=0x7f78b4944f20, __res=..., __ignore_failure=false) at /opt/rh/devtoolset-7/root/usr/include/c++/7/future:401
#29 0x0000000003014288 in std::__future_base::_Task_state<std::_Bind<void (Tianmu::core::AggregationWorkerEnt::*(Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*))(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>, std::allocator<int>, void ()>::_M_run() (this=0x7f78b4944f20)
at /opt/rh/devtoolset-7/root/usr/include/c++/7/future:1423
#30 0x0000000002d104db in std::packaged_task<void ()>::operator()() (this=0x7f78b4943470) at /opt/rh/devtoolset-7/root/usr/include/c++/7/future:1556
#31 0x00000000030093c6 in std::future<std::result_of<void (Tianmu::core::AggregationWorkerEnt::*(Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int&, int, Tianmu::core::GroupByWrapper*&, Tianmu::core::Transaction*&))(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>::type> Tianmu::utils::thread_pool::add_task<void (Tianmu::core::AggregationWorkerEnt::*)(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*), Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int&, int, Tianmu::core::GroupByWrapper*&, Tianmu::core::Transaction*&>(void (Tianmu::core::AggregationWorkerEnt::*&&)(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*), Tianmu::core::AggregationWorkerEnt*&&, Tianmu::core::MIUpdatingIterator*&&, Tianmu::core::DimensionVector*&&, Tianmu::core::MIIterator*&&, int&&, int&, int&&, Tianmu::core::GroupByWrapper*&, Tianmu::core::Transaction*&)::{lambda()#1}::operator()() const (__closure=0x7f78b4944fc0)
at /home/jenkins/workspace/stonedb5.7-zsl-centos7.9-75-131-20220805/storage/tianmu/util/thread_pool.h:91
#32 0x000000000300f5c4 in std::_Function_handler<void (), std::future<std::result_of<void (Tianmu::core::AggregationWorkerEnt::*(Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int&, int, Tianmu::core::GroupByWrapper*&, Tianmu::core::Transaction*&))(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>::type> Tianmu::utils::thread_pool::add_task<void (Tianmu::core::AggregationWorkerEnt::*)(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*), Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int&, int, Tianmu::core::GroupByWrapper*&, Tianmu::core::Transaction*&>(void (Tianmu::core::AggregationWorkerEnt::*&&)(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*), Tianmu::core::AggregationWorkerEnt*&&, Tianmu::core::MIUpdatingIterator*&&, Tianmu::core::DimensionVector*&&, Tianmu::core::MIIterator*&&, int&&, int&, int&&, Tianmu::core::GroupByWrapper*&, Tianmu::core::Transaction*&)::{lambda()#1}>::_M_invoke(std::_Any_data const&) (__functor=...)
---Type <return> to continue, or q <return> to quit---
at /opt/rh/devtoolset-7/root/usr/include/c++/7/bits/std_function.h:316
#33 0x0000000002d028be in std::function<void ()>::operator()() const (this=0x7f79e97f95f0) at /opt/rh/devtoolset-7/root/usr/include/c++/7/bits/std_function.h:706
#34 0x0000000002cfe60b in _ZZN6Tianmu5utils11thread_poolC4ERKSsmENKUlvE_clEv () at /home/jenkins/workspace/stonedb5.7-zsl-centos7.9-75-131-20220805/storage/tianmu/util/thread_pool.h:60
#35 0x0000000002d21e10 in _ZSt13__invoke_implIvZN6Tianmu5utils11thread_poolC4ERKSsmEUlvE_IEET_St14__invoke_otherOT0_DpOT1_ (__f=...)
at /opt/rh/devtoolset-7/root/usr/include/c++/7/bits/invoke.h:60
#36 0x0000000002d1b083 in _ZSt8__invokeIZN6Tianmu5utils11thread_poolC4ERKSsmEUlvE_IEENSt15__invoke_resultIT_IDpT0_EE4typeEOS7_DpOS8_ (__fn=...)
at /opt/rh/devtoolset-7/root/usr/include/c++/7/bits/invoke.h:95
#37 0x0000000002d307b8 in _ZNSt6thread8_InvokerISt5tupleIIZN6Tianmu5utils11thread_poolC4ERKSsmEUlvE_EEE9_M_invokeIILm0EEEEDTcl8__invokespcl10_S_declvalIXT_EEEEESt12_Index_tupleIIXspT_EEE (
this=0x7145ed8) at /opt/rh/devtoolset-7/root/usr/include/c++/7/thread:234
#38 0x0000000002d30149 in _ZNSt6thread8_InvokerISt5tupleIIZN6Tianmu5utils11thread_poolC4ERKSsmEUlvE_EEEclEv (this=0x7145ed8) at /opt/rh/devtoolset-7/root/usr/include/c++/7/thread:243
#39 0x0000000002d2f28a in _ZNSt6thread11_State_implINS_8_InvokerISt5tupleIIZN6Tianmu5utils11thread_poolC4ERKSsmEUlvE_EEEEE6_M_runEv (this=0x7145ed0)
at /opt/rh/devtoolset-7/root/usr/include/c++/7/thread:186
#40 0x000000000362116f in execute_native_thread_routine ()
#41 0x00007f7a85264ea5 in start_thread () from /lib64/libpthread.so.0
#42 0x00007f7a8369bb0d in clone () from /lib64/libc.so.6
(gdb) bt
#0 0x0000000002d4e8fa in Tianmu::core::Filter::Block::NumOfOnesBetween (this=0x0, n1=0, n2=41195)
at /home/jenkins/workspace/stonedb5.7-zsl-centos7.9-75-131-20220805/storage/tianmu/core/filter_block.cpp:221
#1 0x0000000002d4a08e in Tianmu::core::Filter::NumOfOnesBetween (this=0x7f584400ed70, n1=5594540, n2=13017323)
at /home/jenkins/workspace/stonedb5.7-zsl-centos7.9-75-131-20220805/storage/tianmu/core/filter.cpp:773
#2 0x0000000003070be4 in Tianmu::core::GroupByWrapper::TuplesLeftBetween (this=0x7f5844002e70, from=5594540, to=13017323)
at /home/jenkins/workspace/stonedb5.7-zsl-centos7.9-75-131-20220805/storage/tianmu/core/groupby_wrapper.cpp:653
#3 0x0000000003003f27 in Tianmu::core::AggregationAlgorithm::AggregatePackrow (this=0x7f594291b580, gbw=..., mit=0x7f587affbd70, cur_tuple=5594540)
at /home/jenkins/workspace/stonedb5.7-zsl-centos7.9-75-131-20220805/storage/tianmu/core/aggregation_algorithm.cpp:540
#4 0x0000000003005362 in Tianmu::core::AggregationWorkerEnt::TaskAggrePacks (this=0x7f594291ae50, taskIterator=0x7f577c939598, dims=0x7f594291ab70, mit=0x7f594291aea0, pstart=92, pend=122,
tuple=5594540, gbw=0x7f5844002e70, ci=0x7f577c9133f0) at /home/jenkins/workspace/stonedb5.7-zsl-centos7.9-75-131-20220805/storage/tianmu/core/aggregation_algorithm.cpp:893
#5 0x0000000003016fc9 in _ZSt13__invoke_implIvRMN6Tianmu4core20AggregationWorkerEntEFvPNS1_18MIUpdatingIteratorEPNS1_15DimensionVectorEPNS1_10MIIteratorEiiiPNS1_14GroupByWrapperEPNS1_11TransactionEERPS2_IRS4_RS6_RS8_RiSL_SL_RSA_RSC_EET_St21__invoke_memfun_derefOT0_OT1_DpOT2_ (__f=
@0x7f57681111c8: (void (Tianmu::core::AggregationWorkerEnt::*)(Tianmu::core::AggregationWorkerEnt * const, Tianmu::core::MIUpdatingIterator *, Tianmu::core::DimensionVector *, Tianmu::core::MIIterator *, int, int, int, Tianmu::core::GroupByWrapper *, Tianmu::core::Transaction *)) 0x3005190 <Tianmu::core::AggregationWorkerEnt::TaskAggrePacks(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>, __t=@0x7f5768111210: 0x7f594291ae50,
__args#0=@0x7f5768111208: 0x7f577c939598, __args#1=@0x7f5768111200: 0x7f594291ab70, __args#2=@0x7f57681111f8: 0x7f594291aea0, __args#3=@0x7f57681111f0: 92,
__args#4=@0x7f57681111ec: 122, __args#5=@0x7f57681111e8: 5594540, __args#6=@0x7f57681111e0: 0x7f5844002e70, __args#7=@0x7f57681111d8: 0x7f577c9133f0)
at /opt/rh/devtoolset-7/root/usr/include/c++/7/bits/invoke.h:73
#6 0x0000000003016af3 in std::__invoke<void (Tianmu::core::AggregationWorkerEnt::*&)(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*), Tianmu::core::AggregationWorkerEnt*&, Tianmu::core::MIUpdatingIterator*&, Tianmu::core::DimensionVector*&, Tianmu::core::MIIterator*&, int&, int&, int&, Tianmu::core::GroupByWrapper*&, Tianmu::core::Transaction*&> (__fn=
@0x7f57681111c8: (void (Tianmu::core::AggregationWorkerEnt::*)(Tianmu::core::AggregationWorkerEnt * const, Tianmu::core::MIUpdatingIterator *, Tianmu::core::DimensionVector *, Tianmu::core::MIIterator *, int, int, int, Tianmu::core::GroupByWrapper *, Tianmu::core::Transaction *)) 0x3005190 <Tianmu::core::AggregationWorkerEnt::TaskAggrePacks(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>, __args#0=@0x7f5768111210: 0x7f594291ae50,
__args#1=@0x7f5768111208: 0x7f577c939598, __args#2=@0x7f5768111200: 0x7f594291ab70, __args#3=@0x7f57681111f8: 0x7f594291aea0, __args#4=@0x7f57681111f0: 92,
__args#5=@0x7f57681111ec: 122, __args#6=@0x7f57681111e8: 5594540, __args#7=@0x7f57681111e0: 0x7f5844002e70, __args#8=@0x7f57681111d8: 0x7f577c9133f0)
at /opt/rh/devtoolset-7/root/usr/include/c++/7/bits/invoke.h:95
#7 0x00000000030164d9 in std::_Bind<void (Tianmu::core::AggregationWorkerEnt::*(Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*))(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>::__call<void, , 0ul, 1ul, 2ul, 3ul, 4ul, 5ul, 6ul, 7ul, 8ul>(std::tuple<>&&, std::_Index_tuple<0ul, 1ul, 2ul, 3ul, 4ul, 5ul, 6ul, 7ul, 8ul>) (this=0x7f57681111c8, __args=empty std::tuple) at /opt/rh/devtoolset-7/root/usr/include/c++/7/functional:467
#8 0x00000000030157fc in std::_Bind<void (Tianmu::core::AggregationWorkerEnt::*(Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*))(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>::operator()<, void>() (this=0x7f57681111c8) at /opt/rh/devtoolset-7/root/usr/include/c++/7/functional:551
#9 0x0000000003014faf in std::__invoke_impl<void, std::_Bind<void (Tianmu::core::AggregationWorkerEnt::*(Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*))(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>&>(std::__invoke_other, std::_Bind<void (Tianmu::core::AggregationWorkerEnt::*(Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*))(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>&) (__f=...)
at /opt/rh/devtoolset-7/root/usr/include/c++/7/bits/invoke.h:60
#10 0x00000000030148aa in std::__invoke<std::_Bind<void (Tianmu::core::AggregationWorkerEnt::*(Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*))(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>&>(std::_Bind<void (Tianmu::core::AggregationWorkerEnt::*(Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*))(Tianmu::core::MIUpdatingIterato---Type <return> to continue, or q <return> to quit---
r*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>&) (__fn=...)
at /opt/rh/devtoolset-7/root/usr/include/c++/7/bits/invoke.h:95
#11 0x0000000003014229 in std::__future_base::_Task_state<std::_Bind<void (Tianmu::core::AggregationWorkerEnt::*(Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*))(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>, std::allocator<int>, void ()>::_M_run()::{lambda()#1}::operator()() const (
__closure=0x7f587affc518) at /opt/rh/devtoolset-7/root/usr/include/c++/7/future:1421
#12 0x00000000030158a3 in std::__future_base::_Task_setter<std::unique_ptr<std::__future_base::_Result<void>, std::__future_base::_Result_base::_Deleter>, std::__future_base::_Task_state<std::_Bind<void (Tianmu::core::AggregationWorkerEnt::*(Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*))(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>, std::allocator<int>, void ()>::_M_run()::{lambda()#1}, void>::operator()() const (this=0x7f587affc520)
at /opt/rh/devtoolset-7/root/usr/include/c++/7/future:1362
#13 0x000000000301502e in std::_Function_handler<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> (), std::__future_base::_Task_setter<std::unique_ptr<std::__future_base::_Result<void>, std::__future_base::_Result_base::_Deleter>, std::__future_base::_Task_state<std::_Bind<void (Tianmu::core::AggregationWorkerEnt::*(Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*))(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>, std::allocator<int>, void ()>::_M_run()::{lambda()#1}, void> >::_M_invoke(std::_Any_data const&) (__functor=...) at /opt/rh/devtoolset-7/root/usr/include/c++/7/bits/std_function.h:302
#14 0x0000000002d03eb7 in std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>::operator()() const (this=0x7f587affc520)
at /opt/rh/devtoolset-7/root/usr/include/c++/7/bits/std_function.h:706
#15 0x0000000002cfe19f in std::__future_base::_State_baseV2::_M_do_set(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*) (this=0x7f57681111a0, __f=0x7f587affc520, __did_set=0x7f587affc497) at /opt/rh/devtoolset-7/root/usr/include/c++/7/future:561
#16 0x0000000002d130a3 in std::__invoke_impl<void, void (std::__future_base::_State_baseV2::*)(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*), std::__future_base::_State_baseV2<std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*>*> (__f=
@0x7f587affc4b0: (void (std::__future_base::_State_baseV2::*)(std::__future_base::_State_baseV2 * const, std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter>()> *, bool *)) 0x2cfe178 <std::__future_base::_State_baseV2::_M_do_set(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*)>, __t=@0x7f587affc4a8: 0x7f57681111a0, __args#0=@0x7f587affc4a0: 0x7f587affc520, __args#1=@0x7f587affc498: 0x7f587affc497)
at /opt/rh/devtoolset-7/root/usr/include/c++/7/bits/invoke.h:73
#17 0x0000000002d0b46f in std::__invoke<void (std::__future_base::_State_baseV2::*)(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*), std::__future_base::_State_baseV2*, std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*>(void (std::__future_base::_State_baseV2::*&&)(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*), std::__future_base::_State_baseV2*&&, std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*&&, bool*&&) (__fn=
@0x7f587affc4b0: (void (std::__future_base::_State_baseV2::*)(std::__future_base::_State_baseV2 * const, std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter>()> *, bool *)) 0x2cfe178 <std::__future_base::_State_baseV2::_M_do_set(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*)>, __args#0=@0x7f587affc4a8: 0x7f57681111a0, __args#1=@0x7f587affc4a0: 0x7f587affc520, __args#2=@0x7f587affc498: 0x7f587affc497)
at /opt/rh/devtoolset-7/root/usr/include/c++/7/bits/invoke.h:95
#18 0x0000000002d03a0a in void std::call_once<void (std::__future_base::_State_baseV2::*)(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*), std::__future_base::_State_baseV2*, std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*>(std::once_flag&, void (std::__future_base::_State_baseV2::*&&)(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*), std::__future_base::_State_baseV2*&&, std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*&&, bool*&&)::{lambda()#1}::operator()() const (
__closure=0x7f587affc420) at /opt/rh/devtoolset-7/root/usr/include/c++/7/mutex:672
#19 0x0000000002d03a75 in void std::call_once<void (std::__future_base::_State_baseV2::*)(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*), std::__future_base::_State_baseV2*, std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*>(std::once_flag&, void (std::__future_base::_State_baseV2::*&&)(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*), std::__future_base::_State_baseV2*&&, std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*&&, bool*&&)::{lambda()#2}::operator()() const (
__closure=0x0) at /opt/rh/devtoolset-7/root/usr/include/c++/7/mutex:677
---Type <return> to continue, or q <return> to quit---
#20 0x0000000002d03a86 in void std::call_once<void (std::__future_base::_State_baseV2::*)(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*), std::__future_base::_State_baseV2*, std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*>(std::once_flag&, void (std::__future_base::_State_baseV2::*&&)(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*), std::__future_base::_State_baseV2*&&, std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*&&, bool*&&)::{lambda()#2}::_FUN() ()
at /opt/rh/devtoolset-7/root/usr/include/c++/7/mutex:677
#21 0x00007f594bd9a20b in __pthread_once_slow () from /lib64/libpthread.so.0
#22 0x0000000002ce6236 in __gthread_once (__once=0x7f57681111b8, __func=0x35ed140 <__once_proxy>) at /opt/rh/devtoolset-7/root/usr/include/c++/7/x86_64-redhat-linux/bits/gthr-default.h:699
#23 0x0000000002d03b30 in std::call_once<void (std::__future_base::_State_baseV2::*)(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*), std::__future_base::_State_baseV2*, std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*>(std::once_flag&, void (std::__future_base::_State_baseV2::*&&)(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*), std::__future_base::_State_baseV2*&&, std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*&&, bool*&&) (__once=..., __f=
@0x7f587affc4b0: (void (std::__future_base::_State_baseV2::*)(std::__future_base::_State_baseV2 * const, std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter>()> *, bool *)) 0x2cfe178 <std::__future_base::_State_baseV2::_M_do_set(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>*, bool*)>, __args#0=@0x7f587affc4a8: 0x7f57681111a0, __args#1=@0x7f587affc4a0: 0x7f587affc520, __args#2=@0x7f587affc498: 0x7f587affc497)
at /opt/rh/devtoolset-7/root/usr/include/c++/7/mutex:684
#24 0x0000000002cfddfd in std::__future_base::_State_baseV2::_M_set_result(std::function<std::unique_ptr<std::__future_base::_Result_base, std::__future_base::_Result_base::_Deleter> ()>, bool) (this=0x7f57681111a0, __res=..., __ignore_failure=false) at /opt/rh/devtoolset-7/root/usr/include/c++/7/future:401
#25 0x0000000003014288 in std::__future_base::_Task_state<std::_Bind<void (Tianmu::core::AggregationWorkerEnt::*(Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*))(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>, std::allocator<int>, void ()>::_M_run() (this=0x7f57681111a0)
at /opt/rh/devtoolset-7/root/usr/include/c++/7/future:1423
#26 0x0000000002d104db in std::packaged_task<void ()>::operator()() (this=0x7f57681d39f0) at /opt/rh/devtoolset-7/root/usr/include/c++/7/future:1556
#27 0x00000000030097a2 in std::future<std::result_of<void (Tianmu::core::AggregationWorkerEnt::*(Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int&, int&, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*&))(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>::type> Tianmu::utils::thread_pool::add_task<void (Tianmu::core::AggregationWorkerEnt::*)(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*), Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int&, int&, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*&>(void (Tianmu::core::AggregationWorkerEnt::*&&)(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*), Tianmu::core::AggregationWorkerEnt*&&, Tianmu::core::MIUpdatingIterator*&&, Tianmu::core::DimensionVector*&&, Tianmu::core::MIIterator*&&, int&&, int&, int&, Tianmu::core::GroupByWrapper*&&, Tianmu::core::Transaction*&)::{lambda()#1}::operator()() const (__closure=0x7f5768111240)
at /home/jenkins/workspace/stonedb5.7-zsl-centos7.9-75-131-20220805/storage/tianmu/util/thread_pool.h:91
#28 0x000000000300f7d4 in std::_Function_handler<void (), std::future<std::result_of<void (Tianmu::core::AggregationWorkerEnt::*(Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int&, int&, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*&))(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*)>::type> Tianmu::utils::thread_pool::add_task<void (Tianmu::core::AggregationWorkerEnt::*)(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*), Tianmu::core::AggregationWorkerEnt*, Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int&, int&, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*&>(void (Tianmu::core::AggregationWorkerEnt::*&&)(Tianmu::core::MIUpdatingIterator*, Tianmu::core::DimensionVector*, Tianmu::core::MIIterator*, int, int, int, Tianmu::core::GroupByWrapper*, Tianmu::core::Transaction*), Tianmu::core::AggregationWorkerEnt*&&, Tianmu::core::MIUpdatingIterator*&&, Tianmu::core::DimensionVector*&&, Tianmu::core::MIIterator*&&, int&&, int&, int&, Tianmu::core::GroupByWrapper*&&, Tianmu::core::Transaction*&)::{lambda()#1}>::_M_invoke(std::_Any_data const&) (__functor=...)
at /opt/rh/devtoolset-7/root/usr/include/c++/7/bits/std_function.h:316
#29 0x0000000002d028be in std::function<void ()>::operator()() const (this=0x7f587affc5f0) at /opt/rh/devtoolset-7/root/usr/include/c++/7/bits/std_function.h:706
#30 0x0000000002cfe60b in _ZZN6Tianmu5utils11thread_poolC4ERKSsmENKUlvE_clEv () at /home/jenkins/workspace/stonedb5.7-zsl-centos7.9-75-131-20220805/storage/tianmu/util/thread_pool.h:60
#31 0x0000000002d21e10 in _ZSt13__invoke_implIvZN6Tianmu5utils11thread_poolC4ERKSsmEUlvE_IEET_St14__invoke_otherOT0_DpOT1_ (__f=...)
at /opt/rh/devtoolset-7/root/usr/include/c++/7/bits/invoke.h:60
---Type <return> to continue, or q <return> to quit---
#32 0x0000000002d1b083 in _ZSt8__invokeIZN6Tianmu5utils11thread_poolC4ERKSsmEUlvE_IEENSt15__invoke_resultIT_IDpT0_EE4typeEOS7_DpOS8_ (__fn=...)
at /opt/rh/devtoolset-7/root/usr/include/c++/7/bits/invoke.h:95
#33 0x0000000002d307b8 in _ZNSt6thread8_InvokerISt5tupleIIZN6Tianmu5utils11thread_poolC4ERKSsmEUlvE_EEE9_M_invokeIILm0EEEEDTcl8__invokespcl10_S_declvalIXT_EEEEESt12_Index_tupleIIXspT_EEE (
this=0x7d58718) at /opt/rh/devtoolset-7/root/usr/include/c++/7/thread:234
#34 0x0000000002d30149 in _ZNSt6thread8_InvokerISt5tupleIIZN6Tianmu5utils11thread_poolC4ERKSsmEUlvE_EEEclEv (this=0x7d58718) at /opt/rh/devtoolset-7/root/usr/include/c++/7/thread:243
#35 0x0000000002d2f28a in _ZNSt6thread11_State_implINS_8_InvokerISt5tupleIIZN6Tianmu5utils11thread_poolC4ERKSsmEUlvE_EEEEE6_M_runEv (this=0x7d58710)
at /opt/rh/devtoolset-7/root/usr/include/c++/7/thread:186
#36 0x00000000036210ef in execute_native_thread_routine ()
#37 0x00007f594bd9bea5 in start_thread () from /lib64/libpthread.so.0
#38 0x00007f594a1d2b0d in clone () from /lib64/libc.so.6
mysql> select
-> p_brand,
-> p_type,
-> p_size,
-> count(distinct ps_suppkey) as supplier_cnt
-> from
-> partsupp,
-> part
-> where
-> p_partkey = ps_partkey
-> and p_brand <> 'Brand#45'
-> and p_type not like 'MEDIUM POLISHED%'
-> and p_size in (49, 14, 23, 45, 19, 3, 36, 9)
-> and ps_suppkey not in (
-> select
-> s_suppkey
-> from
-> supplier
-> where
-> s_comment like '%Customer%Complaints%'
-> )
-> group by
-> p_brand,
-> p_type,
-> p_size
-> order by
-> supplier_cnt desc,
-> p_brand,
-> p_type,
-> p_size;
+------------------------------------------+--------+--------+--------------+
| p_brand | p_type | p_size | supplier_cnt |
+------------------------------------------+--------+--------+--------------+
| | | 256 | 0 |
+------------------------------------------+--------+--------+--------------+
1 row in set (1 min 58.20 sec)
mysql> select
-> p_brand,
-> p_type,
-> p_size,
-> count(distinct ps_suppkey) as supplier_cnt
-> from
-> partsupp,
-> part
-> where
-> p_partkey = ps_partkey
-> and p_brand <> 'Brand#45'
-> and p_type not like 'MEDIUM POLISHED%'
-> and p_size in (49, 14, 23, 45, 19, 3, 36, 9)
-> and ps_suppkey not in (
-> select
-> s_suppkey
-> from
-> supplier
-> where
-> s_comment like '%Customer%Complaints%'
-> )
-> group by
-> p_brand,
-> p_type,
-> p_size
-> order by
-> supplier_cnt desc,
-> p_brand,
-> p_type,
-> p_size
-> limit 10;
+----------+------------------------+--------+--------------+
| p_brand | p_type | p_size | supplier_cnt |
+----------+------------------------+--------+--------------+
| and#13 | | 256 | 5110 |
| Brand#12 | ECONOMY BRUSHED COPPER | 256 | 17 |
| Brand#14 | LARGE PLATED NICKEL | 256 | 17 |
| Brand#23 | SMALL PLATED COPPER | 256 | 17 |
| Brand#24 | LARGE ANODIZED NICKEL | 256 | 16 |
| Brand#12 | LARGE POLISHED NICKEL | 256 | 15 |
| Brand#12 | PROMO POLISHED COPPER | 256 | 15 |
| Brand#13 | PROMO BURNISHED NICKEL | 256 | 15 |
| Brand#14 | LARGE PLATED COPPER | 256 | 15 |
| Brand#15 | MEDIUM ANODIZED BRASS | 256 | 15 |
+----------+------------------------+--------+--------------+
10 rows in set (3.99 sec)
[2022-08-23 01:47:35.906412] [62538] [ERROR] [thread_pool.h:127] MSG: An exception is caught: assert failed on cur_pack != __null at rc_attr.cpp:391, msg: [Pack ptr is null]
[2022-08-23 01:47:35.906452] [62538] [ERROR] [thread_pool.h:127] MSG: An exception is caught: assert failed on cur_pack != __null at rc_attr.cpp:391, msg: [Pack ptr is null]
[2022-08-23 01:47:35.906473] [62538] [ERROR] [thread_pool.h:127] MSG: An exception is caught: assert failed on cur_pack != __null at rc_attr.cpp:391, msg: [Pack ptr is null]
[2022-08-23 01:47:35.924544] [62538] [WARN] [exception.cpp:41] MSG: Exception: Parallel worker run failed..
STACK TRACE BEGIN
/stonedb57/install//bin/mysqld(Tianmu::utils::result_set<void>::get_all_with_except()+0xca) [0x2e08cfa]
/stonedb57/install//bin/mysqld(Tianmu::core::AggregationWorkerEnt::DistributeAggreTaskAverage(Tianmu::core::MIIterator&)+0x966) [0x3006830]
/stonedb57/install//bin/mysqld(Tianmu::core::AggregationAlgorithm::MultiDimensionalGroupByScan(Tianmu::core::GroupByWrapper&, long&, long&, Tianmu::core::ResultSender*, bool)+0x69a) [0x3002bbe]
/stonedb57/install//bin/mysqld(Tianmu::core::AggregationAlgorithm::Aggregate(bool, long&, long&, Tianmu::core::ResultSender*)+0xf89) [0x3002433]
/stonedb57/install//bin/mysqld(Tianmu::core::TempTable::Materialize(bool, Tianmu::core::ResultSender*, bool)+0x890) [0x2deed30]
/stonedb57/install//bin/mysqld(Tianmu::core::Engine::Execute(THD*, LEX*, Query_result*, st_select_lex_unit*)+0x70c) [0x2d372f0]
/stonedb57/install//bin/mysqld(Tianmu::core::Engine::HandleSelect(THD*, LEX*, Query_result*&, unsigned long, int&, int&, int&, int)+0x8d8) [0x2d36492]
/stonedb57/install//bin/mysqld(Tianmu::dbhandler::TIANMU_HandleSelect(THD*, LEX*, Query_result*&, unsigned long, int&, int&, int&, int)+0x5c) [0x2e1ed39]
/stonedb57/install//bin/mysqld() [0x246264a]
/stonedb57/install//bin/mysqld(mysql_execute_command(THD*, bool)+0xd69) [0x245b9ce]
/stonedb57/install//bin/mysqld(mysql_parse(THD*, Parser_state*)+0x638) [0x2463613]
/stonedb57/install//bin/mysqld(dispatch_command(THD*, COM_DATA const*, enum_server_command)+0xbd8) [0x24588ab]
/stonedb57/install//bin/mysqld(do_command(THD*)+0x4ba) [0x24577d7]
/stonedb57/install//bin/mysqld(handle_connection+0x1ee) [0x258a3ad]
/stonedb57/install//bin/mysqld(pfs_spawn_thread+0x173) [0x2c6dfde]
/lib64/libpthread.so.0(+0x7ea5) [0x7f0c62d2bea5]
/lib64/libc.so.6(clone+0x6d) [0x7f0c61162b0d]
STACK TRACE END
mysql> select
-> p_brand,
-> p_type,
-> p_size,
-> count(distinct ps_suppkey) as supplier_cnt
-> from
-> partsupp,
-> part
-> where
-> p_partkey = ps_partkey
-> and p_brand <> 'Brand#45'
-> and p_type not like 'MEDIUM POLISHED%'
-> and p_size in (49, 14, 23, 45, 19, 3, 36, 9)
-> and ps_suppkey not in (
-> select
-> s_suppkey
-> from
-> supplier
-> where
-> s_comment like '%Customer%Complaints%'
-> )
-> group by
-> p_brand,
-> p_type,
-> p_size
-> order by
-> supplier_cnt desc,
-> p_brand,
-> p_type,
-> p_size
-> limit 10;
+----------+------------------------+--------+--------------+
| p_brand | p_type | p_size | supplier_cnt |
+----------+------------------------+--------+--------------+
| and#14 | | 1 | 26626 |
| Brand#13 | PROMO BURNISHED COPPER | 7 | 6075 |
| Brand#13 | SMALL POLISHED STEEL | 12 | 1879 |
| Brand#35 | MEDIUM ANODIZED STEEL | 36 | 1505 |
| Brand#13 | SMALL POLISHED STEEL | 8 | 864 |
| Brand#13 | SMALL POLISHED STEEL | 20 | 843 |
| Brand#13 | SMALL POLISHED STEEL | 1 | 842 |
| Brand#13 | SMALL POLISHED STEEL | 35 | 810 |
| Brand#13 | SMALL POLISHED STEEL | 11 | 794 |
| Brand#13 | SMALL POLISHED STEEL | 16 | 793 |
+----------+------------------------+--------+--------------+
10 rows in set (8.53 sec)
template <typename TMapped, typename Allocator>
struct StringHashMapSubMaps
{
using T0 = StringHashTableEmpty<StringHashMapCell<StringRef, TMapped>>;
using T1 = HashMapTable<StringKey8, StringHashMapCell<StringKey8, TMapped>, StringHashTableHash, StringHashTableGrower<>, Allocator>;
using T2 = HashMapTable<StringKey16, StringHashMapCell<StringKey16, TMapped>, StringHashTableHash, StringHashTableGrower<>, Allocator>;
using T3 = HashMapTable<StringKey24, StringHashMapCell<StringKey24, TMapped>, StringHashTableHash, StringHashTableGrower<>, Allocator>;
using Ts = HashMapTable<StringRef, StringHashMapCell<StringRef, TMapped>, StringHashTableHash, StringHashTableGrower<>, Allocator>;
};
[2022-08-26 10:24:47.168128] [32679] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 300
[2022-08-26 10:24:47.168132] [32679] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1345
[2022-08-26 10:24:47.168138] [32679] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 300
[2022-08-26 10:24:47.168142] [32679] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1346
[2022-08-26 10:24:47.168148] [32679] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 300
[2022-08-26 10:24:47.168152] [32679] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1347
[2022-08-26 10:24:47.168159] [32679] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 301
[2022-08-26 10:24:47.168163] [32679] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1348
[2022-08-26 10:24:47.168169] [32679] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 301
[2022-08-26 10:24:47.168173] [32679] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1349
[2022-08-26 10:24:47.168179] [32679] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 301
[2022-08-26 10:24:47.168183] [32679] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1350
[2022-08-26 10:24:47.168189] [32679] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 301
[2022-08-26 10:24:47.168193] [32679] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1351
[2022-08-26 10:24:47.168205] [32679] [INFO] [rc_attr.h:111] MSG: rc_attr:GetValueInt64 get_packN NULL, obj: 1351 pack: 0
[2022-08-26 10:24:47.168213] [32679] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 302
[2022-08-26 10:24:47.168218] [32679] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1352
[2022-08-26 10:24:47.168222] [32679] [INFO] [rc_attr.h:111] MSG: rc_attr:GetValueInt64 get_packN NULL, obj: 1352 pack: 0
[2022-08-26 10:24:47.168232] [32679] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 303
[2022-08-26 10:24:47.168237] [32679] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1356
[2022-08-26 10:24:47.168241] [32679] [INFO] [rc_attr.h:111] MSG: rc_attr:GetValueInt64 get_packN NULL, obj: 1356 pack: 0
[2022-08-26 10:24:47.168251] [32679] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 304
[2022-08-26 10:24:47.168255] [32679] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1360
[2022-08-26 10:24:47.168259] [32679] [INFO] [rc_attr.h:111] MSG: rc_attr:GetValueInt64 get_packN NULL, obj: 1360 pack: 0
[2022-08-26 10:24:47.168269] [32679] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 305
[2022-08-26 10:24:47.168273] [32679] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1364
[2022-08-26 10:24:47.168277] [32679] [INFO] [rc_attr.h:111] MSG: rc_attr:GetValueInt64 get_packN NULL, obj: 1364 pack: 0
[2022-08-26 10:24:47.168287] [32679] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 306
[2022-08-26 10:24:47.168291] [32679] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1368
[2022-08-26 10:24:47.168295] [32679] [INFO] [rc_attr.h:111] MSG: rc_attr:GetValueInt64 get_packN NULL, obj: 1368 pack: 0
[2022-08-26 10:24:47.168305] [32679] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 307
[2022-08-26 10:24:47.168310] [32679] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1372
[2022-08-26 10:24:47.168314] [32679] [INFO] [rc_attr.h:111] MSG: rc_attr:GetValueInt64 get_packN NULL, obj: 1372 pack: 0
[2022-08-26 10:24:47.168324] [32679] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 308
[2022-08-26 10:24:47.168328] [32679] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1376
[2022-08-26 10:24:47.168332] [32679] [INFO] [rc_attr.h:111] MSG: rc_attr:GetValueInt64 get_packN NULL, obj: 1376 pack: 0
[2022-08-26 10:24:47.165501] [32679] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 242
[2022-08-26 10:24:47.165506] [32679] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1088
[2022-08-26 10:24:47.165512] [32679] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 242
[2022-08-26 10:24:47.165516] [32679] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1089
[2022-08-26 10:24:47.165522] [32679] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 242
[2022-08-26 10:24:47.165526] [32679] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1090
[2022-08-26 10:24:47.165533] [32679] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 243
[2022-08-26 10:24:47.165537] [32679] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1091
[2022-08-26 10:24:47.165543] [32679] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 244
[2022-08-26 10:24:47.165548] [32679] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1092
[2022-08-26 10:24:47.165554] [32679] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 244
[2022-08-26 10:24:47.165558] [32679] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1093
[2022-08-26 10:24:47.165564] [32679] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 244
[2022-08-26 10:24:47.165568] [32679] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1094
[2022-08-26 10:24:47.165574] [32679] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 244
[2022-08-26 10:24:47.165578] [32679] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1095
[2022-08-26 10:34:52.533638] [35759] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 242
[2022-08-26 10:34:52.533647] [35759] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1088
[2022-08-26 10:34:52.533720] [35759] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 242
[2022-08-26 10:34:52.533729] [35759] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1089
[2022-08-26 10:34:52.533736] [35759] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 242
[2022-08-26 10:34:52.533740] [35759] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1090
-------------------------------------------------------------------------------------------------------------------------------------
[2022-08-26 10:34:52.533746] [35759] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 242
[2022-08-26 10:34:52.533750] [35759] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1091
-------------------------------------------------------------------------------------------------------------------------------------
[2022-08-26 10:34:52.533756] [35759] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 243
[2022-08-26 10:34:52.533760] [35759] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1092
[2022-08-26 10:34:52.533766] [35759] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 243
[2022-08-26 10:34:52.533770] [35759] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1093
[2022-08-26 10:34:52.533776] [35759] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 243
[2022-08-26 10:34:52.533780] [35759] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1094
[2022-08-26 10:34:52.533785] [35759] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 243
[2022-08-26 10:34:52.533789] [35759] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1095
[2022-08-26 10:34:52.533796] [35759] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 244
[2022-08-26 10:34:52.533800] [35759] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1100
[2022-08-26 10:34:52.533806] [35759] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 244
[2022-08-26 10:34:52.533809] [35759] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1101
[2022-08-26 10:34:52.533815] [35759] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 244
[2022-08-26 10:34:52.533819] [35759] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1102
[2022-08-26 10:34:52.533824] [35759] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 244
[2022-08-26 10:34:52.533828] [35759] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1103
[2022-08-26 10:34:54.741657] [35759] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 57560
[2022-08-26 10:34:54.741707] [35759] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 301976
[2022-08-26 11:29:10.021256] [38928] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 242
[2022-08-26 11:29:10.021261] [38928] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1088
[2022-08-26 11:29:10.021267] [38928] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 242
[2022-08-26 11:29:10.021272] [38928] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1089
[2022-08-26 11:29:10.021279] [38928] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 242
[2022-08-26 11:29:10.021283] [38928] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1090
[2022-08-26 11:29:10.021294] [38928] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 242
[2022-08-26 11:29:10.021302] [38928] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1091
[2022-08-26 11:29:10.021314] [38928] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 243
[2022-08-26 11:29:10.021321] [38928] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1092
[2022-08-26 11:29:10.021332] [38928] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 243
[2022-08-26 11:29:10.021340] [38928] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1093
[2022-08-26 11:29:10.021350] [38928] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 243
[2022-08-26 11:29:10.021451] [38928] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1094
[2022-08-26 11:29:10.021468] [38928] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 243
[2022-08-26 11:29:10.021473] [38928] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1095
[2022-08-26 11:29:10.021481] [38928] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 244
[2022-08-26 11:29:10.021486] [38928] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1100
[2022-08-26 11:29:10.021492] [38928] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 244
[2022-08-26 11:29:10.021497] [38928] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1101
[2022-08-26 11:29:10.021506] [38928] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 244
[2022-08-26 11:29:10.021511] [38928] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1102
[2022-08-26 11:29:10.021518] [38928] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 244
[2022-08-26 11:29:10.021523] [38928] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 1103
[2022-08-26 11:29:12.182563] [38928] [INFO] [group_table.cpp:569] MSG: PutAggregatedValue col: 3 row: 57560
[2022-08-26 11:29:12.182599] [38928] [INFO] [single_column.h:80] MSG: GetValueInt64Impl dim: 0 mit_cur_row: 301976
mysql> select
-> p_brand,
-> p_type,
-> p_size,
-> count(distinct ps_suppkey) as supplier_cnt
-> from
-> partsupp,
-> part
-> where
-> p_partkey = ps_partkey
-> and p_brand <> 'Brand#45'
-> and p_type not like 'MEDIUM POLISHED%'
-> and p_size in (49, 14, 23, 45, 19, 3, 36, 9)
-> and ps_suppkey not in (
-> select
-> s_suppkey
-> from
-> supplier
-> where
-> s_comment like '%Customer%Complaints%'
-> )
-> group by
-> p_brand,
-> p_type,
-> p_size
-> order by
-> supplier_cnt desc,
-> p_brand,
-> p_type,
-> p_size
-> limit 10;
+----------+---------------------------+--------+--------------+
| p_brand | p_type | p_size | supplier_cnt |
+----------+---------------------------+--------+--------------+
| Brand#44 | STANDARD PLATED TIN | 9 | 120 |
| Brand#33 | STANDARD BURNISHED COPPER | 42 | 116 |
| Brand#24 | SMALL BURNISHED NICKEL | 11 | 104 |
| Brand#33 | SMALL BURNISHED NICKEL | 12 | 104 |
| Brand#41 | ECONOMY POLISHED BRASS | 16 | 104 |
| Brand#51 | PROMO PLATED STEEL | 28 | 104 |
| Brand#55 | ECONOMY BURNISHED NICKEL | 21 | 104 |
| Brand#11 | ECONOMY ANODIZED COPPER | 28 | 100 |
| Brand#11 | ECONOMY POLISHED COPPER | 41 | 100 |
| Brand#12 | ECONOMY ANODIZED STEEL | 31 | 100 |
+----------+---------------------------+--------+--------------+
10 rows in set (13.42 sec)
+----------+--------------------------+--------+--------------+
| p_brand | p_type | p_size | supplier_cnt |
+----------+--------------------------+--------+--------------+
| Brand#44 | STANDARD PLATED TIN | 9 | 120 |
| Brand#12 | STANDARD POLISHED COPPER | 14 | 100 |
| Brand#11 | LARGE BRUSHED STEEL | 36 | 96 |
| Brand#23 | PROMO BURNISHED STEEL | 14 | 96 |
| Brand#34 | MEDIUM BRUSHED STEEL | 23 | 96 |
| Brand#53 | PROMO BURNISHED BRASS | 36 | 96 |
| Brand#54 | STANDARD BRUSHED COPPER | 19 | 96 |
| Brand#32 | LARGE POLISHED COPPER | 14 | 95 |
| Brand#43 | LARGE PLATED COPPER | 19 | 95 |
| Brand#11 | SMALL BRUSHED STEEL | 9 | 92 |
+----------+--------------------------+--------+--------------+
10 rows in set (25.13 sec)
+----------+---------------------------+--------+--------------+
| p_brand | p_type | p_size | supplier_cnt |
+----------+---------------------------+--------+--------------+
| Brand#44 | STANDARD PLATED TIN | 9 | 120 |
| Brand#33 | STANDARD BURNISHED COPPER | 42 | 116 |
| Brand#24 | SMALL BURNISHED NICKEL | 11 | 104 |
| Brand#33 | SMALL BURNISHED NICKEL | 12 | 104 |
| Brand#41 | ECONOMY POLISHED BRASS | 16 | 104 |
| Brand#51 | PROMO PLATED STEEL | 28 | 104 |
| Brand#55 | ECONOMY BURNISHED NICKEL | 21 | 104 |
| Brand#11 | ECONOMY ANODIZED COPPER | 28 | 100 |
| Brand#11 | ECONOMY POLISHED COPPER | 41 | 100 |
| Brand#12 | ECONOMY ANODIZED STEEL | 31 | 100 |
+----------+---------------------------+--------+--------------+
10 rows in set (13.35 sec)
mysql> select id,group_concat(distinct name SEPARATOR ":") from test_groupconcat_case group by id;
+------+-------------------------------------------+
| id | group_concat(distinct name SEPARATOR ":") |
+------+-------------------------------------------+
| 1 | test:test1 |
| 2 | test:test2 |
| 3 | test1 |
+------+-------------------------------------------+
3 rows in set (0.01 sec)
mysql> select id,group_concat(distinct name SEPARATOR ":") from test_groupconcat_case group by id;
+------+-------------------------------------------+
| id | group_concat(distinct name SEPARATOR ":") |
+------+-------------------------------------------+
| 1 | test:test1:test1 |
| 2 | test:test2 |
| 3 | test1 |
+------+-------------------------------------------+
3 rows in set (0.00 sec)
| Brand#52 | PROMO BURNISHED COPPER | 23 | 3 |
| Brand#52 | PROMO PLATED TIN | 19 | 3 |
| Brand#33 | PROMO BRUSHED BRASS | 14 | 2 |
| Brand#33 | LARGE BRUSHED COPPER | 19 | 0 |
+----------+---------------------------+--------+--------------+
18909 rows in set (3 min 55.64 sec)
Why only try 8 times and consider it full?
GDTResult GroupDistinctTable::FindCurrentRow(bool find_only) // find / insert the current buffer
{
DEBUG_ASSERT(!filter_implementation);
unsigned int crc_code = HashValue(input_buffer, total_width);
int64_t row = crc_code % no_rows;
int64_t step = 3 + crc_code % 8;
int64_t local_no_of_checks = 0;
do {
unsigned char *p = t + row * total_width;
// unsigned char *p = (unsigned char *)(t->GetRow(row));
if (!RowEmpty(p)) {
if (std::memcmp(p, input_buffer, total_width) == 0) {
// i.e. identical row found
return GDTResult::GDT_EXISTS;
}
local_no_of_checks++;
row += step + local_no_of_checks;
if (row >= no_rows) row = row % no_rows;
} else {
if (!find_only) {
std::memcpy(p, input_buffer, total_width);
no_of_occupied++;
}
return GDTResult::GBIMODE_AS_TEXT;
}
} while (local_no_of_checks < 8); // search depth
return GDTResult::GDT_FULL;
}
void GroupDistinctTable::InitializeBuffers(int64_t max_no_rows) // max_no_rows = 0 => limit not known
{
Transaction *m_conn = current_txn_;
if (filter_implementation) { // special case of filter
f = new Filter(max_no_rows, pack_power);
f->Reset();
rows_limit = max_no_rows + 1; // limits do not apply
rc_control_.lock(m_conn->GetThreadID())
<< "GroupDistinctTable initialized as Filter for up to " << max_no_rows << " positions." << system::unlock;
return;
}
no_rows = max_total_size / total_width; // memory limitation
if (max_no_rows != 0 && (max_no_rows + 1) * 1.3 < no_rows)
no_rows = int64_t((max_no_rows + 1) * 1.3); // make sure that rows_limit>=max_no_groups
// calculate vertical size (not dividable by 17)
if (no_rows < 67) // too less groups => high collision probability; 67 is prime.
no_rows = 67;
if (no_rows % 17 == 0) no_rows++;
rows_limit = int64_t(no_rows * 0.9); // rows_limit is used to determine whether the table is full
t = (unsigned char *)alloc(total_width * no_rows, mm::BLOCK_TYPE::BLOCK_TEMPORARY);
// t = new BlockedRowMemStorage(total_width, &mem_mngr, no_rows);
input_buffer = (unsigned char *)(new int[total_width / 4 + 1]); // ensure proper memory alignment
rc_control_.lock(m_conn->GetThreadID()) << "GroupDistinctTable initialized as Hash(" << no_rows << "), " << group_bytes
<< "+" << value_bytes << " bytes." << system::unlock;
Clear();
}
Stop doing it in a local optimization way and move to a functional goal-driven approach and stop this Issuse
(gdb) bt
#0 Tianmu::core::PackStr::LoadCompressed (this=0x7f3a149c44f0, f=0x7f3c1cd20670) at /root/work/stonedb-dev-20230103/storage/tianmu/core/pack_str.cpp:638
#1 0x0000000003017e56 in Tianmu::core::PackStr::LoadDataFromFile (this=0x7f3a149c44f0, f=0x7f3c1cd20670) at /root/work/stonedb-dev-20230103/storage/tianmu/core/pack_str.cpp:108
#2 0x0000000003017838 in Tianmu::core::PackStr::PackStr (this=0x7f3a149c44f0, dpn=0x7f39e890afa8, pc=..., col_share=0x7f3a1497aa00)
at /root/work/stonedb-dev-20230103/storage/tianmu/core/pack_str.cpp:57
#3 0x0000000002d34ca4 in __gnu_cxx::new_allocator<Tianmu::core::PackStr>::construct<Tianmu::core::PackStr<Tianmu::core::DPN*&, Tianmu::core::ObjectId<(Tianmu::core::COORD_TYPE)0, 3, Tianmu::core::object_id_helper::empty> const&, Tianmu::core::ColumnShare*&> > (this=0x7f3c1cd2087f, __p=0x7f3a149c44f0) at /usr/include/c++/8/ext/new_allocator.h:136
#4 0x0000000002d33cae in std::allocator_traits<std::allocator<Tianmu::core::PackStr> >::construct<Tianmu::core::PackStr<Tianmu::core::DPN*&, Tianmu::core::ObjectId<(Tianmu::core::COORD_TYPE)0, 3, Tianmu::core::object_id_helper::empty> const&, Tianmu::core::ColumnShare*&> > (__a=..., __p=0x7f3a149c44f0) at /usr/include/c++/8/bits/alloc_traits.h:475
#5 0x0000000002d31fbc in std::_Sp_counted_ptr_inplace<Tianmu::core::PackStr, std::allocator<Tianmu::core::PackStr>, (__gnu_cxx::_Lock_policy)2>::_Sp_counted_ptr_inplace<Tianmu::core::DPN*&, Tianmu::core::ObjectId<(Tianmu::core::COORD_TYPE)0, 3, Tianmu::core::object_id_helper::empty> const&, Tianmu::core::ColumnShare*&> (this=0x7f3a149c44e0, __a=...) at /usr/include/c++/8/bits/shared_ptr_base.h:545
#6 0x0000000002d2f999 in std::__shared_count<(__gnu_cxx::_Lock_policy)2>::__shared_count<Tianmu::core::PackStr, std::allocator<Tianmu::core::PackStr>, Tianmu::core::DPN*&, Tianmu::core::ObjectId<(Tianmu::core::COORD_TYPE)0, 3, Tianmu::core::object_id_helper::empty> const&, Tianmu::core::ColumnShare*&> (this=0x7f3c1cd20a78, __p=@0x7f3c1cd20a70: 0x0, __a=...)
at /usr/include/c++/8/bits/shared_ptr_base.h:677
#7 0x0000000002d2d09e in std::__shared_ptr<Tianmu::core::PackStr, (__gnu_cxx::_Lock_policy)2>::__shared_ptr<std::allocator<Tianmu::core::PackStr>, Tianmu::core::DPN*&, Tianmu::core::ObjectId<(Tianmu::core::COORD_TYPE)0, 3, Tianmu::core::object_id_helper::empty> const&, Tianmu::core::ColumnShare*&> (this=0x7f3c1cd20a70, __tag=...) at /usr/include/c++/8/bits/shared_ptr_base.h:1342
#8 0x0000000002d2af0b in std::shared_ptr<Tianmu::core::PackStr>::shared_ptr<std::allocator<Tianmu::core::PackStr>, Tianmu::core::DPN*&, Tianmu::core::ObjectId<(Tianmu::core::COORD_TYPE)0, 3, Tianmu::core::object_id_helper::empty> const&, Tianmu::core::ColumnShare*&> (this=0x7f3c1cd20a70, __tag=...) at /usr/include/c++/8/bits/shared_ptr.h:359
#9 0x0000000002d291ed in std::allocate_shared<Tianmu::core::PackStr, std::allocator<Tianmu::core::PackStr>, Tianmu::core::DPN*&, Tianmu::core::ObjectId<(Tianmu::core::COORD_TYPE)0, 3, Tianmu::core::object_id_helper::empty> const&, Tianmu::core::ColumnShare*&> (__a=...) at /usr/include/c++/8/bits/shared_ptr.h:708
#10 0x0000000002d266d3 in std::make_shared<Tianmu::core::PackStr, Tianmu::core::DPN*&, Tianmu::core::ObjectId<(Tianmu::core::COORD_TYPE)0, 3, Tianmu::core::object_id_helper::empty> const&, Tianmu::core::ColumnShare*&> () at /usr/include/c++/8/bits/shared_ptr.h:724
#11 0x0000000002d1b497 in Tianmu::core::TianmuAttr::Fetch (this=0x7f3a149b7980, pc=...) at /root/work/stonedb-dev-20230103/storage/tianmu/core/tianmu_attr.cpp:847
#12 0x0000000002d26245 in Tianmu::core::DataCache::GetOrFetchObject<Tianmu::core::Pack, Tianmu::core::ObjectId<(Tianmu::core::COORD_TYPE)0, 3, Tianmu::core::object_id_helper::empty>, Tianmu::core::TianmuAttr> (this=0x4e0db40, coord_=..., fetcher_=0x7f3a149b7980) at /root/work/stonedb-dev-20230103/storage/tianmu/core/data_cache.h:234
#13 0x0000000002d1ab94 in Tianmu::core::TianmuAttr::LockPackForUse (this=0x7f3a149b7980, pn=0) at /root/work/stonedb-dev-20230103/storage/tianmu/core/tianmu_attr.cpp:783
#14 0x0000000002d51892 in Tianmu::core::TianmuTable::LockPackForUse (this=0x7f3a1497f1d0, attr=4, pack_no=0) at /root/work/stonedb-dev-20230103/storage/tianmu/core/tianmu_table.cpp:212
#15 0x0000000002ff4467 in Tianmu::core::VCPackGuardian::LockPackrow (this=0x7f3a1497e2b8, mit=...) at /root/work/stonedb-dev-20230103/storage/tianmu/core/pack_guardian.cpp:77
#16 0x0000000002cac8c8 in Tianmu::vcolumn::VirtualColumn::LockSourcePacks (this=0x7f3a1497e1e0, mit=...) at /root/work/stonedb-dev-20230103/storage/tianmu/vc/virtual_column.h:45
#17 0x0000000002d00571 in Tianmu::core::TempTable::SendResult (this=0x7f3a1497d880, limit=10, offset=0, sender=..., pagewise=false)
at /root/work/stonedb-dev-20230103/storage/tianmu/core/temp_table_low.cpp:460
#18 0x0000000002cff817 in Tianmu::core::TempTable::FillMaterializedBuffers (this=0x7f3a1497d880, local_limit=10, local_offset=0, sender=0x7f3a149a90e0, pagewise=false)
at /root/work/stonedb-dev-20230103/storage/tianmu/core/temp_table_low.cpp:317
#19 0x0000000002ce9247 in Tianmu::core::TempTable::Materialize (this=0x7f3a1497d880, in_subq=false, sender=0x7f3a149a90e0, lazy=false)
at /root/work/stonedb-dev-20230103/storage/tianmu/core/temp_table.cpp:2045
#20 0x0000000002c74b53 in Tianmu::core::Engine::Execute (this=0x4e0d7a0, thd=0x7f3a1407c380, lex=0x7f3a1407e6a8, result_output=0x7f3a14081e60, unit_for_union=0x0)
at /root/work/stonedb-dev-20230103/storage/tianmu/core/engine_execute.cpp:482
#21 0x0000000002c738be in Tianmu::core::Engine::HandleSelect (this=0x4e0d7a0, thd=0x7f3a1407c380, lex=0x7f3a1407e6a8, result=@0x7f3c1cd21dc8: 0x7f3a14081e60, setup_tables_done_option=0,
res=@0x7f3c1cd21dc4: 0, optimize_after_tianmu=@0x7f3c1cd21dbc: 1, tianmu_free_join=@0x7f3c1cd21dc0: 1, with_insert=0) at /root/work/stonedb-dev-20230103/storage/tianmu/core/engine_execute.cpp:238
#22 0x0000000002d76ae1 in Tianmu::handler::ha_my_tianmu_query (thd=0x7f3a1407c380, lex=0x7f3a1407e6a8, result_output=@0x7f3c1cd21dc8: 0x7f3a14081e60, setup_tables_done_option=0, res=@0x7f3c1cd21dc4: 0,
optimize_after_tianmu=@0x7f3c1cd21dbc: 1, tianmu_free_join=@0x7f3c1cd21dc0: 1, with_insert=0) at /root/work/stonedb-dev-20230103/storage/tianmu/handler/ha_my_tianmu.cpp:88
#23 0x00000000023b4d19 in execute_sqlcom_select (thd=0x7f3a1407c380, all_tables=0x7f3a140818c0) at /root/work/stonedb-dev-20230103/sql/sql_parse.cc:4875
#24 0x00000000023ae08f in mysql_execute_command (thd=0x7f3a1407c380, first_level=true) at /root/work/stonedb-dev-20230103/sql/sql_parse.cc:2675
#25 0x00000000023b5d7f in mysql_parse (thd=0x7f3a1407c380, parser_state=0x7f3c1cd22f90) at /root/work/stonedb-dev-20230103/sql/sql_parse.cc:5279
#26 0x00000000023aad68 in dispatch_command (thd=0x7f3a1407c380, com_data=0x7f3c1cd23730, command=COM_QUERY) at /root/work/stonedb-dev-20230103/sql/sql_parse.cc:1399
#27 0x00000000023a9ba9 in do_command (thd=0x7f3a1407c380) at /root/work/stonedb-dev-20230103/sql/sql_parse.cc:976
--Type <RET> for more, q to quit, c to continue without paging--
#28 0x00000000024db375 in handle_connection (arg=0x822e250) at /root/work/stonedb-dev-20230103/sql/conn_handler/connection_handler_per_thread.cc:313
#29 0x0000000002bab156 in pfs_spawn_thread (arg=0x7d5a6e0) at /root/work/stonedb-dev-20230103/storage/perfschema/pfs.cc:2197
#30 0x00007f3c2764b1ca in start_thread () from /lib64/libpthread.so.0
#31 0x00007f3c2479be73 in clone () from /lib64/libc.so.6
Documentation for mysql aggregation
https://dev.mysql.com/doc/refman/8.0/en/aggregate-functions-and-modifiers.html
Functional Requirements:
Performance Requirements:
Table data limit:
Memory usage limit:
Execution time limit:
Aggregate query SQL