Hello,
I'm trying to do an incremental backup to a target DIR, such that only the delta is written to the new target. When trying to do backups, the latest backup contains the entire backup set as opposed to a delta.
eg.
put(k1,v1)
backup
put(k2,v2)
backup
restore
k1,v1
k2,v2
what I want, is that I can restore only the delta, which means, k2,v2 only.
Is there a way such that I can restore only the delta?
Regards,
Shiva