zhoujie ce10a23f5f Merge branch 'master' of zhoujie/hbase-sep into master | 6 years ago | |
---|---|---|
hbase-sep-api | 6 years ago | |
hbase-sep-impl | 6 years ago | |
hbase-sep-start | 6 years ago | |
hbase-sep-tools | 6 years ago | |
.gitignore | 6 years ago | |
LICENSE | 6 years ago | |
README.md | 6 years ago | |
pom.xml | 6 years ago |
The HBase Side-Effect Processor is a framework for handling HBase row mutation events (i.e. Put and Delete) asynchronously. The framework makes use of the built-in HBase replication functionality, and allows users to register EventListeners which will be notified when a row mutation occurs in HBase.
This approach is significantly different from the use of Coprocessors due to it being asynchronous -- the distribution of events and execution of event handlers has no direct impact on write throughput in HBase.
To get started with the HBase-SEP, try playing with the included demo sub-project, see the demo readme.
A blog post on the SEP and SEP monitoring: http://www.ngdata.com/the-hbase-side-effect-processor-and-hbase-replication-monitoring/
You can build the full hbase-indexer project as follows:
mvn clean install -DskipTests
The default build is linked to HBase 0.94. In order to build for HBase 0.98, run the following command:
mvn clean install -DskipTests -Dhbase.api=0.98