Browse Source

MINOR: Define the term tombstone, since it's used elsewhere in the docs (#3480)

Reviewers: Manikumar Reddy <manikumar.reddy@gmail.com>
pull/8703/head
Tom Bentley 4 years ago committed by GitHub
parent
commit
cfadb8b8d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      docs/design.html

2
docs/design.html

@ -508,7 +508,7 @@ @@ -508,7 +508,7 @@
the log, even if the message with that offset has been compacted away; in this case this position is indistinguishable from the next highest offset that does appear in the log. For example, in the picture above the
offsets 36, 37, and 38 are all equivalent positions and a read beginning at any of these offsets would return a message set beginning with 38.
<p>
Compaction also allows for deletes. A message with a key and a null payload will be treated as a delete from the log. This delete marker will cause any prior message with that key to be removed (as would any new
Compaction also allows for deletes. A message with a key and a null payload will be treated as a delete from the log. Such a record is sometimes referred to as a <i>tombstone</i>. This delete marker will cause any prior message with that key to be removed (as would any new
message with that key), but delete markers are special in that they will themselves be cleaned out of the log after a period of time to free up space. The point in time at which deletes are no longer retained is
marked as the "delete retention point" in the above diagram.
<p>

Loading…
Cancel
Save