select count(*) from AGGREGATION_TABLE | 0.62s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.62s 3.0-HBASE-0.94.15-SECURITY |
| select count(1) from AGGREGATION_TABLE group by HOST | 0.62s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.59s 3.0-HBASE-0.94.15-SECURITY |
|
select core, count(1) from AGGREGATION_TABLE group by CORE | 0.79s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.83s 3.0-HBASE-0.94.15-SECURITY |
|
select core, host, sum(ACTIVE_VISITOR) from AGGREGATION_TABLE group by core, host | 2.11s V3.1.0-HBASE-0.94.15-SECURITY |
| 2.06s 3.0-HBASE-0.94.15-SECURITY |
|
select AVG(DB), MIN(CORE), MAX(ACTIVE_VISITOR) from AGGREGATION_TABLE where host='CS' and DOMAIN<>'Google.com' | 2.55s V3.1.0-HBASE-0.94.15-SECURITY |
| 2.49s 3.0-HBASE-0.94.15-SECURITY |
|
select round(date, 'day',50), sum(core)+2 from AGGREGATION_TABLE where (CORE<10 or CORE>90) group by round(date, 'day',50), host | 0.95s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.98s 3.0-HBASE-0.94.15-SECURITY |
|
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) | 1.74s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.83s 3.0-HBASE-0.94.15-SECURITY |
|
select count(active_visitor) count from AGGREGATION_TABLE | 1.71s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.61s 3.0-HBASE-0.94.15-SECURITY |
|
select count(distinct active_visitor) count from AGGREGATION_TABLE | 2.01s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.91s 3.0-HBASE-0.94.15-SECURITY |
|
select percentile_cont(0.9) within group (order by active_visitor asc) from AGGREGATION_TABLE | 1.99s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.94s 3.0-HBASE-0.94.15-SECURITY |
|
select percentile_cont(0.1) within group (order by active_visitor desc) from AGGREGATION_TABLE | 1.99s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.95s 3.0-HBASE-0.94.15-SECURITY |
|
select count(core), count(db), count(active_visitor) from AGGREGATION_TABLE | 2.25s V3.1.0-HBASE-0.94.15-SECURITY |
| 2.2s 3.0-HBASE-0.94.15-SECURITY |
|
select count(distinct core), count(distinct db), count(distinct active_visitor) from AGGREGATION_TABLE | 2.74s V3.1.0-HBASE-0.94.15-SECURITY |
| 2.69s 3.0-HBASE-0.94.15-SECURITY |
|
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 | 2.82s V3.1.0-HBASE-0.94.15-SECURITY |
| 2.67s 3.0-HBASE-0.94.15-SECURITY |
|
select core, count(db) count from AGGREGATION_TABLE group by CORE | 0.86s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.8s 3.0-HBASE-0.94.15-SECURITY |
|
select core, count(distinct db) count from AGGREGATION_TABLE group by CORE | 2.09s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.98s 3.0-HBASE-0.94.15-SECURITY |
|
select core, percentile_cont(0.9999) within group (order by db asc) from AGGREGATION_TABLE group by CORE | 2.18s V3.1.0-HBASE-0.94.15-SECURITY |
| 2.08s 3.0-HBASE-0.94.15-SECURITY |
|
select count(core) from AGGREGATION_TABLE where core IN (1,25,50,75,100) | 0.66s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.65s 3.0-HBASE-0.94.15-SECURITY |
|
select count(core) from AGGREGATION_TABLE where core < 10 and db < 200 | 0.84s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.86s 3.0-HBASE-0.94.15-SECURITY |
|
select count(core) from AGGREGATION_TABLE where core < 10 and active_visitor < 1000 | 1.43s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.45s 3.0-HBASE-0.94.15-SECURITY |
|
select count(core) from AGGREGATION_TABLE where core > 90 | 0.74s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.74s 3.0-HBASE-0.94.15-SECURITY |
|
LOAD DATA AGGREGATION_TABLE [2000000 ROWS] | 116.39s V3.1.0-HBASE-0.94.15-SECURITY |
| 117.13s 3.0-HBASE-0.94.15-SECURITY |
|
select count(1) from IN_LIKE_TABLE where K1 in ('Z', 'D', 'F', 'X') | 0.75s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.65s 3.0-HBASE-0.94.15-SECURITY |
| select * from IN_LIKE_TABLE where K1 in ('A','B') and K2 in ('xxx1000000','xxx2000000','xxx2000001') | 0.01s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.01s 3.0-HBASE-0.94.15-SECURITY |
|
select * from IN_LIKE_TABLE where K1 in ('A', 'C', 'E', 'F', 'H') and K2 like 'xxxxxx1%' | 0.02s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.02s 3.0-HBASE-0.94.15-SECURITY |
|
select count(*) from IN_LIKE_TABLE where K1 in ('X','A','B','C','D','E','F','G','H','I','Z') and K2 like '%1%' | 1.29s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.31s 3.0-HBASE-0.94.15-SECURITY |
|
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%') | 1.27s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.44s 3.0-HBASE-0.94.15-SECURITY |
|
LOAD DATA IN_LIKE_TABLE [2000000 ROWS] | 91.92s V3.1.0-HBASE-0.94.15-SECURITY |
| 90.97s 3.0-HBASE-0.94.15-SECURITY |
|
select count(*) from INDEXED_TABLE | 0.5s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.58s 3.0-HBASE-0.94.15-SECURITY |
| select /*+ INDEX(INDEXED_TABLE idx1 idx2 idx3 idx4) */ count(*) from INDEXED_TABLE | 0.78s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.79s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+ INDEX(INDEXED_TABLE ids1 ids2 ids3 ids4) */ count(*) from INDEXED_TABLE | 0.27s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.31s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+NO_INDEX*/ count(*) from INDEXED_TABLE | 0.83s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.05s 3.0-HBASE-0.94.15-SECURITY |
|
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.21s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.18s 3.0-HBASE-0.94.15-SECURITY |
|
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 | 1.24s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.6s 3.0-HBASE-0.94.15-SECURITY |
|
select count(core) from INDEXED_TABLE where core IN (1,100) | 0.08s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.07s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+ INDEX(INDEXED_TABLE idx1 idx2 idx3 idx4) */ count(core) from INDEXED_TABLE where core IN (1,100) | 0.04s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.04s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+ INDEX(INDEXED_TABLE ids1 ids2 ids3 ids4) */ count(core) from INDEXED_TABLE where core IN (1,100) | 0.1s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.06s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core IN (1,100) | 0.94s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.07s 3.0-HBASE-0.94.15-SECURITY |
|
select count(core) from INDEXED_TABLE where core IN (1,25,50,75,100) | 0.12s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.1s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+ INDEX(INDEXED_TABLE idx1 idx2 idx3 idx4) */ count(core) from INDEXED_TABLE where core IN (1,25,50,75,100) | 0.1s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.1s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+ INDEX(INDEXED_TABLE ids1 ids2 ids3 ids4) */ count(core) from INDEXED_TABLE where core IN (1,25,50,75,100) | 0.1s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.1s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core IN (1,25,50,75,100) | 0.93s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.04s 3.0-HBASE-0.94.15-SECURITY |
|
select count(core) from INDEXED_TABLE where core < 10 and db < 200 | 0.19s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.18s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+ INDEX(INDEXED_TABLE idx1 idx2 idx3 idx4) */ count(core) from INDEXED_TABLE where core < 10 and db < 200 | 0.62s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.75s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+ INDEX(INDEXED_TABLE ids1 ids2 ids3 ids4) */ count(core) from INDEXED_TABLE where core < 10 and db < 200 | 0.18s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.17s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core < 10 and db < 200 | 1.18s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.39s 3.0-HBASE-0.94.15-SECURITY |
|
select count(core) from INDEXED_TABLE where core < 100 and db < 2000 | 0.71s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.56s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core < 100 and db < 2000 | 1.54s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.74s 3.0-HBASE-0.94.15-SECURITY |
|
select count(core) from INDEXED_TABLE where core > 90 | 0.13s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.12s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core > 90 | 1.05s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.14s 3.0-HBASE-0.94.15-SECURITY |
|
select count(core) from INDEXED_TABLE where core > 0 | 0.44s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.38s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core > 0 | 1.23s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.31s 3.0-HBASE-0.94.15-SECURITY |
|
select db from INDEXED_TABLE where db >5 and db <7 order by db | 0.1s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.1s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+NO_INDEX*/ db from INDEXED_TABLE where db >5 and db <7 order by db | 2.04s V3.1.0-HBASE-0.94.15-SECURITY |
| 2.2s 3.0-HBASE-0.94.15-SECURITY |
|
select db from INDEXED_TABLE order by db limit 10 | 0.1s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.03s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+NO_INDEX*/ db from INDEXED_TABLE order by db limit 10 | 1.45s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.64s 3.0-HBASE-0.94.15-SECURITY |
|
CREATE INDEX idx5 ON INDEXED_TABLE (CORE) INCLUDE (DB,ACTIVE_VISITOR) | 32.59s V3.1.0-HBASE-0.94.15-SECURITY |
| 40.18s 3.0-HBASE-0.94.15-SECURITY |
|
LOAD DATA INDEXED_TABLE [2000000 ROWS] | 461.24s V3.1.0-HBASE-0.94.15-SECURITY |
| 522.82s 3.0-HBASE-0.94.15-SECURITY |
|
select count(*) from INDEXED_TABLE_MUTABLE | 1.14s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.73s 3.0-HBASE-0.94.15-SECURITY |
| select /*+ INDEX(INDEXED_TABLE_MUTABLE midx1 midx2 midx3 midx4) */ count(*) from INDEXED_TABLE_MUTABLE | 0.91s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.94s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+ INDEX(INDEXED_TABLE_MUTABLE mids1 mids2 mids3 mids4) */ count(*) from INDEXED_TABLE_MUTABLE | 0.6s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.58s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+NO_INDEX*/ count(*) from INDEXED_TABLE_MUTABLE | 0.88s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.91s 3.0-HBASE-0.94.15-SECURITY |
|
select round(date, 'day',50), sum(core)+2 from INDEXED_TABLE_MUTABLE where (CORE<10 or CORE>90) group by round(date, 'day',50), host | 0.41s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.2s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+NO_INDEX*/ round(date, 'day',50), sum(core)+2 from INDEXED_TABLE_MUTABLE where (CORE<10 or CORE>90) group by round(date, 'day',50), host | 1.34s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.36s 3.0-HBASE-0.94.15-SECURITY |
|
select count(core) from INDEXED_TABLE_MUTABLE where core IN (1,100) | 0.13s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.08s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+ INDEX(INDEXED_TABLE_MUTABLE midx1 midx2 midx3 midx4) */ count(core) from INDEXED_TABLE_MUTABLE where core IN (1,100) | 0.04s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.04s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+ INDEX(INDEXED_TABLE_MUTABLE mids1 mids2 mids3 mids4) */ count(core) from INDEXED_TABLE_MUTABLE where core IN (1,100) | 0.12s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.09s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE_MUTABLE where core IN (1,100) | 0.92s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.96s 3.0-HBASE-0.94.15-SECURITY |
|
select count(core) from INDEXED_TABLE_MUTABLE where core IN (1,25,50,75,100) | 0.14s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.12s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+ INDEX(INDEXED_TABLE_MUTABLE midx1 midx2 midx3 midx4) */ count(core) from INDEXED_TABLE_MUTABLE where core IN (1,25,50,75,100) | 0.08s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.07s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+ INDEX(INDEXED_TABLE_MUTABLE mids1 mids2 mids3 mids4) */ count(core) from INDEXED_TABLE_MUTABLE where core IN (1,25,50,75,100) | 0.13s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.1s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE_MUTABLE where core IN (1,25,50,75,100) | 0.95s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.96s 3.0-HBASE-0.94.15-SECURITY |
|
select count(core) from INDEXED_TABLE_MUTABLE where core < 10 and db < 200 | 0.48s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.18s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+ INDEX(INDEXED_TABLE_MUTABLE midx1 midx2 midx3 midx4) */ count(core) from INDEXED_TABLE_MUTABLE where core < 10 and db < 200 | 0.46s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.42s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+ INDEX(INDEXED_TABLE_MUTABLE mids1 mids2 mids3 mids4) */ count(core) from INDEXED_TABLE_MUTABLE where core < 10 and db < 200 | 0.46s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.16s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE_MUTABLE where core < 10 and db < 200 | 1.26s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.23s 3.0-HBASE-0.94.15-SECURITY |
|
select count(core) from INDEXED_TABLE_MUTABLE where core < 100 and db < 2000 | 1.23s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.64s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE_MUTABLE where core < 100 and db < 2000 | 1.67s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.61s 3.0-HBASE-0.94.15-SECURITY |
|
select count(core) from INDEXED_TABLE_MUTABLE where core > 90 | 0.16s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.14s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE_MUTABLE where core > 90 | 1.09s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.07s 3.0-HBASE-0.94.15-SECURITY |
|
select count(core) from INDEXED_TABLE_MUTABLE where core > 0 | 0.64s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.44s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE_MUTABLE where core > 0 | 1.28s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.29s 3.0-HBASE-0.94.15-SECURITY |
|
select db from INDEXED_TABLE_MUTABLE where db >5 and db <7 order by db | 0.18s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.07s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+NO_INDEX*/ db from INDEXED_TABLE_MUTABLE where db >5 and db <7 order by db | 2.23s V3.1.0-HBASE-0.94.15-SECURITY |
| 2.15s 3.0-HBASE-0.94.15-SECURITY |
|
select db from INDEXED_TABLE_MUTABLE order by db limit 10 | 1.3s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.91s 3.0-HBASE-0.94.15-SECURITY |
|
select /*+NO_INDEX*/ db from INDEXED_TABLE_MUTABLE order by db limit 10 | 1.72s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.62s 3.0-HBASE-0.94.15-SECURITY |
|
CREATE INDEX midx5 ON INDEXED_TABLE_MUTABLE (CORE) INCLUDE (DB,ACTIVE_VISITOR) | 42.58s V3.1.0-HBASE-0.94.15-SECURITY |
| 40.26s 3.0-HBASE-0.94.15-SECURITY |
|
LOAD DATA INDEXED_TABLE_MUTABLE [2000000 ROWS] | 705.65s V3.1.0-HBASE-0.94.15-SECURITY |
| 744.58s 3.0-HBASE-0.94.15-SECURITY |
|
select count(1) from TABLE_6CF where K1 in ('A', 'B', 'C', 'D') | 0.79s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.76s 3.0-HBASE-0.94.15-SECURITY |
| select count(1) from TABLE_6CF where K1 in ('A', 'C') | 0.66s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.64s 3.0-HBASE-0.94.15-SECURITY |
|
select count(*) from TABLE_6CF where f < 1000 | 1.19s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.25s 3.0-HBASE-0.94.15-SECURITY |
|
select a,b,c,d,e,f from TABLE_6CF where B>1000 and B<2000 and f>1000 and f<2000 | 1.91s V3.1.0-HBASE-0.94.15-SECURITY |
| 2.02s 3.0-HBASE-0.94.15-SECURITY |
|
select sum(a),sum(b),sum(c),sum(d) from TABLE_6CF group by K1 | 4.73s V3.1.0-HBASE-0.94.15-SECURITY |
| 4.72s 3.0-HBASE-0.94.15-SECURITY |
|
select count(*) from TABLE_6CF group by A | 0.85s V3.1.0-HBASE-0.94.15-SECURITY |
| 0.86s 3.0-HBASE-0.94.15-SECURITY |
|
select count(*) from TABLE_6CF group by B | 2.65s V3.1.0-HBASE-0.94.15-SECURITY |
| 2.6s 3.0-HBASE-0.94.15-SECURITY |
|
select count(*) from TABLE_6CF where f < 10000 | 2.22s V3.1.0-HBASE-0.94.15-SECURITY |
| 2.23s 3.0-HBASE-0.94.15-SECURITY |
|
LOAD DATA TABLE_6CF [2000000 ROWS] | 111.43s V3.1.0-HBASE-0.94.15-SECURITY |
| 109.38s 3.0-HBASE-0.94.15-SECURITY |
|
select count(1) from TABLE_1CF where K1 in ('A', 'B', 'C', 'D') | 1.69s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.82s 3.0-HBASE-0.94.15-SECURITY |
| select count(1) from TABLE_1CF where K1 in ('A', 'C') | 1.56s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.59s 3.0-HBASE-0.94.15-SECURITY |
|
select count(*) from TABLE_1CF where f < 1000 | 2.13s V3.1.0-HBASE-0.94.15-SECURITY |
| 2.26s 3.0-HBASE-0.94.15-SECURITY |
|
select a,b,c,d,e,f from TABLE_1CF where B>1000 and B<2000 and f>1000 and f<2000 | 2.53s V3.1.0-HBASE-0.94.15-SECURITY |
| 2.74s 3.0-HBASE-0.94.15-SECURITY |
|
select sum(a),sum(b),sum(c),sum(d) from TABLE_1CF group by K1 | 2.34s V3.1.0-HBASE-0.94.15-SECURITY |
| 2.48s 3.0-HBASE-0.94.15-SECURITY |
|
select count(*) from TABLE_1CF group by A | 1.81s V3.1.0-HBASE-0.94.15-SECURITY |
| 1.95s 3.0-HBASE-0.94.15-SECURITY |
|
select count(*) from TABLE_1CF group by B | 1.9s V3.1.0-HBASE-0.94.15-SECURITY |
| 2.02s 3.0-HBASE-0.94.15-SECURITY |
|
select count(*) from TABLE_1CF where f < 10000 | 2.05s V3.1.0-HBASE-0.94.15-SECURITY |
| 2.12s 3.0-HBASE-0.94.15-SECURITY |
|
LOAD DATA TABLE_1CF [2000000 ROWS] | 102.7s V3.1.0-HBASE-0.94.15-SECURITY |
| 100.7s 3.0-HBASE-0.94.15-SECURITY |
|