1

While Im reading about the Snapshot Technology...I found Copy-On-Write (COW) and Redirect-On-Write (ROW) a quite Confusing to Understand the actual Operations they are Committing to...Will Somebody Please Explain me How They are Working Actually...

Thank you

1 Answers1

7

COW copies the old value to a separate area in the snapshot before writing the new data in the original place. This means a file will stay contiguous. ROW writes to a new area, and keeps the original data in the snapshot. This saves the copy, so it is faster, but makes files noncontiguous.

stark
  • 12,615
  • 3
  • 33
  • 50