Size: 2108
Comment: initial version
|
Size: 6476
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
This page describes the second iteration of the bundle format, tentatively called HG19 (since we hope to include it with Mercurial 1.9). | #pragma section-numbers 2 <<Include(A:dev)>> <<Include(A:historic)>> |
Line 3: | Line 5: |
Bundles consist of the following sections: * A bundle header, describing the version and features present in the data. * Changegroup sections for the changelog, the manifest and each relevant filelog. * Optionally, a footer containing an index for more efficient random access? |
<!> This plan have been carried out, check in-code documentation. = BundleFormat2 = This page describes the current plan to get a more modern and complete bundle format. (for old content of this page check [[BundleFormatHG19]]) |
Line 10: | Line 12: |
== Sections == === Header === The bundle header has the following format: |
(current content is copy pasted from 2.9 sprint note) |
Line 14: | Line 14: |
|| '''Offset''' || '''Size''' || '''Type''' || '''Description''' || ||<)> 0 ||<)> 4 || string || Bundle format version. Always contains "HG19". || ||<)> 4 ||<)> 2 || string || Compression type. Either "BZ", "GZ" or "UN". || ||<)> 6 ||<)> a || string || Bundle features (or requirements). A list of comma separated words (lowercase ASCII) describing features present in the bundle. The string is terminated by a newline character. || |
== Why a New bundle format? == * lightweight * new manifest * general delta * bookmarks * phase boundaries * obsolete markers * >sha1 support * pushkey * extensible for new features (required and optional) * progress information * resumable? * transaction commit markers? * recursive (to be able to bundle subrepos) |
Line 19: | Line 29: |
=== Changegroup sections === The changegroup sections has the following format: |
It's possible to envision a format that sends a change, its manifest, and filenodes in each chunk rather than sending all changesets, then all manifests, etc. capabilities |
Line 22: | Line 31: |
|| '''Offset''' || '''Size''' || '''Type''' || '''Description''' || ||<)> 0 ||<)> 4 || uint || Number of changelog entries. || ||<)> 4 ||<)> b || group || Changegroup containing changelog entries. || ||<)> b + 4 ||<)> 4 || uint || Number of manifest entries. || ||<)> b + 8 ||<)> c || group || Changegroup containing manifest entries. || ||<)> b + c + 8 ||<)> 4 || uint || Number of filelog changegroups (note: not the number of entries). || |
== Changes in current command == === Push Orchestraction === ==== Current situation ==== * push: * changesets: * discovery * validation * actual push * phase: * discovery * pull * push * obsolescence * discovery * push * bookmark * discovery * push |
Line 29: | Line 50: |
Then, for each filelog, the following: | ==== Aimed orchestration ==== * push: |
Line 31: | Line 53: |
|| '''Offset''' || '''Size''' || '''Type''' || '''Description''' || ||<)> 0 ||<)> 4 || uint || Number of filelog entries. || ||<)> 4 ||<)> 4 || uint || Length of filename. || ||<)> 8 ||<)> d || string || Filename (unterminated). || ||<)> d + 8 ||<)> e || group || Changroup containing filelog entries. || |
* discovery: * changesets * phase * obs * bookmark * post-discovery action: * current usecase move phase for common changeset seen as public. * local-validation: * (much easier will everything in hands) * complains about: * multiple heads * new branch * troubles changeset * divergent bookmark * missing subrepo revisions * Rent in Manhattan * etc… * push: * (using multipart-bundle when possible) . The one and single remote side transaction happen here * (post-push) pull: * The server send back its own multipart-bundle to the client . (The server would be able to reply a multi-bundle. To inform the client of potential phase//bookmark//changeset rewrites etc…) |
Line 37: | Line 77: |
== Changegroups == ... |
==== post-push pull ==== If we let the protocol send arbitrary data to the server, we need the server to be able to send back arbitrary data too. The idea is to use the very same top level format. It could contain any kind of thing the client have advertise to understand. This last phase is advisory this the client can totally decide to ignore its content. Possible use cases are: * sending standard output back * sending standard error back * notification that a changeset was made public on push * notification of partially accepted changeset * notification of automatic bookmark move on the server * test case result (or test run key) * Automatic shipment of Pony to contributor address * … (Possibility are endless) === Changes in Pull === Same kind of stuff will happen but pull is much simpler. (I'm not worried at all about it). May efficiently pull subrepo revisions. === Change in Bundle/Unbundle === Unbundle would learn to unbundle both Maybe we can have the new bundle format start with an invalid entry to prevent old unbundle to try to import them bundle should be able to produce new bundle. It can probably not do it by default for a long time however :-/ We could also do a "recursive bundle" in the presence of subrepos. A bundle could contain parts that are bundles of the subrepo revisions referenced by the revisions contained in the main bundle. == Top level Bundle == === content === On the remote side, the server will need to redo the validation that was done on the remote side to ensure that nothing interesting happened between discovery and push. We need to send appropriate data to the remote for validation. This implies either argument in the command data, or a dedicated section in the bundle. The dedicated section seems the way to go as it feels more flexible. We do not know what kind of data will be monitored and send. So we cannot build a sensible set of argument doing the job. With a dedicated section in the multi-part bundle, we can make this section evolve over time to match the evolution of data we send to the server. === forseen sections === Here are the idea we already have about section * HG10 (old changeset bundle format) * HG19 (new changeset bundle with support for modern stuff) * pushkey data (phase, bookmarks) * obsolescence markers (format 1 and upcoming format 2 ?) * client capacity (to be used for the reply multi part bundle) * presence of subrepo bundles == Format of the Bundle2 Container == The latest description of the binary format can be found as comment in the Mercurial source code. This is the source of truth. === Examples of top level parameter === Those are example **not actual proposal of final parameters**. Some of them are actually very clowny. ==== Mandatory options ==== * Set a new format of part headers: . `PARTVERSION=1` * Have the payload use a special compression algorithm . `COMPRESSION=DOGEZIP` * Set encoding of string in part-header to GOST13052 (or EBCDIC if you insist) . `PARTENCODING=GOST13052` * Set integer format in part-header to middle-endian . `ENDIANESS=PDP11` ==== Example advisory options ==== * ask for debug level output in the reply . `debug=1` * inform of total number of parts: . `nbparts=42` * inform of total size of the bundle: . `totalsize=1337` ==== Example of -invalid- options ==== * List of known heads (use a part for that) * username and/or credential (use a part for that) == New type of Part == === Changesets exchange === === New header === {{{#!C type Header struct { length uint32 lNode byte node [lNode]byte // if empty (lP1 ==0) then default to previous node in the stream lP1 byte p1 [lP1]byte // if empty, nullrev lP2 byte p2 [lP2]byte // if empty, self (for changelogs) lLinknode byte linknode [lLinknode]byte // if empty, p1 lDeltaParent byte deltaParent [lDeltaParent]byte } }}} We'll modify the existing changegroup type so it can pretend to be a new changegroup that just has a variety of empty fields. Progress information fields might be optional. == Testing bundle2 == bundle2 can be enabled by setting the following hgrc option: {{{ [experimental] bundle2-exp = True }}} ---- CategoryOldFeatures CategoryInternals |
Note:
This page is primarily intended for developers of Mercurial.
Note:
This page is no longer relevant but is kept for historical purposes.
This plan have been carried out, check in-code documentation.
BundleFormat2
This page describes the current plan to get a more modern and complete bundle format. (for old content of this page check BundleFormatHG19)
Contents
(current content is copy pasted from 2.9 sprint note)
1. Why a New bundle format?
- lightweight
- new manifest
- general delta
- bookmarks
- phase boundaries
- obsolete markers
>sha1 support
- pushkey
- extensible for new features (required and optional)
- progress information
- resumable?
- transaction commit markers?
- recursive (to be able to bundle subrepos)
It's possible to envision a format that sends a change, its manifest, and filenodes in each chunk rather than sending all changesets, then all manifests, etc. capabilities
2. Changes in current command
2.1. Push Orchestraction
2.1.1. Current situation
- push:
- changesets:
- discovery
- validation
- actual push
- phase:
- discovery
- pull
- push
- obsolescence
- discovery
- push
- bookmark
- discovery
- push
- changesets:
2.1.2. Aimed orchestration
* push:
- discovery:
- changesets
- phase
- obs
- bookmark
- post-discovery action:
- current usecase move phase for common changeset seen as public.
- local-validation:
- (much easier will everything in hands)
- complains about:
- multiple heads
- new branch
- troubles changeset
- divergent bookmark
- missing subrepo revisions
- Rent in Manhattan
- etc…
- push:
- (using multipart-bundle when possible)
- The one and single remote side transaction happen here
- (using multipart-bundle when possible)
- (post-push) pull:
- The server send back its own multipart-bundle to the client
- (The server would be able to reply a multi-bundle. To inform the client of potential phase//bookmark//changeset rewrites etc…)
- The server send back its own multipart-bundle to the client
2.1.3. post-push pull
If we let the protocol send arbitrary data to the server, we need the server to be able to send back arbitrary data too.
The idea is to use the very same top level format. It could contain any kind of thing the client have advertise to understand. This last phase is advisory this the client can totally decide to ignore its content.
Possible use cases are:
- sending standard output back
- sending standard error back
- notification that a changeset was made public on push
- notification of partially accepted changeset
- notification of automatic bookmark move on the server
- test case result (or test run key)
- Automatic shipment of Pony to contributor address
- … (Possibility are endless)
2.2. Changes in Pull
Same kind of stuff will happen but pull is much simpler. (I'm not worried at all about it). May efficiently pull subrepo revisions.
2.3. Change in Bundle/Unbundle
Unbundle would learn to unbundle both
Maybe we can have the new bundle format start with an invalid entry to prevent old unbundle to try to import them
bundle should be able to produce new bundle. It can probably not do it by default for a long time however :-/
We could also do a "recursive bundle" in the presence of subrepos. A bundle could contain parts that are bundles of the subrepo revisions referenced by the revisions contained in the main bundle.
3. Top level Bundle
3.1. content
On the remote side, the server will need to redo the validation that was done on the remote side to ensure that nothing interesting happened between discovery and push. We need to send appropriate data to the remote for validation. This implies either argument in the command data, or a dedicated section in the bundle. The dedicated section seems the way to go as it feels more flexible. We do not know what kind of data will be monitored and send. So we cannot build a sensible set of argument doing the job. With a dedicated section in the multi-part bundle, we can make this section evolve over time to match the evolution of data we send to the server.
3.2. forseen sections
Here are the idea we already have about section
- HG10 (old changeset bundle format)
- HG19 (new changeset bundle with support for modern stuff)
- pushkey data (phase, bookmarks)
- obsolescence markers (format 1 and upcoming format 2 ?)
- client capacity (to be used for the reply multi part bundle)
- presence of subrepo bundles
4. Format of the Bundle2 Container
The latest description of the binary format can be found as comment in the Mercurial source code. This is the source of truth.
4.1. Examples of top level parameter
Those are example **not actual proposal of final parameters**. Some of them are actually very clowny.
4.1.1. Mandatory options
- Set a new format of part headers:
PARTVERSION=1
- Have the payload use a special compression algorithm
COMPRESSION=DOGEZIP
- Set encoding of string in part-header to GOST13052 (or EBCDIC if you insist)
PARTENCODING=GOST13052
- Set integer format in part-header to middle-endian
ENDIANESS=PDP11
4.1.2. Example advisory options
- ask for debug level output in the reply
debug=1
- inform of total number of parts:
nbparts=42
- inform of total size of the bundle:
totalsize=1337
4.1.3. Example of -invalid- options
- List of known heads (use a part for that)
- username and/or credential (use a part for that)
5. New type of Part
5.1. Changesets exchange
5.2. New header
type Header struct { length uint32 lNode byte node [lNode]byte // if empty (lP1 ==0) then default to previous node in the stream lP1 byte p1 [lP1]byte // if empty, nullrev lP2 byte p2 [lP2]byte // if empty, self (for changelogs) lLinknode byte linknode [lLinknode]byte // if empty, p1 lDeltaParent byte deltaParent [lDeltaParent]byte }
We'll modify the existing changegroup type so it can pretend to be a new changegroup that just has a variety of empty fields. Progress information fields might be optional.
6. Testing bundle2
bundle2 can be enabled by setting the following hgrc option:
[experimental] bundle2-exp = True