Skip to main content
  1. Glossary/

Read-Modify-Write

·59 words·1 min·
Jaume Sabater
Author
Jaume Sabater
CTO and systems engineer

Read-Modify-Write (RMW) is a term used in storage systems to describe a process where a read operation is performed to retrieve data, followed by a modification of that data, and finally a write operation to store the modified data back.

This cycle can lead to inefficiencies, especially in systems like ZFS, where it can cause fragmentation and performance issues.

Related