An Azure backup service that provides built-in management at scale.
Tai Nguyen hi and thx for join us here at Q&A platform )))
short answer merge does not happen on compressed/encrypted blobs, what actually happens under the hood, MARS doesnt treat those VHDs like real disk files u can just merge bit by bit those “VHDs” are more like logical containers for changed blocks, flow is roughly
agent takes snapshot (VSS)
figures out changed blocks
packages them into chunks
compress + encrypt
send to vault
so what lands in Azure is already encrypted block data, not something u can directly merge like a VHD on disk
then on Azure side it does
decrypt
decompress
reconstruct block map
and updates the recovery point chain, so “merge” = not file merge, its block-level consolidation in the backup store. Think more like incremental blocks get applied to previous state to build new recovery point, so to ur questions.
Is it decompressed/decrypted before merge yes, logically inside the service pipeline, merge in encrypted/compressed form
no, not in raw form. Azure has to process it to understand blocks data integrity part.
handled by
checksums per chunk
encryption integrity checks
VSS consistency on capture
if any chunk fails validation backup fails, not partially merged
rgds,
Alex