0 / 10 flipped
Concept
What are the six dimensions of backup planning?
Answer
1. Data volume β how much to back up
2. Backup type β full, incremental, snapshot
3. Media β tape, disk, cloud
4. Storage location β on-site, off-site, cloud
5. Software β backup and recovery tools
6. Schedule β hourly, daily, weekly, monthly
2. Backup type β full, incremental, snapshot
3. Media β tape, disk, cloud
4. Storage location β on-site, off-site, cloud
5. Software β backup and recovery tools
6. Schedule β hourly, daily, weekly, monthly
Concept
On-site backup vs. off-site backup β when is each used?
Answer
On-site: Same physical location; no WAN needed; fast restore; lower cost; vulnerable to site disasters (fire, flood).
Off-site: Geographically separate; requires WAN/internet to restore; slower; protects against site-level disasters.
Most organizations use both β on-site for fast everyday recovery, off-site for disaster protection.
Off-site: Geographically separate; requires WAN/internet to restore; slower; protects against site-level disasters.
Most organizations use both β on-site for fast everyday recovery, off-site for disaster protection.
Term
Recovery Point Objective (RPO)
Definition
The maximum acceptable amount of data loss following an incident, expressed as a time interval. RPO determines backup frequency: RPO of 1 hour β hourly backups; RPO of 24 hours β daily backups. If failure occurs just before a backup job runs, data changes since the last backup are lost. Lower RPO = more frequent backups = more storage and bandwidth consumed.
Concept
Why is backup encryption critically important for off-site and cloud backups?
Answer
Backup media contains a complete copy of organizational data β highly attractive to attackers. If unencrypted media is stolen in transit, improperly disposed of, or accessed at an off-site facility, it constitutes a full data breach. Encryption ensures stolen media contains only unreadable ciphertext. Critical dependency: the recovery key must be stored separately from the media and must be accessible when needed.
Term
Snapshot
Definition
A point-in-time copy of an entire system (VM, volume, or cloud resource) captured instantly. The initial snapshot is a full copy; subsequent snapshots are incremental (only changes since the previous snapshot). Example: Monday 100 GB full β Tuesday 40 GB changed β Wednesday 20 GB new. Fast to create, fast to revert, best used for VM and cloud infrastructure. Especially useful before major changes β revert in minutes if the change causes problems.
Concept
Why must organizations test backup restores rather than just verify backup jobs completed?
Answer
Backup jobs can complete successfully while producing corrupt or incomplete files. A "successful" backup log does not prove the data can be restored. Recovery testing requires actually restoring to a test environment and verifying that applications can use the data correctly. Discovering a corrupted backup during an actual disaster is too late. Periodic audits (weekly, monthly, quarterly) confirm the backup program is working.
Term
Replication
Definition
Continuous near-real-time synchronization of data from a source to one or more remote destinations. Every change is propagated within seconds or minutes. Ideal for hot site DR β the replicated site always has current data. Critical limitation: replication propagates all changes including ransomware encryption and accidental deletions. Replication cannot replace periodic backups β periodic backups preserve historical recovery points that predate a data corruption event.
Concept
Why does replication not protect against ransomware, while periodic backups do?
Answer
Replication propagates all changes in near-real-time β including ransomware encrypting files. Within minutes of infection, the replicated site receives and stores the encrypted files, overwriting the last good copies. Periodic backups are point-in-time snapshots that captured the data in a clean state before the ransomware struck β restoring from backup recovers the pre-infection data. This is why both replication and periodic backup are needed together.
Term
Journaling
Definition
A write-ahead logging technique that prevents storage corruption from interrupted write operations. Before writing to storage, the system records the intended change in a journal log. If power fails during the journal write β storage is untouched and clean. If power fails during the storage write β the journal entry allows the system to complete the operation automatically at next startup. Eliminates the need for backup restores caused by power-interruption corruption. Standard in modern file systems (NTFS, ext4) and databases.
Concept
What happens if power fails DURING the journal write (before the storage write begins)?
Answer
Nothing was written to the actual storage target yet β storage remains in exactly the pre-write state, fully consistent. The incomplete journal entry is discarded at startup. No corruption occurred; no backup restore is needed. The only data "lost" is the in-flight operation that had not yet been committed β which was not yet visible to applications anyway. This is the safe failure mode of journaling.