forked from britt/hivedb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
32 lines (24 loc) · 865 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
HiveDB is a Java based system for horizontally partitioning MySQL databases. The HiveDB architecture is optimized for
OLTP (Online transaction processing) datasets. HiveDB provides JDBC access to the database as well as providing
Hibernate support via Hibernate-Shards.
Here is what you will need in order to use HiveDB.
* Java 1.5+
* Maven
* MySQL 5.0+
* Building HiveDB from source
git clone git://github.com/britt/hivedb.git
cd hivedb
mvn install
# To install project files for your IDE use 'mvn eclipse:eclipse' or 'mvn idea:idea'
* Using HiveDB with Maven
Add the HiveDB repository to your pom.xml.
<repository>
<id>HiveDB</id>
<url>http://www.hivedb.org/maven/</url>
</repository>
Add HiveDB as a dependency.
<dependency>
<groupId>org.hivedb</groupId>
<artifactId>hivedb</artifactId>
<version>0.9.6-SNAPSHOT</version>
</dependency>