Hello Community,
I'm working on a requirement where I'm injesting near real time data into HBase (every 5 mins). Apart from main table I have created one more HBase table which has a rowkey as timemodified and it stores current processed time with now function. I'm using this mainly for maintenance purpose so that I can look into the table for last processed time. Since I'm using fixed row key my value is overwritten always. My problem is that this table is updated for every flow file which makes my entire flow very slow. Is there a way to use wait and notify processors in this scenario ?
Or may be there is a different way to store last processed time.