running through testing the hbase20 binding, there's no logs from the client library (as there are in the earlier bindings).
Loading workload...
Starting test.
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
DBWrapper: report latency for each error is false and specific error codes to track for latency are: []
Looks like the hbase 1.2 and hbase 1.4 shaded jars incorrectly included a dependency on the slf4j-log4j12 bridge. so to have the same logging on the hbase 2.0 client we'll need to add it.
running through testing the
hbase20binding, there's no logs from the client library (as there are in the earlier bindings).Looks like the hbase 1.2 and hbase 1.4 shaded jars incorrectly included a dependency on the
slf4j-log4j12bridge. so to have the same logging on the hbase 2.0 client we'll need to add it.