use of org.apache.rya.export.accumulo.util.AccumuloInstanceDriver in project incubator-rya by apache.
the class StoreToStoreIT method getParentAccumulo.
private static TimestampPolicyAccumuloRyaStatementStore getParentAccumulo() throws Exception {
final AccumuloInstanceDriver driver = new AccumuloInstanceDriver(RYA_INSTANCE, type, true, false, true, "TEST1", PASSWORD, RYA_INSTANCE, tablePrefix, auths, "");
driver.setUp();
final AccumuloRyaStatementStore store = new AccumuloRyaStatementStore(driver.getDao(), tablePrefix, RYA_INSTANCE);
drivers.add(driver);
return new TimestampPolicyAccumuloRyaStatementStore(store, currentDate);
}
Aggregations