- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
how to retrieve all versions of rows from hbase table through Nifi
- Labels:
-
Apache HBase
-
Apache NiFi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Is there any way to retrieve all versions of a rowkey from hbase table using nifi
Created ‎03-26-2021 12:12 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello @Keshu
While I am not familiar with Nifi to provide an exact answer, HBase allows VERSION to fetch all versions of a Table. Assuming a Table has been configured with VERSION => 5, We can use Command "scan 'Table_Name', {VERSIONS => 5}" to fetch all Versions from the Table. You may be familiar with the above, yet putting the Update, if you can adjust the Nifi Processor to query the HBase Table as above (If Nifi Processor offers such functionality).
I shall allow the Nifi Gurus on the Community to get back to you with the exact requirement.
- Smarak
Created on ‎05-12-2023 09:35 AM - edited ‎05-12-2023 09:38 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If the Hbase server has web Hbase running you can use a REST call and NiFis InvokeHTTP to get versions. Note the v=999. Newer processors may return what you need.
https://yourURL/gateway/cdp-proxy-api/hbase/<databasename>:${hbaseTable}/<yourHbasekey>/<col:famly>?v=999
