-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathREADME.txt
21 lines (15 loc) · 894 Bytes
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
This project is a transactional and indexing extension for hbase.
Installation:
Drop the jar in the classpath of your application
Configuration:
One of the two regionserver extensions must be turned on by setting the appropriate configuration
(in hbase-site.xml).
To enable just the indexing extension: set
'hbase.regionserver.class' to 'org.apache.hadoop.hbase.ipc.IndexedRegionInterface'
and
'hbase.regionserver.impl' to 'org.apache.hadoop.hbase.regionserver.tableindexed.IndexedRegionServer'
To enable the transactional extension (which includes the indexing): set
'hbase.regionserver.class' to 'org.apache.hadoop.hbase.ipc.TransactionalRegionInterface'
and
'hbase.regionserver.impl' to 'org.apache.hadoop.hbase.regionserver.transactional.TransactionalRegionServer'
For more details, looks at the package.html in the appropriate client package of the source.