Questions tagged [backup-strategies]
169 questions
4
votes
1 answer
How do I back up Redis sever RDB and AOF files for recovery to ensure minimal data loss?
Purpose:
I am trying to make backup copies of both dump.rdb every X time and appendonly.aof every Y time so if the files get corrupted for whatever reason (or even just AOF's appendonly.aof file) I can restore my data from the dump.rdb.backup…

lisa188
- 41
- 1
- 3
3
votes
3 answers
Backing up the DB vs. backing up the VM
We're serving a Django/Postgres site running on a VM hypervisor. We're now trying to figure out our back up strategy and have two probable options:
Back up the DB directly using pg_dump
Back up the VM directly by copying the VM image
I'm with the…

Mridang Agarwalla
- 43,201
- 71
- 221
- 382
3
votes
1 answer
How do I recover production data in App Engine that I accidentally deleted?
I deleted some data from my production App Engine app. Unfortunately I had the wrong table name in mind when I did so because I have two tables that have very similar names. I know the deployed code is versioned so you can roll back to a previous…

Keith
- 31
- 1
3
votes
0 answers
Does backing up a keycloak database backup everything?
I am wondering if simply backing up the keycloak database associated with postgres is enough so that if I every lose access to the keycloak instance. I can simply restore the database and everything will be smooth sailing?
P.S: I am using docker for…

A.J
- 315
- 4
- 17
3
votes
1 answer
Automatically delete old backups from S3 and move monthly to glacier
I have set up Gitlab to save a daily backup to an Amazon S3 bucket. I want to keep a monthly backup one year back on glacier and daily backups one week back on standard storage. Is this cleanup strategy viable and doable using S3 lifecycle rules? If…

Dschoni
- 3,714
- 6
- 45
- 80
3
votes
1 answer
Nexus Repository 3 backup
Recently I installed Nexus Repository 3 in OpenStack Cloud and I am using it for a while now. I would like to perform incremental backup of Nexus and thus securing our data.
How can one perform incremental backups of nexus data?

Rashmi
- 31
- 1
- 3
3
votes
2 answers
Backup/Recover Kubernetes' current state (Namespaces/Pods/Controllers/etc)
I would like to be able to get a description of my current state of the cluster so that in the future I would be able to recover from a failure. Aside from recreating all of the services from source/cli individually, what solutions are available?

townie
- 302
- 3
- 9
3
votes
1 answer
Backing up specific files before replacing them based on source folder contents in batch
I am a novice but trying to create a batch file that reads the folder contents of the source, compares the files to the destination, backs up the matches, and then moves the source files to the destination. I guess in a way the file contents in the…

Sid
- 107
- 4
3
votes
7 answers
Does anyone use Virtualization to create a quicker disaster recovery of a development environment?
I'm getting pretty tired of my development box dying and then I end up having to reinstall a laundry list of tools that I use in development.
This time I think I'm going to set the development environment up on a Virtual Box VM and save it to an…

leeand00
- 25,510
- 39
- 140
- 297
3
votes
4 answers
Does git duplicate all my files?
I am trying to implement a new backup system on a website using git. The virtual private server has 20GB space total with 5GB free.
When I run git add . at the /var/www (with my favorite .gitignore parameters) I have a gigantic git folder that…

Mikhail
- 7,749
- 11
- 62
- 136
2
votes
1 answer
Backup and recovery of hive flutter database offline in phone storage
I added backup and restore feature to the app. But it only works properly in debug mode and it doesn't work in the final version and on the real mobile.
Sometimes backup and restore works on the real phone, but when you delete the application and…

Hacker M.t.s
- 21
- 3
2
votes
1 answer
How to take backup and restore of apache ignite docker?
I am using apache ignite docker for my project as persistant storage. I need to take the whole backup of ignite data under the 'config' folder like marshaller, db, binary and log. I am using ignite:2.3.0.
Below is the docker compose configuration of…

Suvendu Ghosh
- 391
- 1
- 3
- 16
2
votes
2 answers
What is the point of having Geo-redundant recovery service vault with/without Cross region restore?
There are two back up configuration options for Azure Recovery Service Vault - LRS vs GRS
This is a question regarding Azure Recovery Service Vault.
How does geo-redundant enabled recovery service vault being handled when its residing region failed…

csamleong
- 769
- 1
- 11
- 24
2
votes
1 answer
AWS SQS BackUp Solution Design
Problem Statement
Informal State
We have some scenarios where the integration layer (a combination of AWS SNS/SQS components and etc.) is also responsible for the data distribution to target systems. Those are mostly async flows. In this case, we…

Indrit
- 99
- 1
- 9
2
votes
1 answer
Detect changes in NGRX store before closing
I am using NGRX in my Angular app and I allow users to switch between different versions of my store which are stored and reloaded from a database. I would like to be able to detect when changes have been made to the store but have not been saved so…

james Makinde
- 943
- 3
- 17
- 36