Skip to content

Commit ff4342d

Browse files
Jonathan M Hsiehbusbey
authored andcommitted
Accumulo db driver for ycsb.
Based on YCSB++ http://www.pdl.cmu.edu/ycsb++/
1 parent 4791826 commit ff4342d

File tree

5 files changed

+658
-0
lines changed

5 files changed

+658
-0
lines changed

accumulo/pom.xml

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<parent>
5+
<groupId>com.yahoo.ycsb</groupId>
6+
<artifactId>root</artifactId>
7+
<version>0.1.4</version>
8+
</parent>
9+
<artifactId>accumulo-binding</artifactId>
10+
<name>Accumulo DB Binding</name>
11+
<dependencies>
12+
<dependency>
13+
<groupId>org.apache.accumulo</groupId>
14+
<artifactId>accumulo-core</artifactId>
15+
<version>${accumulo.version}</version>
16+
<exclusions>
17+
<exclusion>
18+
<groupId>org.apache.hadoop</groupId>
19+
<artifactId>hadoop-common</artifactId>
20+
</exclusion>
21+
<exclusion>
22+
<groupId>org.apache.thrift</groupId>
23+
<artifactId>thrift</artifactId>
24+
</exclusion>
25+
<exclusion>
26+
<groupId>org.apache.zookeeper</groupId>
27+
<artifactId>zookeeper</artifactId>
28+
</exclusion>
29+
</exclusions>
30+
</dependency>
31+
<dependency>
32+
<groupId>org.apache.zookeeper</groupId>
33+
<artifactId>zookeeper</artifactId>
34+
<version>3.3.1</version>
35+
</dependency>
36+
<dependency>
37+
<groupId>log4j</groupId>
38+
<artifactId>log4j</artifactId>
39+
<version>1.2.16</version>
40+
</dependency>
41+
<dependency>
42+
<groupId>junit</groupId>
43+
<artifactId>junit</artifactId>
44+
<version>4.8.1</version>
45+
</dependency>
46+
<dependency>
47+
<groupId>org.apache.hadoop</groupId>
48+
<artifactId>hadoop-core</artifactId>
49+
<version>0.20.203.0</version>
50+
</dependency>
51+
<dependency>
52+
<groupId>mysql</groupId>
53+
<artifactId>mysql-connector-java</artifactId>
54+
<version>5.1.14</version>
55+
</dependency>
56+
<dependency>
57+
<groupId>com.google.guava</groupId>
58+
<artifactId>guava</artifactId>
59+
<version>r08</version>
60+
</dependency>
61+
<dependency>
62+
<groupId>com.yahoo.ycsb</groupId>
63+
<artifactId>core</artifactId>
64+
<version>${project.version}</version>
65+
</dependency>
66+
</dependencies>
67+
<build>
68+
<plugins>
69+
<plugin>
70+
<groupId>org.apache.maven.plugins</groupId>
71+
<artifactId>maven-assembly-plugin</artifactId>
72+
<version>${maven.assembly.version}</version>
73+
<configuration>
74+
<descriptorRefs>
75+
<descriptorRef>jar-with-dependencies</descriptorRef>
76+
</descriptorRefs>
77+
<appendAssemblyId>false</appendAssemblyId>
78+
</configuration>
79+
<executions>
80+
<execution>
81+
<phase>package</phase>
82+
<goals>
83+
<goal>single</goal>
84+
</goals>
85+
</execution>
86+
</executions>
87+
</plugin>
88+
</plugins>
89+
</build>
90+
<repositories>
91+
<repository>
92+
<id>apache</id>
93+
<url>http://repository.apache.org/snapshots</url>
94+
</repository>
95+
</repositories>
96+
</project>

0 commit comments

Comments
 (0)