Using Apache Accumulo as the backing store for Apache Gora a tutorial
Using Apache Accumulo as the backing store for Apache Gora a tutorial Apache Gora (http://gora.apache.org/) provides an abstraction layer to work with various data storage engines. In this tutorial, well see how to use Gora with Apache Accumulo as the storage engine. I like to start projects with the Maven `pom.xml` file. So here is mine. Its important to use Accumulo 1.4.3 instead of the newly released 1.5.0 because of an API incompatibility. Otherwise, the `pom.xml` file is straightforward. <project ...> <modelVersion>4.0.0</modelVersion> <groupId>com.affy</groupId> <artifactId>pojos-in-accumulo</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>jar</packaging> <name>POJOs in Accumulo</name> <url>http://affy.com</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <!-- Dependency Versions --> <accumulo.version>1.4.3...