select count(*) from AGGREGATION_TABLE | 0.57s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.6s 3.0-HBASE-0.94.15-SECURITY |
| 0.58s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.65s 4.0-HBASE-0.98.1-HADOOP1 |
| select count(1) from AGGREGATION_TABLE group by HOST | 0.59s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.6s 3.0-HBASE-0.94.15-SECURITY |
| 0.62s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.67s 4.0-HBASE-0.98.1-HADOOP1 |
|
select core, count(1) from AGGREGATION_TABLE group by CORE | 0.76s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.7s 3.0-HBASE-0.94.15-SECURITY |
| 0.76s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.79s 4.0-HBASE-0.98.1-HADOOP1 |
|
select core, host, sum(ACTIVE_VISITOR) from AGGREGATION_TABLE group by core, host | 3.02s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 3.15s 3.0-HBASE-0.94.15-SECURITY |
| 3.2s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 3.3s 4.0-HBASE-0.98.1-HADOOP1 |
|
select AVG(DB), MIN(CORE), MAX(ACTIVE_VISITOR) from AGGREGATION_TABLE where host='CS' and DOMAIN<>'Google.com' | 3.7s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 3.88s 3.0-HBASE-0.94.15-SECURITY |
| 4.03s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 4.07s 4.0-HBASE-0.98.1-HADOOP1 |
|
select round(date, 'day',50), sum(core)+2 from AGGREGATION_TABLE where (CORE<10 or CORE>90) group by round(date, 'day',50), host | 1.09s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.16s 3.0-HBASE-0.94.15-SECURITY |
| 1.22s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.2s 4.0-HBASE-0.98.1-HADOOP1 |
|
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.83s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 2.61s 3.0-HBASE-0.94.15-SECURITY |
| 1.96s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 2.82s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(active_visitor) count from AGGREGATION_TABLE | 2.68s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 2.71s 3.0-HBASE-0.94.15-SECURITY |
| 2.75s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 2.9s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(distinct active_visitor) count from AGGREGATION_TABLE | 3.04s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 3.06s 3.0-HBASE-0.94.15-SECURITY |
| 3.13s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 3.22s 4.0-HBASE-0.98.1-HADOOP1 |
|
select percentile_cont(0.9) within group (order by active_visitor asc) from AGGREGATION_TABLE | 3.04s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 3.1s 3.0-HBASE-0.94.15-SECURITY |
| 3.16s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 3.29s 4.0-HBASE-0.98.1-HADOOP1 |
|
select percentile_cont(0.1) within group (order by active_visitor desc) from AGGREGATION_TABLE | 2.99s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 3.03s 3.0-HBASE-0.94.15-SECURITY |
| 3.16s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 3.25s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(core), count(db), count(active_visitor) from AGGREGATION_TABLE | 3.57s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 3.68s 3.0-HBASE-0.94.15-SECURITY |
| 3.73s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 3.86s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(distinct core), count(distinct db), count(distinct active_visitor) from AGGREGATION_TABLE | 4.23s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 4.21s 3.0-HBASE-0.94.15-SECURITY |
| 4.39s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 4.49s 4.0-HBASE-0.98.1-HADOOP1 |
|
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 | 4.16s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 4.24s 3.0-HBASE-0.94.15-SECURITY |
| 4.43s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 4.58s 4.0-HBASE-0.98.1-HADOOP1 |
|
select core, count(db) count from AGGREGATION_TABLE group by CORE | 0.74s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.75s 3.0-HBASE-0.94.15-SECURITY |
| 0.77s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.87s 4.0-HBASE-0.98.1-HADOOP1 |
|
select core, count(distinct db) count from AGGREGATION_TABLE group by CORE | 2s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.94s 3.0-HBASE-0.94.15-SECURITY |
| 1.94s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 2.05s 4.0-HBASE-0.98.1-HADOOP1 |
|
select core, percentile_cont(0.9999) within group (order by db asc) from AGGREGATION_TABLE group by CORE | 2.06s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 2.03s 3.0-HBASE-0.94.15-SECURITY |
| 2.04s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 2.13s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(core) from AGGREGATION_TABLE where core IN (1,25,50,75,100) | 0.95s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.97s 3.0-HBASE-0.94.15-SECURITY |
| 0.99s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.07s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(core) from AGGREGATION_TABLE where core < 10 and db < 200 | 1.13s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.11s 3.0-HBASE-0.94.15-SECURITY |
| 1.14s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.25s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(core) from AGGREGATION_TABLE where core < 10 and active_visitor < 1000 | 1.1s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 2.11s 3.0-HBASE-0.94.15-SECURITY |
| 1.1s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 2.22s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(core) from AGGREGATION_TABLE where core > 90 | 1s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.99s 3.0-HBASE-0.94.15-SECURITY |
| 1.05s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.12s 4.0-HBASE-0.98.1-HADOOP1 |
|
LOAD DATA AGGREGATION_TABLE [2000000 ROWS] | 116.65s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 112.19s 3.0-HBASE-0.94.15-SECURITY |
| 124.99s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 137.4s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(1) from IN_LIKE_TABLE where K1 in ('Z', 'D', 'F', 'X') | 0.82s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.8s 3.0-HBASE-0.94.15-SECURITY |
| 1.02s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.89s 4.0-HBASE-0.98.1-HADOOP1 |
| select * from IN_LIKE_TABLE where K1 in ('A','B') and K2 in ('xxx1000000','xxx2000000','xxx2000001') | 0.01s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.01s 3.0-HBASE-0.94.15-SECURITY |
| 0.01s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.04s 4.0-HBASE-0.98.1-HADOOP1 |
|
select * from IN_LIKE_TABLE where K1 in ('A', 'C', 'E', 'F', 'H') and K2 like 'xxxxxx1%' | 0.01s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.01s 3.0-HBASE-0.94.15-SECURITY |
| 0.03s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.05s 4.0-HBASE-0.98.1-HADOOP1 |
|
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.55s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.48s 3.0-HBASE-0.94.15-SECURITY |
| 218.81s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 118.11s 4.0-HBASE-0.98.1-HADOOP1 |
|
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.45s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.49s 3.0-HBASE-0.94.15-SECURITY |
| 116.94s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 85.97s 4.0-HBASE-0.98.1-HADOOP1 |
|
LOAD DATA IN_LIKE_TABLE [2000000 ROWS] | 92.38s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 88.3s 3.0-HBASE-0.94.15-SECURITY |
| 103.84s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 107.38s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(*) from INDEXED_TABLE | 0.36s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.51s 3.0-HBASE-0.94.15-SECURITY |
| 0.47s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.99s 4.0-HBASE-0.98.1-HADOOP1 |
| select /*+ INDEX(INDEXED_TABLE idx1 idx2 idx3 idx4) */ count(*) from INDEXED_TABLE | 0.81s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.73s 3.0-HBASE-0.94.15-SECURITY |
| 1.04s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.28s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+ INDEX(INDEXED_TABLE ids1 ids2 ids3 ids4) */ count(*) from INDEXED_TABLE | 0.32s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.29s 3.0-HBASE-0.94.15-SECURITY |
| 0.4s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.43s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+NO_INDEX*/ count(*) from INDEXED_TABLE | 1.11s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.78s 3.0-HBASE-0.94.15-SECURITY |
| 1.24s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.41s 4.0-HBASE-0.98.1-HADOOP1 |
|
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.16s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.19s 3.0-HBASE-0.94.15-SECURITY |
| 0.17s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.58s 4.0-HBASE-0.98.1-HADOOP1 |
|
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.78s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.52s 3.0-HBASE-0.94.15-SECURITY |
| 2.04s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.99s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(core) from INDEXED_TABLE where core IN (1,100) | 0.09s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.11s 3.0-HBASE-0.94.15-SECURITY |
| 0.13s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.06s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+ INDEX(INDEXED_TABLE idx1 idx2 idx3 idx4) */ count(core) from INDEXED_TABLE where core IN (1,100) | 0.04s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.04s 3.0-HBASE-0.94.15-SECURITY |
| 0.05s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.04s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+ INDEX(INDEXED_TABLE ids1 ids2 ids3 ids4) */ count(core) from INDEXED_TABLE where core IN (1,100) | 0.06s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.09s 3.0-HBASE-0.94.15-SECURITY |
| 0.1s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.09s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core IN (1,100) | 1.43s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.25s 3.0-HBASE-0.94.15-SECURITY |
| 1.66s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.66s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(core) from INDEXED_TABLE where core IN (1,25,50,75,100) | 0.08s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.12s 3.0-HBASE-0.94.15-SECURITY |
| 0.13s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.14s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+ INDEX(INDEXED_TABLE idx1 idx2 idx3 idx4) */ count(core) from INDEXED_TABLE where core IN (1,25,50,75,100) | 0.11s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.1s 3.0-HBASE-0.94.15-SECURITY |
| 0.08s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.13s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+ INDEX(INDEXED_TABLE ids1 ids2 ids3 ids4) */ count(core) from INDEXED_TABLE where core IN (1,25,50,75,100) | 0.08s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.07s 3.0-HBASE-0.94.15-SECURITY |
| 0.11s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.1s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core IN (1,25,50,75,100) | 1.41s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.23s 3.0-HBASE-0.94.15-SECURITY |
| 1.63s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.72s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(core) from INDEXED_TABLE where core < 10 and db < 200 | 0.2s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.21s 3.0-HBASE-0.94.15-SECURITY |
| 0.21s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.65s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+ INDEX(INDEXED_TABLE idx1 idx2 idx3 idx4) */ count(core) from INDEXED_TABLE where core < 10 and db < 200 | 0.74s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.75s 3.0-HBASE-0.94.15-SECURITY |
| 0.67s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.63s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+ INDEX(INDEXED_TABLE ids1 ids2 ids3 ids4) */ count(core) from INDEXED_TABLE where core < 10 and db < 200 | 0.2s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.17s 3.0-HBASE-0.94.15-SECURITY |
| 0.2s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.25s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core < 10 and db < 200 | 1.46s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.49s 3.0-HBASE-0.94.15-SECURITY |
| 1.95s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.96s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(core) from INDEXED_TABLE where core < 100 and db < 2000 | 0.7s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.72s 3.0-HBASE-0.94.15-SECURITY |
| 0.9s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.75s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core < 100 and db < 2000 | 1.67s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.59s 3.0-HBASE-0.94.15-SECURITY |
| 2.16s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 2.13s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(core) from INDEXED_TABLE where core > 90 | 0.14s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.14s 3.0-HBASE-0.94.15-SECURITY |
| 0.16s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.19s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core > 90 | 1.34s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.36s 3.0-HBASE-0.94.15-SECURITY |
| 1.74s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.78s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(core) from INDEXED_TABLE where core > 0 | 0.46s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.48s 3.0-HBASE-0.94.15-SECURITY |
| 0.55s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.21s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE where core > 0 | 1.26s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.24s 3.0-HBASE-0.94.15-SECURITY |
| 1.88s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.84s 4.0-HBASE-0.98.1-HADOOP1 |
|
select db from INDEXED_TABLE where db >5 and db <7 order by db | 0.04s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.11s 3.0-HBASE-0.94.15-SECURITY |
| 0.08s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.06s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+NO_INDEX*/ db from INDEXED_TABLE where db >5 and db <7 order by db | 2.48s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 2.35s 3.0-HBASE-0.94.15-SECURITY |
| 4.18s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 4.02s 4.0-HBASE-0.98.1-HADOOP1 |
|
select db from INDEXED_TABLE order by db limit 10 | 0.1s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.1s 3.0-HBASE-0.94.15-SECURITY |
| 0.07s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.08s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+NO_INDEX*/ db from INDEXED_TABLE order by db limit 10 | 1.64s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.63s 3.0-HBASE-0.94.15-SECURITY |
| 2.62s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 2.66s 4.0-HBASE-0.98.1-HADOOP1 |
|
CREATE INDEX idx5 ON INDEXED_TABLE (CORE) INCLUDE (DB,ACTIVE_VISITOR) | 38.36s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 38.35s 3.0-HBASE-0.94.15-SECURITY |
| 48.97s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 51.39s 4.0-HBASE-0.98.1-HADOOP1 |
|
LOAD DATA INDEXED_TABLE [2000000 ROWS] | 456.04s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 444.97s 3.0-HBASE-0.94.15-SECURITY |
| 478.15s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 484.79s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(*) from INDEXED_TABLE_MUTABLE | 1.04s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.79s 3.0-HBASE-0.94.15-SECURITY |
| 1.24s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.72s 4.0-HBASE-0.98.1-HADOOP1 |
| select /*+ INDEX(INDEXED_TABLE_MUTABLE midx1 midx2 midx3 midx4) */ count(*) from INDEXED_TABLE_MUTABLE | 1.01s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.8s 3.0-HBASE-0.94.15-SECURITY |
| 1.14s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.26s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+ INDEX(INDEXED_TABLE_MUTABLE mids1 mids2 mids3 mids4) */ count(*) from INDEXED_TABLE_MUTABLE | 0.62s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.57s 3.0-HBASE-0.94.15-SECURITY |
| 0.64s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.52s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+NO_INDEX*/ count(*) from INDEXED_TABLE_MUTABLE | 1.17s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.91s 3.0-HBASE-0.94.15-SECURITY |
| 0.92s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.94s 4.0-HBASE-0.98.1-HADOOP1 |
|
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.39s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.41s 3.0-HBASE-0.94.15-SECURITY |
| 0.41s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.41s 4.0-HBASE-0.98.1-HADOOP1 |
|
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.68s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.56s 3.0-HBASE-0.94.15-SECURITY |
| 1.66s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.76s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(core) from INDEXED_TABLE_MUTABLE where core IN (1,100) | 0.13s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.12s 3.0-HBASE-0.94.15-SECURITY |
| 0.13s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.06s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+ INDEX(INDEXED_TABLE_MUTABLE midx1 midx2 midx3 midx4) */ count(core) from INDEXED_TABLE_MUTABLE where core IN (1,100) | 0.04s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.04s 3.0-HBASE-0.94.15-SECURITY |
| 0.04s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.05s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+ INDEX(INDEXED_TABLE_MUTABLE mids1 mids2 mids3 mids4) */ count(core) from INDEXED_TABLE_MUTABLE where core IN (1,100) | 0.11s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.11s 3.0-HBASE-0.94.15-SECURITY |
| 0.14s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.09s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE_MUTABLE where core IN (1,100) | 1.25s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.19s 3.0-HBASE-0.94.15-SECURITY |
| 1.33s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.41s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(core) from INDEXED_TABLE_MUTABLE where core IN (1,25,50,75,100) | 0.15s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.14s 3.0-HBASE-0.94.15-SECURITY |
| 0.15s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.1s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+ INDEX(INDEXED_TABLE_MUTABLE midx1 midx2 midx3 midx4) */ count(core) from INDEXED_TABLE_MUTABLE where core IN (1,25,50,75,100) | 0.07s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.08s 3.0-HBASE-0.94.15-SECURITY |
| 0.09s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.12s 4.0-HBASE-0.98.1-HADOOP1 |
|
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.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.13s 3.0-HBASE-0.94.15-SECURITY |
| 0.15s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.1s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE_MUTABLE where core IN (1,25,50,75,100) | 1.34s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.21s 3.0-HBASE-0.94.15-SECURITY |
| 1.33s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.38s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(core) from INDEXED_TABLE_MUTABLE where core < 10 and db < 200 | 0.49s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.47s 3.0-HBASE-0.94.15-SECURITY |
| 0.59s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.38s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+ INDEX(INDEXED_TABLE_MUTABLE midx1 midx2 midx3 midx4) */ count(core) from INDEXED_TABLE_MUTABLE where core < 10 and db < 200 | 0.38s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.42s 3.0-HBASE-0.94.15-SECURITY |
| 0.44s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.37s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+ INDEX(INDEXED_TABLE_MUTABLE mids1 mids2 mids3 mids4) */ count(core) from INDEXED_TABLE_MUTABLE where core < 10 and db < 200 | 0.53s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.46s 3.0-HBASE-0.94.15-SECURITY |
| 0.58s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.45s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE_MUTABLE where core < 10 and db < 200 | 1.49s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.42s 3.0-HBASE-0.94.15-SECURITY |
| 1.56s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.68s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(core) from INDEXED_TABLE_MUTABLE where core < 100 and db < 2000 | 1.27s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.24s 3.0-HBASE-0.94.15-SECURITY |
| 1.48s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.92s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE_MUTABLE where core < 100 and db < 2000 | 1.94s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.63s 3.0-HBASE-0.94.15-SECURITY |
| 1.69s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.69s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(core) from INDEXED_TABLE_MUTABLE where core > 90 | 0.18s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.16s 3.0-HBASE-0.94.15-SECURITY |
| 0.17s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.14s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE_MUTABLE where core > 90 | 1.34s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.28s 3.0-HBASE-0.94.15-SECURITY |
| 1.4s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.48s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(core) from INDEXED_TABLE_MUTABLE where core > 0 | 0.63s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.58s 3.0-HBASE-0.94.15-SECURITY |
| 0.7s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.66s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+NO_INDEX*/ count(core) from INDEXED_TABLE_MUTABLE where core > 0 | 1.6s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.28s 3.0-HBASE-0.94.15-SECURITY |
| 1.41s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.39s 4.0-HBASE-0.98.1-HADOOP1 |
|
select db from INDEXED_TABLE_MUTABLE where db >5 and db <7 order by db | 0.19s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.16s 3.0-HBASE-0.94.15-SECURITY |
| 0.25s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.04s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+NO_INDEX*/ db from INDEXED_TABLE_MUTABLE where db >5 and db <7 order by db | 2.54s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 2.38s 3.0-HBASE-0.94.15-SECURITY |
| 2.96s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 3.08s 4.0-HBASE-0.98.1-HADOOP1 |
|
select db from INDEXED_TABLE_MUTABLE order by db limit 10 | 1.37s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.07s 3.0-HBASE-0.94.15-SECURITY |
| 1.5s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.44s 4.0-HBASE-0.98.1-HADOOP1 |
|
select /*+NO_INDEX*/ db from INDEXED_TABLE_MUTABLE order by db limit 10 | 2.03s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.75s 3.0-HBASE-0.94.15-SECURITY |
| 1.77s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.79s 4.0-HBASE-0.98.1-HADOOP1 |
|
CREATE INDEX midx5 ON INDEXED_TABLE_MUTABLE (CORE) INCLUDE (DB,ACTIVE_VISITOR) | 36.49s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 39.28s 3.0-HBASE-0.94.15-SECURITY |
| 43.47s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 43.94s 4.0-HBASE-0.98.1-HADOOP1 |
|
LOAD DATA INDEXED_TABLE_MUTABLE [2000000 ROWS] | 866.36s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 721.82s 3.0-HBASE-0.94.15-SECURITY |
| 693.03s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 658.07s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(1) from TABLE_6CF where K1 in ('A', 'B', 'C', 'D') | 0.79s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.78s 3.0-HBASE-0.94.15-SECURITY |
| 0.96s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.02s 4.0-HBASE-0.98.1-HADOOP1 |
| select count(1) from TABLE_6CF where K1 in ('A', 'C') | 0.66s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.64s 3.0-HBASE-0.94.15-SECURITY |
| 0.93s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 0.79s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(*) from TABLE_6CF where f < 1000 | 1.46s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.45s 3.0-HBASE-0.94.15-SECURITY |
| 1.52s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.7s 4.0-HBASE-0.98.1-HADOOP1 |
|
select a,b,c,d,e,f from TABLE_6CF where B>1000 and B<2000 and f>1000 and f<2000 | 1.48s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 2.34s 3.0-HBASE-0.94.15-SECURITY |
| 1.56s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 2.7s 4.0-HBASE-0.98.1-HADOOP1 |
|
select sum(a),sum(b),sum(c),sum(d) from TABLE_6CF group by K1 | 6.04s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 6.02s 3.0-HBASE-0.94.15-SECURITY |
| 6s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 6.6s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(*) from TABLE_6CF group by A | 0.86s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 0.86s 3.0-HBASE-0.94.15-SECURITY |
| 1.06s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 1.04s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(*) from TABLE_6CF group by B | 3.23s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 3.36s 3.0-HBASE-0.94.15-SECURITY |
| 3.43s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 3.58s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(*) from TABLE_6CF where f < 10000 | 2.84s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 2.79s 3.0-HBASE-0.94.15-SECURITY |
| 3.01s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 3.12s 4.0-HBASE-0.98.1-HADOOP1 |
|
LOAD DATA TABLE_6CF [2000000 ROWS] | 107.7s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 106.48s 3.0-HBASE-0.94.15-SECURITY |
| 124.27s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 128.45s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(1) from TABLE_1CF where K1 in ('A', 'B', 'C', 'D') | 1.9s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.92s 3.0-HBASE-0.94.15-SECURITY |
| 2.28s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 2.4s 4.0-HBASE-0.98.1-HADOOP1 |
| select count(1) from TABLE_1CF where K1 in ('A', 'C') | 1.83s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.7s 3.0-HBASE-0.94.15-SECURITY |
| 1.98s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 2.16s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(*) from TABLE_1CF where f < 1000 | 2.3s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 2.3s 3.0-HBASE-0.94.15-SECURITY |
| 2.38s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 2.39s 4.0-HBASE-0.98.1-HADOOP1 |
|
select a,b,c,d,e,f from TABLE_1CF where B>1000 and B<2000 and f>1000 and f<2000 | 2.67s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 2.64s 3.0-HBASE-0.94.15-SECURITY |
| 3.33s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 3.16s 4.0-HBASE-0.98.1-HADOOP1 |
|
select sum(a),sum(b),sum(c),sum(d) from TABLE_1CF group by K1 | 2.4s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 2.43s 3.0-HBASE-0.94.15-SECURITY |
| 2.48s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 2.45s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(*) from TABLE_1CF group by A | 1.86s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 1.92s 3.0-HBASE-0.94.15-SECURITY |
| 2.04s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 2.02s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(*) from TABLE_1CF group by B | 1.98s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 2.04s 3.0-HBASE-0.94.15-SECURITY |
| 2.16s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 2.15s 4.0-HBASE-0.98.1-HADOOP1 |
|
select count(*) from TABLE_1CF where f < 10000 | 2.13s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 2.16s 3.0-HBASE-0.94.15-SECURITY |
| 2.26s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 2.26s 4.0-HBASE-0.98.1-HADOOP1 |
|
LOAD DATA TABLE_1CF [2000000 ROWS] | 98.94s V3.0.0-INCUBATING-RELEASE-HBASE-0.94.15-SECURITY |
| 98.82s 3.0-HBASE-0.94.15-SECURITY |
| 111.69s V4.0.0-INCUBATING-RELEASE-HBASE-0.98.1-HADOOP1 |
| 115.81s 4.0-HBASE-0.98.1-HADOOP1 |
|