in storehaus-hbase/src/main/scala/com/twitter/storehaus/hbase/HBaseByteArrayStore.scala [29:44]
def apply(
quorumNames: Seq[String],
table: String,
columnFamily: String,
column: String,
createTable: Boolean,
pool: HTablePool,
conf: Configuration,
threads: Int
): HBaseByteArrayStore = {
val store = new HBaseByteArrayStore(
quorumNames, table, columnFamily, column, createTable, pool, conf, threads)
store.validateConfiguration()
store.createTableIfRequired()
store
}