Class ReplicationMetadataRocksDBStoragePartition


public class ReplicationMetadataRocksDBStoragePartition extends RocksDBStoragePartition
Extends RocksDBStoragePartition to store per-key replication metadata (RMD) alongside values using separate RocksDB column families. Used in active/active replication mode for deterministic conflict resolution (DCR). The RMD tracks record-level and field-level timestamps for conflict resolution.
                      Single RocksDB Instance

   CF: "default"                CF: "timestamp_metadata"
   +-------+-------------+      +-------+---------------------+
   | Key   | Value       |      | Key   | Replication MD      |
   +-------+-------------+      +-------+---------------------+
   | key_1 | value_1     |      | key_1 | rmd for key_1       |
   | key_2 | value_2     |      | key_2 | rmd for key_2       |
   | key_3 | (deleted)   |      | key_3 | rmd for key_3       |
   +-------+-------------+      +-------+---------------------+