Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 1.14 KB

File metadata and controls

26 lines (18 loc) · 1.14 KB

This project implements an ExtendedRegexStringComparator for HBase that has additional RegEx engines.

The default upstream HBase version includes two:

  • JAVA
  • JONI

This projects implements a few more:

Please note that all of them support slightly different syntaxes.

Please note that the brics / Automaton one works differently than the others. The others use find() on Pattern to find substrings. As far as I can tell Automaton does not support this so the regex needs to match the whole string!

You can build the project using Maven:

mvn clean package

The resulting JAR file needs to be deployed in the HBase classpath.

This is completely untested. Use at your own risk!