Every fast write moves work somewhere else
- Every storage engine has to decide what must finish before it tells a client that a write succeeded.
- The quickest answer is to return after copying the bytes into memory.
- A local durable write waits for fdatasync() on an SSD in the database host.
Unverified
- Every storage engine has to decide what must finish before it tells a client that a write succeeded.
- The quickest answer is to return after copying the bytes into memory.
- A local durable write waits for fdatasync() on an SSD in the database host.
Sources: Shayon