You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This isn't a change that requires any actual coding work in this repo, it's just a reminder to figure out fairly soon how to set up a reasonable periodic backup process for the database server in case something bad happens to the live site at playarimaa.org. It might as well go in with all of the other issues here since it's a convenient place to add it to make sure it's not forgotten.
The text was updated successfully, but these errors were encountered:
Alternatively, you can use the native backup tools for the database to generate an ASCII file, then store it somewhere. (Amazon S3 is the standard storage option and that's what I'd recommend. It costs between 1-3 cents per GB per month. If that's too expensive you can look at Amazon Glacier.)
Taking an EBS snapshot doesn't place load on the application or web server, which is cool. The EBS snapshot isn't going to contain anything cached by the database or the operating system, so you can either flush the data or shut down the database and unmount the EBS drive, or just accept that it's not going to be an 100% complete snapshot. The database native backup tool will presumably give you a more complete and up-to-date snapshot in exchange for plenty of load on the database and some locked database tables while the query is in progress.
This isn't a change that requires any actual coding work in this repo, it's just a reminder to figure out fairly soon how to set up a reasonable periodic backup process for the database server in case something bad happens to the live site at playarimaa.org. It might as well go in with all of the other issues here since it's a convenient place to add it to make sure it's not forgotten.
The text was updated successfully, but these errors were encountered: