Hi, We are using NiFi 1.3.0.
Trying to build a template that could take data from hbase and push into relational store (I know this is little crazy requirement☺). Using below flow to achieve this: GetHBase > EvaluateJSONPath (to extract “cells” for all column values) > ReplaceText (To remove columnfamily prefix) > ConvertJSONToSQL > PutSQL However, GetHBase doesn’t include rowId into “cells”, hence I am trying to find a way to combine contents of “row” and “cells” of GetHBase into a single JSON that can be used as input to ConverJSONToSql. Here I need rowId to be included into sql insert as primary key column value. Appreciate any thoughts here. One option here is writing customer processor, trying to explore any other options before attempting to write customer processor. Thanks in advance. Thanks, Ravi Papisetti