a2d512771a | ||
---|---|---|
.. | ||
src | ||
README.md | ||
pom.xml |
README.md
HBase (2.y) Driver for YCSB
This driver is a binding for the YCSB facilities to operate against a HBase 2 cluster, using a shaded client that tries to avoid leaking third party libraries.
1. Start a HBase Server
You need to start a single node or a cluster to point the client at. Please see Apache HBase Reference Guide for more details and instructions.
2. Set up YCSB
Download the latest YCSB file. Follow the instructions.
3. Create a HBase table for testing
For best results, use the pre-splitting strategy recommended in HBASE-4163:
hbase(main):001:0> n_splits = 200 # HBase recommends (10 * number of regionservers)
hbase(main):002:0> create 'usertable', 'family', {SPLITS => (1..n_splits).map {|i| "user#{1000+i*(9999-1000)/n_splits}"}}
Failing to do so will cause all writes to initially target a single region server.
4. Run the Workload
Before you can actually run the workload, you need to "load" the data first.
You should specify a HBase config directory(or any other directory containing your hbase-site.xml) and a table name and a column family(-cp is used to set java classpath and -p is used to set various properties).
bin/ycsb load hbase2 -P workloads/workloada -cp /HBASE-HOME-DIR/conf -p table=usertable -p columnfamily=family
Then, you can run the workload:
bin/ycsb run hbase2 -P workloads/workloada -cp /HBASE-HOME-DIR/conf -p table=usertable -p columnfamily=family
Please see the general instructions in the doc
folder if you are not sure how it all works. You can apply additional properties (as seen in the next section) like this:
bin/ycsb run hbase2 -P workloads/workloada -cp /HBASE-HOME-DIR/conf -p table=usertable -p columnfamily=family -p clientbuffering=true
Configuration Options
Following options can be configurable using -p
.
columnfamily
: The HBase column family to target.debug
: If true, debugging logs are activated. The default is false.hbase.usepagefilter
: If true, HBase PageFilters are used to limit the number of records consumed in a scan operation. The default is true.principal
: If testing need to be done against a secure HBase cluster using Kerberos Keytab, this property can be used to pass the principal in the keytab file.keytab
: The Kerberos keytab file name and location can be passed through this property.clientbuffering
: Whether or not to use client side buffering and batching of write operations. This can significantly improve performance and defaults to true.writebuffersize
: The maximum amount, in bytes, of data to buffer on the client side before a flush is forced. The default is 12MB. Only used whenclientbuffering
is true.durability
: Whether or not writes should be appended to the WAL. Bypassing the WAL can improve throughput but data cannot be recovered in the event of a crash. The default is true.hbase.usescanvaluefiltering
: If true, the HBase scan operations will be configured to apply server-side filtering on the values during Scan operations. This means that only those records will be returned from HBase, where the values (byte arrays) are greater/less/etc. than the byte array defined in thehbase.scanfiltervalue
parameter. The type of the filtering can be set in thehbase.scanfilteroperator
parameter. This feature is disabled by default.hbase.scanfilteroperator
: specifying the server-side filter operator to use during scan operations. One of the following strings: less_or_equal, greater_or_equal, greater, less, not_equal, equal. The default value is less_or_equal. This parameter is only used, ifhbase.usescanvaluefiltering
is set to true.hbase.scanfiltervalue
: specifying the server-side filter value to use during scan operations. It is defined as a hexadecimal string, will be translated into a byte array. This parameter is only used ifhbase.usescanvaluefiltering
is set to true. By default it is a 200 long string "7FFFFFF...", as the core workload is defining 100 bytes long random byte arrays as values. Using the defaulthbase.scanfiltervalue
and defaulthbase.scanfilteroperator
will result in the filtering of approximately half of the values.
Additional HBase settings should be provided in the hbase-site.xml
file located in your /HBASE-HOME-DIR/conf
directory. Typically this will be /etc/hbase/conf
.