We have a strong requirement for Hive replication: To let users decide what database/tables to replicate (vs not - for example, temporary database/tables).
In order to fulfill that requirement, I am planning to utilize DBProperty and TBLProperty.
So the following Hive commands will enable the replication:
ALTER DATABASE <db> SET DBPROPERTY ("replication" = "true");
ALTER TABLE <table> SET TBLPROPERTY ("replication" = "true");
One possibility is to add the logic to TableCompareWorker.processTable().
Is this something that the Reair project will take on? Anybody else needs this?
--