select count(*) from AGGREGATION_TABLE | 2.76s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 2.37s 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 |
| 3.23s 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 |
| 4.09s 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.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 |
| 6.88s 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.21s 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 |
| 6.58s 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 |
| 5.28s 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.33s 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.59s 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.09s 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.48s 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.5s 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 |
| 4.98s 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 |
| 6.29s 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.46s 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.68s 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 |
| 4.82s 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.81s 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.9s 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 |
| 236.34s 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.27s 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.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.71s V4.10.0-HBASE-0.98-0.98.17-HADOOP2 |
| 2.73s 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 |
| 204.95s 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.1s 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.08s 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.2s 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.34s 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 |
| 3.97s 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.15s 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.24s 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.19s 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.61s 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 |
| 9.07s 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.21s 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 |
| 8.32s 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.78s 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.43s 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.49s 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.36s 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 |
| 3.92s 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.96s 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.92s 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 |
| 52.82s 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.72s 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.85s 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.47s 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.52s 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 |
| 3.12s 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 |
| 8.44s 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.16s 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.44s 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.77s 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 |
| 211.03s 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.51s 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.75s 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.42s 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.22s 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 |
| 5.17s 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.32s 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.49s 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 |
| 4.05s 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 |
| 203.33s 4.X-HBASE-0.98-0.98.17-HADOOP2 |
|