Skip to content

Commit

Permalink
KYLIN-1636 fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
liyang-kylin committed May 1, 2016
1 parent 0ea4d36 commit 5c3990e
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,12 @@
import org.apache.kylin.gridtable.IGTWriter;
import org.apache.kylin.gridtable.benchmark.SortedGTRecordGenerator;
import org.apache.kylin.metadata.datatype.DataType;
import org.junit.After;
import org.junit.Ignore;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* Benchmark of processing 10 million GTRecords. 5 dimensions of type int4, and 2 measures of type long8.
*/
@Ignore
public class HBaseScannerBenchmark {

static final Logger logger = LoggerFactory.getLogger(HBaseScannerBenchmark.class);
Expand Down Expand Up @@ -101,7 +97,6 @@ private void buildTable() throws IOException {
logger.info(count + " rows written, " + speed(t) + "K row/sec");
}

@Test
public void testScan() throws IOException {
int rounds = 5;

Expand Down Expand Up @@ -150,7 +145,6 @@ private int speed(long t) {
return (int) (N / sec / 1000);
}

@After
public void cleanup() throws IOException {
simpleStore.cleanup();
}
Expand Down

0 comments on commit 5c3990e

Please sign in to comment.