Differences between revisions 17 and 25 (spanning 8 versions)
Revision 17 as of 2011-02-25 17:04:44
Size: 2214
Comment: added french translation link
Revision 25 as of 2020-01-13 04:19:53
Size: 2354
Editor: aayjaychan
Comment: Update links
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
#pragma section-numbers 2

<<Include(A:dev)>>

= RevlogNG =
Line 3: Line 9:
Deficiencies in original revlog format: <<TableOfContents>>

==
Deficiencies in original revlog format ==
Line 8: Line 16:
 * offset range is limited to 4MB  * offset range is limited to 4GB
Line 17: Line 25:
 * 20 bytes: nodeid
Line 20: Line 27:
 * '''72 bytes total'''  * 20 bytes: nodeid
* '''76 bytes total'''
Line 22: Line 30:
RevlogNG format: == RevlogNG format ==
Line 35: Line 43:
RevlogNG header: === RevlogNG header ===
Line 41: Line 49:
For how renames are stored see "[[http://selenic.com/pipermail/mercurial/2008-February/017139.html|Problems extracting renames]]", a reply by [[mpm]] posted on Feb 12, 2008, on the [[http://selenic.com/pipermail/mercurial/|mercurial mailing list]]. For how renames are stored see "[[https://www.mercurial-scm.org/pipermail/mercurial/2008-February/017139.html|Problems extracting renames]]", a reply by [[mpm]] posted on Feb 12, 2008, on the [[https://www.mercurial-scm.org/pipermail/mercurial/|mercurial mailing list]].
Line 43: Line 51:
See also: ParentDeltaPlan == See Also ==

 *
ParentDeltaPlan

Note:

This page is primarily intended for developers of Mercurial.

RevlogNG

RevlogNG was introduced with Mercurial 0.9 (see also Revlog).

1. Deficiencies in original revlog format

  • no uncompressed revision size stored
  • SHA1 hash is potentially too weak
  • compression context for deltas is often too small
  • offset range is limited to 4GB
  • some metadata is indicated by escaping in the data

The original index format was:

  • 4 bytes: offset
  • 4 bytes: compressed length
  • 4 bytes: base revision
  • 4 bytes: link revision
  • 20 bytes: parent 1 nodeid
  • 20 bytes: parent 2 nodeid
  • 20 bytes: nodeid
  • 76 bytes total

2. RevlogNG format

  • 6 bytes: offset -- This is how far into the data file we need to go to find the appropriate delta
  • 2 bytes: flags
  • 4 bytes: compressed length -- Once we are offset into the data file, this is how much we read to get the delta
  • 4 bytes: uncompressed length -- This is just an optimization. It's the size of the file at this revision
  • 4 bytes: base revision -- The last revision where the entire file is stored.
  • 4 bytes: link revision -- Another optimization. Which revision is this? Which commit is this?
  • 4 bytes: parent 1 revision -- Revision of parent 1 (e.g., 12, 122)
  • 4 bytes: parent 2 revision -- Revision of parent 2
  • 32 bytes: nodeid -- A unique identifier, also used in verification (hash of content + parent IDs)
  • 64 bytes total

2.1. RevlogNG header

As the offset of the first data chunk is always zero, the first 4 bytes (part of the offset) are used to indicate revlog version number and flags. all values are in big endian format.

RevlogNG also supports interleaving of index and data. This can greatly reduce storage overhead for smaller revlogs. In this format, the data chunk immediately follows its index entry. The position of the next index entry is calculated by adding the compressed length to the offset.

For how renames are stored see "Problems extracting renames", a reply by mpm posted on Feb 12, 2008, on the mercurial mailing list.

3. See Also


CategoryInternals

Français

RevlogNG (last edited 2020-01-13 04:19:53 by aayjaychan)