The Omid project provides transactional support for key-value stores using Snapshot Isolation. Omid stands for Optimistically transactional Management in Datasources. At this stage of the project, HBase is the only supported data-store.
If you have any question, please take a look to the Wiki or contact us at [email protected] or read the online archives
Add UCs.
The main component of Omid is a server called the Status Oracle (TSO.) The TSO contains all the information needed to manage transactions. Applications requiring transactional support in key-value stores need to use the API provided by special components provided by Omid called Transactional Clients (TCs). TCs are in charge of connecting to the TSO and perform the required operations in data-stores. The TSO replicates transactional information to the TCs which just contact the TSO when they want to start a transaction or commit it.
The TSO uses BookKeeper as a Write-Ahead Log where it dumps all its state. In case of crash failures it is possible to restart the TSO without losing any commit information.
The core architecture of the software is described in more detail in the Technical Details section of the Wiki.
Omid uses Maven for its build system.
To compile Omid:
$ git clone https://github.com/yahoo/omid.git omid
$ cd omid
$ mvn install -DskipTests
Tests should run cleanly if you want to run them.
To test Omid you might want to run a benchmark.
To start the SO, run:
$ bin/omid.sh tso
To benchmark the TSO alone, run:
$ bin/omid.sh tsobench
The public API is in these classes:
src/main/java/com/yahoo/omid/transaction/TTable.java
src/main/java/com/yahoo/omid/transaction/Transaction.java
src/main/java/com/yahoo/omid/transaction/TransactionManager.java
For an example of usage, take a look to this class:
src/test/java/com/yahoo/omid/TestBasicTransaction.java
The logging preferences can be adjusted in src/main/resources/log4j.properties.
This project has been partially supported by the EU Comission through the Cumulo Nimbo project (FP7-257993).