The data is sourced from a different system and is loaded into an HBase table using a replication process.
The target table in Hbase is called Hbasetbl1
Can I create a custom column "HBase_Created_Date" which creates the timestamp of when a row is inserted/updated in this target table?
Example:
Source table: tbl1
| Id | Name | Created_Date | Updated_Date | 
| 1 | Abc | 01-04-2019 14:00 | 01-04-2019 14:10 | 
Let's say the replication process, brings in the source row to HBase at 14:30
Target Table: Hbasetbl1
| Id | Name | Created_Date | Updated_Date | HBase_Created_Date | 
| 1 | Abc | 01-04-2019 14:00 | 01-04-2019 14:10 | 01-04-2019 14:30 |