select count(*) from AGGREGATION_TABLE | 2.1s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 2.62s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
| select count(1) from AGGREGATION_TABLE group by HOST | 3.49s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 2.93s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select core, count(1) from AGGREGATION_TABLE group by CORE | 3.27s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 4.28s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select core, host, sum(ACTIVE_VISITOR) from AGGREGATION_TABLE group by core, host | 5.28s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 6.5s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select AVG(DB), MIN(CORE), MAX(ACTIVE_VISITOR) from AGGREGATION_TABLE where host='CS' and DOMAIN<>'Google.com'SQL Exception - Check logs for V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
SQL Exception - Check logs for 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select round(date, 'day',50), sum(core)+2 from AGGREGATION_TABLE where (CORE<10 or CORE>90) group by round(date, 'day',50), host | 3.81s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 4.57s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select trunc(date, 'hour', 1000), count(DB), count(ACTIVE_VISITOR) from AGGREGATION_TABLE where feature='Login' and (core<50 or db<20 or active_visitor > 200) group by trunc(date, 'hour', 1000) | 5.89s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 6.75s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(active_visitor) count from AGGREGATION_TABLE | 4.01s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 4.91s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(distinct active_visitor) count from AGGREGATION_TABLE | 4.84s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 5.54s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select percentile_cont(0.9) within group (order by active_visitor asc) from AGGREGATION_TABLE | 4.48s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 5.42s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select percentile_cont(0.1) within group (order by active_visitor desc) from AGGREGATION_TABLE | 4.39s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 5.71s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(core), count(db), count(active_visitor) from AGGREGATION_TABLE | 6.43s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 7.22s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(distinct core), count(distinct db), count(distinct active_visitor) from AGGREGATION_TABLE | 6.54s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 8.37s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select percentile_cont(0.5) within group (order by core asc), percentile_cont(0.5) within group (order by db asc), percentile_cont(0.5) within group (order by active_visitor asc) from AGGREGATION_TABLE | 6.86s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 8.35s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select core, count(db) count from AGGREGATION_TABLE group by CORE | 4.01s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 5.49s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select core, count(distinct db) count from AGGREGATION_TABLE group by CORE | 5.18s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 6.78s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select core, percentile_cont(0.9999) within group (order by db asc) from AGGREGATION_TABLE group by CORE | 5.27s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 6.79s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(core) from AGGREGATION_TABLE where core IN (1,25,50,75,100) | 3.3s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 3.6s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(core) from AGGREGATION_TABLE where core < 10 and db < 200 | 3.38s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 4.63s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(core) from AGGREGATION_TABLE where core < 10 and active_visitor < 1000 | 5.53s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 6.68s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select * from AGGREGATION_TABLE LIMIT 100 | 0.02s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 0.02s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(core) from AGGREGATION_TABLE where core > 90 | 3.25s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 4.16s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
LOAD DATA AGGREGATION_TABLE [2000000 ROWS] | 215.2s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 235.77s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(1) from IN_LIKE_TABLE where K1 in ('Z', 'D', 'F', 'X') | 1.12s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 1.3s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
| select * from IN_LIKE_TABLE where K1 in ('A','B') and K2 in ('xxx1000000','xxx2000000','xxx2000001') | 0.01s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 0.01s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select * from IN_LIKE_TABLE where K1 in ('A', 'C', 'E', 'F', 'H') and K2 like 'xxxxxx1%' | 0.01s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 0.01s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(*) from IN_LIKE_TABLE where K1 in ('X','A','B','C','D','E','F','G','H','I','Z') and K2 like '%1%' | 3.22s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 3.34s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(*) from IN_LIKE_TABLE where (K1 in ('A','E','F','G','H','I','Z') or K1 like 'E%') and (K2 like '%xx1%' or K2 like '%xxxxxx2%') | 2.48s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 2.72s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
LOAD DATA IN_LIKE_TABLE [2000000 ROWS] | 170.38s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 194.67s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(*) from INDEXED_TABLE | 0.83s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 0.78s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
| select /*+ INDEX(INDEXED_TABLE ids1 ids2 ids3 ids4) */ count(*) from INDEXED_TABLE | 0.78s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 0.76s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select /*+NO_INDEX*/ count(*) from INDEXED_TABLE | 1.97s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 2.11s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select round(date, 'day',50), sum(core)+2 from INDEXED_TABLE where (CORE<10 or CORE>90) group by round(date, 'day',50), host | 0.38s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 0.37s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select /*+NO_INDEX*/ round(date, 'day',50), sum(core)+2 from INDEXED_TABLE where (CORE<10 or CORE>90) group by round(date, 'day',50), host | 3.89s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 4.17s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(core) from INDEXED_TABLE where core IN (1,100) | 0.04s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 0.05s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select /*+ INDEX(INDEXED_TABLE ids1 ids2 ids3 ids4) */ count(core) from INDEXED_TABLE where core IN (1,100) | 0.03s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 0.03s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core IN (1,100) | 2.84s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 3.42s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(core) from INDEXED_TABLE where core IN (1,25,50,75,100) | 0.09s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 0.08s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select /*+ INDEX(INDEXED_TABLE ids1 ids2 ids3 ids4) */ count(core) from INDEXED_TABLE where core IN (1,25,50,75,100) | 0.07s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 0.09s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core IN (1,25,50,75,100) | 2.86s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 3.47s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(core) from INDEXED_TABLE where core < 10 and db < 200 | 0.22s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 0.21s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select /*+ INDEX(INDEXED_TABLE ids1 ids2 ids3 ids4) */ count(core) from INDEXED_TABLE where core < 10 and db < 200 | 5.89s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 7.18s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core < 10 and db < 200 | 3.46s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 4.31s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(core) from INDEXED_TABLE where core < 100 and db < 2000 | 2.39s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 2.41s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core < 100 and db < 2000 | 4.57s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 5.46s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(core) from INDEXED_TABLE where core > 90 | 0.12s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 0.13s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core > 90 | 3.08s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 3.54s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(core) from INDEXED_TABLE where core > 0 | 1.09s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 1.19s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core > 0 | 3.58s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 4.33s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select db from INDEXED_TABLE where db >5 and db <7 order by db | 0.04s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 0.04s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select /*+NO_INDEX*/ db from INDEXED_TABLE where db >5 and db <7 order by db | 3.45s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 4.12s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select db from INDEXED_TABLE order by db limit 10 | 0.03s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 0.03s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select /*+NO_INDEX*/ db from INDEXED_TABLE order by db limit 10 | 2.55s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 3.2s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
CREATE INDEX idx5 ON INDEXED_TABLE (CORE) INCLUDE (DB,ACTIVE_VISITOR) | 46.11s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
SQL Exception - Check logs for 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
LOAD DATA INDEXED_TABLE [2000000 ROWS] | 866.2s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 932.03s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(1) from TABLE_6CF where K1 in ('A', 'B', 'C', 'D') | 1.88s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 2.07s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
| select count(1) from TABLE_6CF where K1 in ('A', 'C') | 1.5s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 1.56s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(*) from TABLE_6CF where f < 1000 | 1.41s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 1.53s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select a,b,c,d,e,f from TABLE_6CF where B>1000 and B<2000 and f>1000 and f<2000 | 3.04s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 3.13s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select sum(a),sum(b),sum(c),sum(d) from TABLE_6CF group by K1 | 7.2s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 8.78s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(*) from TABLE_6CF group by A | 1.74s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 2.27s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(*) from TABLE_6CF group by B | 3.36s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 3.32s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(*) from TABLE_6CF where f < 10000 | 1.8s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 1.89s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
LOAD DATA TABLE_6CF [2000000 ROWS] | 192.25s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 213.68s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(1) from TABLE_1CF where K1 in ('A', 'B', 'C', 'D') | 3.18s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 3.57s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
| select count(1) from TABLE_1CF where K1 in ('A', 'C') | 2.87s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 3.01s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(*) from TABLE_1CF where f < 1000 | 3.46s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 3.72s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select a,b,c,d,e,f from TABLE_1CF where B>1000 and B<2000 and f>1000 and f<2000 | 3.78s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 4.58s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select sum(a),sum(b),sum(c),sum(d) from TABLE_1CF group by K1 | 4.11s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 5.13s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(*) from TABLE_1CF group by A | 3.32s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 3.57s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(*) from TABLE_1CF group by B | 3.37s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 3.58s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(*) from TABLE_1CF where f < 10000 | 3.96s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 4.3s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
LOAD DATA TABLE_1CF [2000000 ROWS] | 172.2s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 202.82s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|