DrV
DrV

Reputation: 23510

Persistent disk reliability and backups in GCE

(My apologies for this being a slightly off-SO question, but it seems that the GCE questions tend to be slightly loess tightly connected to programming.)

I am designing a data acquisition program to run on GCE. The data is collected onto a persistent disk. As the data is something I cannot afford to lose, I need to know something about the reliability of the persistent disks. I have been able to find three pieces of information:

The cloud storage comes with some reliability numbers, but is there some information for persistent disks? Without knowing any reliability estimates it is difficult to choose the backup regime. The opposite ends of the continuum are using hot backups with real time synchronization and taking regular deltas of the data (the data is append-only). In the latter case recovery takes much longer and will most probably involve manual bit-stitching. That can be afforded, if the MTBF is high enough.

I am not worried about brief downtimes, but I am worried about data corruption. The system is running on linux+ext4, so it should be resilient against unplanned downtime.

Upvotes: 3

Views: 1750

Answers (1)

Faizan
Faizan

Reputation: 1967

You can go through the following blog post which gives more info about Persistence disk https://cloud.google.com/developers/articles/compute-engine-disks-price-performance-and-persistence

Upvotes: 1

Related Questions