Member since
06-20-2016
4
Posts
0
Kudos Received
0
Solutions
06-21-2016
01:42 PM
@Ted Yu Thank you for the help. Maybe you can give me an example how to use it, because I get only errors and the examples which I found are not for the shell.
... View more
06-21-2016
12:03 PM
Hey, I have a hbase table with 4 columns. I want to search for a string in column1 and get the value of column2 from every row, where I get a match. I works with these two codelines scan
'table', { COLUMNS => 'column1', FILTER =>
"ValueFilter(=, 'substring:value')"} Then foreach row:
get 'table', $row, {COLUMNS => 'column2'} How can I get the result (e.g. 'value1, value2, value3') by executing only one command? best regards J.H.
... View more
Labels:
- Labels:
-
Apache HBase
06-21-2016
11:49 AM
thank you very much for the fast answer. I will try to solve this problem by executing a script which get the data from the hbase table.
... View more
06-20-2016
09:18 PM
Hey, I have a HBase table with data and I want to add this data to an HttpResponse. I can access the data with the GetHBase processor and I can also send an HttpResponse with the HandleHttpResponse processor. But until know, I can not combine both --> pull the data from HBase and add this content to the FlowFile of the HttpRequest to send it with the HttpResponse to the client. How can I solve this problem with NiFi? Do you have any example? best regards JH
... View more
Labels:
- Labels:
-
Apache HBase
-
Apache NiFi