use of mil.nga.giat.geowave.datastore.accumulo.AccumuloDataStore in project incubator-rya by apache.
the class GeoWaveGTQueryTest method setup.
@BeforeClass
public static void setup() throws AccumuloException, AccumuloSecurityException, IOException, InterruptedException {
tempAccumuloDir = Files.createTempDir();
accumulo = MiniAccumuloClusterFactory.newAccumuloCluster(new MiniAccumuloConfigImpl(tempAccumuloDir, ACCUMULO_PASSWORD), GeoWaveGTQueryTest.class);
accumulo.start();
dataStore = new AccumuloDataStore(new BasicAccumuloOperations(accumulo.getZooKeepers(), accumulo.getInstanceName(), ACCUMULO_USER, ACCUMULO_PASSWORD, TABLE_NAMESPACE));
ingestCannedData();
}
Aggregations