I plan to take backup by cbbackupmgr periodically ( Let’s say once a day) and hourly
insert/update documents in the Couchbase bucket from csv files in a file system.
I am thinking about a recovery scenario in case of deleting a bucket by mistake.
My steps of recovery as follows:
- recover the bucket from the backup taken by cbbackupmgr.
- run batches again by csv files has been applied after the backup.
If the last backup started 0:00 AM 1st Nov, 2016, is it enough to apply files after generated
0:00 AM ? I am worrying about documents are not persisted (exist on RAM cache but not on disk).
I would like to guarantee the at least once semantics that means no data lost but same updates
are acceptable.
Thanks,