Created 09-18-2018 09:10 PM
Hello,
We are trying to handle Inserts/Updates/Deletes in Nifi . Currently attached the flow which is taking longer time to process the records and inserts into Hbase . I need to use Compositeprimarykey(ServerSerialno,ServerName) .Based on the CompositeKey will do the Inserts/Updates/Deletes.Need to boost the performance by altering the flow/configs.Kindly assist me to use the right flow to achieve this.
Attached the flow .
Created 09-19-2018 01:46 AM
Attaching the right flow:hbase-iud.xml
Created 09-19-2018 06:58 PM
@Shu Could you please check on this
Created 09-20-2018 01:56 AM
Consider using PutHBaseRecord processor instead of PutHBaseJson and use UpdateRecord processor to add the CompositePrimaryKey to the json doc.
Then use the CompositePrimaryKey field as row identifier for the PutHBaseRecord processor and adjust the BatchSize property value to get max number of put's into HBase.