streams-plugin-hbase generates resources from json schemas to assist with indexing of json data using Apache HBase.
Output will be placed in target/generated-resources/hbase by default
Run within a module containing a src/main/jsonschema directory
mvn org.apache.streams.plugins:streams-plugin-hbase:0.4-incubating:hbase
Embed within your own java code
StreamsHbaseGenerationConfig config = new StreamsHbaseGenerationConfig(); config.setSourceDirectory("src/main/jsonschema"); config.setTargetDirectory("target/generated-resources"); StreamsHbaseResourceGenerator generator = new StreamsHbaseResourceGenerator(config); generator.run();