HBASE-13381 Expand TestSizeFailures to include small scans (Josh Elser)

This commit is contained in:
tedyu 2015-04-09 17:57:57 -07:00
parent 66f7bf4615
commit 3cd929eea2
1 changed files with 104 additions and 90 deletions

View File

@ -20,12 +20,10 @@ package org.apache.hadoop.hbase.client;
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertEquals;
import java.io.IOException;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays;
import java.util.LinkedList; import java.util.LinkedList;
import java.util.List; import java.util.List;
import java.util.TreeSet; import java.util.Map.Entry;
import org.apache.commons.logging.Log; import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory; import org.apache.commons.logging.LogFactory;
@ -41,16 +39,17 @@ import org.junit.BeforeClass;
import org.junit.Test; import org.junit.Test;
import org.junit.experimental.categories.Category; import org.junit.experimental.categories.Category;
import com.google.common.collect.Maps;
@Category(LargeTests.class) @Category(LargeTests.class)
public class TestSizeFailures { public class TestSizeFailures {
final Log LOG = LogFactory.getLog(getClass()); static final Log LOG = LogFactory.getLog(TestSizeFailures.class);
protected final static HBaseTestingUtility TEST_UTIL = new HBaseTestingUtility(); protected final static HBaseTestingUtility TEST_UTIL = new HBaseTestingUtility();
private static byte [] FAMILY = Bytes.toBytes("testFamily"); private static byte [] FAMILY = Bytes.toBytes("testFamily");
protected static int SLAVES = 1; protected static int SLAVES = 1;
private static TableName TABLENAME;
private static final int NUM_ROWS = 1000 * 1000, NUM_COLS = 10;
/**
* @throws java.lang.Exception
*/
@BeforeClass @BeforeClass
public static void setUpBeforeClass() throws Exception { public static void setUpBeforeClass() throws Exception {
// Uncomment the following lines if more verbosity is needed for // Uncomment the following lines if more verbosity is needed for
@ -61,23 +60,9 @@ public class TestSizeFailures {
Configuration conf = TEST_UTIL.getConfiguration(); Configuration conf = TEST_UTIL.getConfiguration();
conf.setBoolean("hbase.table.sanity.checks", true); // ignore sanity checks in the server conf.setBoolean("hbase.table.sanity.checks", true); // ignore sanity checks in the server
TEST_UTIL.startMiniCluster(SLAVES); TEST_UTIL.startMiniCluster(SLAVES);
}
/** // Write a bunch of data
* @throws java.lang.Exception TABLENAME = TableName.valueOf("testSizeFailures");
*/
@AfterClass
public static void tearDownAfterClass() throws Exception {
TEST_UTIL.shutdownMiniCluster();
}
/**
* Basic client side validation of HBASE-13262
*/
@Test
public void testScannerSeesAllRecords() throws Exception {
final int NUM_ROWS = 1000 * 1000, NUM_COLS = 10;
final TableName TABLENAME = TableName.valueOf("testScannerSeesAllRecords");
List<byte[]> qualifiers = new ArrayList<>(); List<byte[]> qualifiers = new ArrayList<>();
for (int i = 1; i <= 10; i++) { for (int i = 1; i <= 10; i++) {
qualifiers.add(Bytes.toBytes(Integer.toString(i))); qualifiers.add(Bytes.toBytes(Integer.toString(i)));
@ -107,56 +92,85 @@ public class TestSizeFailures {
puts.add(p); puts.add(p);
if (puts.size() == 1000) { if (puts.size() == 1000) {
Object[] results = new Object[1000]; table.batch(puts, new Object[1000]);
try {
table.batch(puts, results);
} catch (IOException e) {
LOG.error("Failed to write data", e);
LOG.debug("Errors: " + Arrays.toString(results));
}
puts.clear(); puts.clear();
} }
} }
if (puts.size() > 0) { if (puts.size() > 0) {
Object[] results = new Object[puts.size()]; table.batch(puts, new Object[puts.size()]);
try { }
table.batch(puts, results);
} catch (IOException e) {
LOG.error("Failed to write data", e);
LOG.debug("Errors: " + Arrays.toString(results));
} }
} }
// Flush the memstore to disk @AfterClass
TEST_UTIL.getHBaseAdmin().flush(TABLENAME); public static void tearDownAfterClass() throws Exception {
TEST_UTIL.shutdownMiniCluster();
}
TreeSet<Integer> rows = new TreeSet<>(); /**
long rowsObserved = 0l; * Basic client side validation of HBASE-13262
long entriesObserved = 0l; */
@Test
public void testScannerSeesAllRecords() throws Exception {
Connection conn = TEST_UTIL.getConnection();
try (Table table = conn.getTable(TABLENAME)) {
Scan s = new Scan(); Scan s = new Scan();
s.addFamily(FAMILY); s.addFamily(FAMILY);
s.setMaxResultSize(-1); s.setMaxResultSize(-1);
s.setBatch(-1); s.setBatch(-1);
s.setCaching(500); s.setCaching(500);
ResultScanner scanner = table.getScanner(s); Entry<Long,Long> entry = sumTable(table.getScanner(s));
// Read all the records in the table long rowsObserved = entry.getKey();
for (Result result : scanner) { long entriesObserved = entry.getValue();
rowsObserved++;
String row = new String(result.getRow());
rows.add(Integer.parseInt(row));
while (result.advance()) {
entriesObserved++;
// result.current();
}
}
// Verify that we see 1M rows and 10M cells // Verify that we see 1M rows and 10M cells
assertEquals(NUM_ROWS, rowsObserved); assertEquals(NUM_ROWS, rowsObserved);
assertEquals(NUM_ROWS * NUM_COLS, entriesObserved); assertEquals(NUM_ROWS * NUM_COLS, entriesObserved);
} }
}
conn.close(); /**
* Basic client side validation of HBASE-13262
*/
@Test
public void testSmallScannerSeesAllRecords() throws Exception {
Connection conn = TEST_UTIL.getConnection();
try (Table table = conn.getTable(TABLENAME)) {
Scan s = new Scan();
s.setSmall(true);
s.addFamily(FAMILY);
s.setMaxResultSize(-1);
s.setBatch(-1);
s.setCaching(500);
Entry<Long,Long> entry = sumTable(table.getScanner(s));
long rowsObserved = entry.getKey();
long entriesObserved = entry.getValue();
// Verify that we see 1M rows and 10M cells
assertEquals(NUM_ROWS, rowsObserved);
assertEquals(NUM_ROWS * NUM_COLS, entriesObserved);
}
}
/**
* Count the number of rows and the number of entries from a scanner
*
* @param scanner
* The Scanner
* @return An entry where the first item is rows observed and the second is entries observed.
*/
private Entry<Long,Long> sumTable(ResultScanner scanner) {
long rowsObserved = 0l;
long entriesObserved = 0l;
// Read all the records in the table
for (Result result : scanner) {
rowsObserved++;
while (result.advance()) {
entriesObserved++;
}
}
return Maps.immutableEntry(rowsObserved,entriesObserved);
} }
} }