select count(*) from AGGREGATION_TABLE | 2.76s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 2.48s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
| select count(1) from AGGREGATION_TABLE group by HOST | 3.36s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 4.01s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select core, count(1) from AGGREGATION_TABLE group by CORE | 3.9s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 4s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select core, host, sum(ACTIVE_VISITOR) from AGGREGATION_TABLE group by core, host | 6.84s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 6.38s 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 |
| 7.1s 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 | 4.34s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 4.68s 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) | 6.7s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 7.26s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(active_visitor) count from AGGREGATION_TABLE | 4.91s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 4.38s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(distinct active_visitor) count from AGGREGATION_TABLE | 5.56s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 5.77s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select percentile_cont(0.9) within group (order by active_visitor asc) from AGGREGATION_TABLE | 5.24s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 5.61s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select percentile_cont(0.1) within group (order by active_visitor desc) from AGGREGATION_TABLE | 5.5s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 5.24s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(core), count(db), count(active_visitor) from AGGREGATION_TABLE | 6.94s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 7.24s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(distinct core), count(distinct db), count(distinct active_visitor) from AGGREGATION_TABLE | 8.3s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 8.74s 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 | 8.39s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 8.76s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select core, count(db) count from AGGREGATION_TABLE group by CORE | 4.84s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 5.31s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select core, count(distinct db) count from AGGREGATION_TABLE group by CORE | 6.46s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 7.03s 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 | 6.53s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 6.68s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(core) from AGGREGATION_TABLE where core IN (1,25,50,75,100) | 3.9s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 3.65s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(core) from AGGREGATION_TABLE where core < 10 and db < 200 | 4.32s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 5.18s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(core) from AGGREGATION_TABLE where core < 10 and active_visitor < 1000 | 6.5s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 6.89s 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.94s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 3.99s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
LOAD DATA AGGREGATION_TABLE [2000000 ROWS] | 238.2s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 239.5s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(1) from IN_LIKE_TABLE where K1 in ('Z', 'D', 'F', 'X') | 1.31s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 1.36s 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.02s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 0.02s 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.66s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 3.66s 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.71s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 2.92s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
LOAD DATA IN_LIKE_TABLE [2000000 ROWS] | 201.97s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 190.22s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(*) from INDEXED_TABLE | 5.75s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 6.39s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
| select /*+ INDEX(INDEXED_TABLE ids1 ids2 ids3 ids4) */ count(*) from INDEXED_TABLE | 5.62s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 6.36s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select /*+NO_INDEX*/ count(*) from INDEXED_TABLE | 1.69s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 2.1s 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 | 1.33s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 1.41s 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.87s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 4.14s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(core) from INDEXED_TABLE where core IN (1,100) | 0.07s 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,100) | 0.1s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 0.1s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core IN (1,100) | 3.22s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 3.25s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(core) from INDEXED_TABLE where core IN (1,25,50,75,100) | 0.24s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 0.26s 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.4s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 0.4s 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) | 3.31s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 3.39s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(core) from INDEXED_TABLE where core < 10 and db < 200 | 0.64s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 0.65s 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 | 8.63s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 8.66s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core < 10 and db < 200 | 3.8s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 4.04s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(core) from INDEXED_TABLE where core < 100 and db < 2000 | 8.59s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 7.49s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core < 100 and db < 2000 | 4.69s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 4.74s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(core) from INDEXED_TABLE where core > 90 | 0.42s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 0.42s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core > 90 | 3.53s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 3.63s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(core) from INDEXED_TABLE where core > 0 | 4.42s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 4.64s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core > 0 | 3.92s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 4.23s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select db from INDEXED_TABLE where db >5 and db <7 order by db | 0.05s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 0.05s 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.87s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 3.82s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select db from INDEXED_TABLE order by db limit 10 | 0.02s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 0.02s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select /*+NO_INDEX*/ db from INDEXED_TABLE order by db limit 10 | 2.85s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 2.86s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
CREATE INDEX idx5 ON INDEXED_TABLE (CORE) INCLUDE (DB,ACTIVE_VISITOR) | 48.6s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 56.96s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
LOAD DATA INDEXED_TABLE [2000000 ROWS] | 577.17s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 575.28s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(1) from TABLE_6CF where K1 in ('A', 'B', 'C', 'D') | 1.98s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 1.97s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
| select count(1) from TABLE_6CF where K1 in ('A', 'C') | 1.48s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 1.53s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(*) from TABLE_6CF where f < 1000 | 1.65s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 1.67s 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 | 2.9s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 2.86s 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.93s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 7.24s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(*) from TABLE_6CF group by A | 2.22s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 2.06s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(*) from TABLE_6CF group by B | 3.59s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 3.61s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(*) from TABLE_6CF where f < 10000 | 1.92s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 1.95s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
LOAD DATA TABLE_6CF [2000000 ROWS] | 217.88s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 216.78s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(1) from TABLE_1CF where K1 in ('A', 'B', 'C', 'D') | 3.38s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 3.27s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
| select count(1) from TABLE_1CF where K1 in ('A', 'C') | 2.67s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 2.92s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(*) from TABLE_1CF where f < 1000 | 3.76s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 3.3s 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 | 4.49s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 4.37s 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.6s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 4.89s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(*) from TABLE_1CF group by A | 3.41s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 3.56s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(*) from TABLE_1CF group by B | 3.48s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 3.79s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
select count(*) from TABLE_1CF where f < 10000 | 4.11s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 3.99s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|
LOAD DATA TABLE_1CF [2000000 ROWS] | 205.88s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 208.64s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|