test-upgrade-repo.t
2103 lines
| 81.1 KiB
| text/troff
|
Tads3Lexer
/ tests / test-upgrade-repo.t
Gregory Szorc
|
r37356 | #require no-reposimplestore | ||
Gregory Szorc
|
r30775 | $ cat >> $HGRCPATH << EOF | ||
> [extensions] | ||||
> share = | ||||
r47608 | > [format] | |||
> # stabilize test accross variant | ||||
> revlog-compression=zlib | ||||
r49629 | > [storage] | |||
> dirstate-v2.slow-path=allow | ||||
Gregory Szorc
|
r30775 | > EOF | ||
store and revlogv1 are required in source | ||||
$ hg --config format.usestore=false init no-store | ||||
$ hg -R no-store debugupgraderepo | ||||
abort: cannot upgrade repository; requirement missing: store | ||||
[255] | ||||
$ hg init no-revlogv1 | ||||
$ cat > no-revlogv1/.hg/requires << EOF | ||||
> dotencode | ||||
> fncache | ||||
> generaldelta | ||||
> store | ||||
> EOF | ||||
$ hg -R no-revlogv1 debugupgraderepo | ||||
Raphaël Gomès
|
r47439 | abort: cannot upgrade repository; missing a revlog version | ||
Gregory Szorc
|
r30774 | [255] | ||
Gregory Szorc
|
r30775 | |||
Cannot upgrade shared repositories | ||||
$ hg init share-parent | ||||
r49629 | $ hg -R share-parent debugbuilddag -n .+9 | |||
$ hg -R share-parent up tip | ||||
10 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||||
Gregory Szorc
|
r30775 | $ hg -q share share-parent share-child | ||
r49628 | $ hg -R share-child debugupgraderepo --config format.sparse-revlog=no | |||
abort: cannot use these actions on a share repository: sparserevlog | ||||
(upgrade the main repository directly) | ||||
Gregory Szorc
|
r30775 | [255] | ||
r49629 | Unless the action is compatible with share | |||
$ hg -R share-child debugupgraderepo --config format.use-dirstate-v2=yes --quiet | ||||
requirements | ||||
preserved: * (glob) | ||||
added: dirstate-v2 | ||||
no revlogs to process | ||||
$ hg -R share-child debugupgraderepo --config format.use-dirstate-v2=yes --quiet --run | ||||
upgrade will perform the following actions: | ||||
requirements | ||||
preserved: * (glob) | ||||
added: dirstate-v2 | ||||
no revlogs to process | ||||
$ hg debugformat -R share-child | grep dirstate-v2 | ||||
dirstate-v2: yes | ||||
$ hg debugformat -R share-parent | grep dirstate-v2 | ||||
dirstate-v2: no | ||||
$ hg status --all -R share-child | ||||
C nf0 | ||||
C nf1 | ||||
C nf2 | ||||
C nf3 | ||||
C nf4 | ||||
C nf5 | ||||
C nf6 | ||||
C nf7 | ||||
C nf8 | ||||
C nf9 | ||||
$ hg log -l 3 -R share-child | ||||
changeset: 9:0059eb38e4a4 | ||||
tag: tip | ||||
user: debugbuilddag | ||||
date: Thu Jan 01 00:00:09 1970 +0000 | ||||
summary: r9 | ||||
changeset: 8:4d5be70c8130 | ||||
user: debugbuilddag | ||||
date: Thu Jan 01 00:00:08 1970 +0000 | ||||
summary: r8 | ||||
changeset: 7:e60bfe72517e | ||||
user: debugbuilddag | ||||
date: Thu Jan 01 00:00:07 1970 +0000 | ||||
summary: r7 | ||||
$ hg status --all -R share-parent | ||||
C nf0 | ||||
C nf1 | ||||
C nf2 | ||||
C nf3 | ||||
C nf4 | ||||
C nf5 | ||||
C nf6 | ||||
C nf7 | ||||
C nf8 | ||||
C nf9 | ||||
$ hg log -l 3 -R share-parent | ||||
changeset: 9:0059eb38e4a4 | ||||
tag: tip | ||||
user: debugbuilddag | ||||
date: Thu Jan 01 00:00:09 1970 +0000 | ||||
summary: r9 | ||||
changeset: 8:4d5be70c8130 | ||||
user: debugbuilddag | ||||
date: Thu Jan 01 00:00:08 1970 +0000 | ||||
summary: r8 | ||||
changeset: 7:e60bfe72517e | ||||
user: debugbuilddag | ||||
date: Thu Jan 01 00:00:07 1970 +0000 | ||||
summary: r7 | ||||
$ hg -R share-child debugupgraderepo --config format.use-dirstate-v2=no --quiet --run | ||||
upgrade will perform the following actions: | ||||
requirements | ||||
preserved: * (glob) | ||||
removed: dirstate-v2 | ||||
no revlogs to process | ||||
$ hg debugformat -R share-child | grep dirstate-v2 | ||||
dirstate-v2: no | ||||
$ hg debugformat -R share-parent | grep dirstate-v2 | ||||
dirstate-v2: no | ||||
$ hg status --all -R share-child | ||||
C nf0 | ||||
C nf1 | ||||
C nf2 | ||||
C nf3 | ||||
C nf4 | ||||
C nf5 | ||||
C nf6 | ||||
C nf7 | ||||
C nf8 | ||||
C nf9 | ||||
$ hg log -l 3 -R share-child | ||||
changeset: 9:0059eb38e4a4 | ||||
tag: tip | ||||
user: debugbuilddag | ||||
date: Thu Jan 01 00:00:09 1970 +0000 | ||||
summary: r9 | ||||
changeset: 8:4d5be70c8130 | ||||
user: debugbuilddag | ||||
date: Thu Jan 01 00:00:08 1970 +0000 | ||||
summary: r8 | ||||
changeset: 7:e60bfe72517e | ||||
user: debugbuilddag | ||||
date: Thu Jan 01 00:00:07 1970 +0000 | ||||
summary: r7 | ||||
$ hg status --all -R share-parent | ||||
C nf0 | ||||
C nf1 | ||||
C nf2 | ||||
C nf3 | ||||
C nf4 | ||||
C nf5 | ||||
C nf6 | ||||
C nf7 | ||||
C nf8 | ||||
C nf9 | ||||
$ hg log -l 3 -R share-parent | ||||
changeset: 9:0059eb38e4a4 | ||||
tag: tip | ||||
user: debugbuilddag | ||||
date: Thu Jan 01 00:00:09 1970 +0000 | ||||
summary: r9 | ||||
changeset: 8:4d5be70c8130 | ||||
user: debugbuilddag | ||||
date: Thu Jan 01 00:00:08 1970 +0000 | ||||
summary: r8 | ||||
changeset: 7:e60bfe72517e | ||||
user: debugbuilddag | ||||
date: Thu Jan 01 00:00:07 1970 +0000 | ||||
summary: r7 | ||||
r49628 | ||||
r51579 | Do not yet support downgrading treemanifest repos | |||
Gregory Szorc
|
r30775 | |||
$ hg --config experimental.treemanifest=true init treemanifest | ||||
$ hg -R treemanifest debugupgraderepo | ||||
r51579 | abort: cannot upgrade repository; requirement would be removed: treemanifest | |||
Gregory Szorc
|
r30775 | [255] | ||
Augie Fackler
|
r36391 | Cannot add treemanifest requirement during upgrade | ||
Gregory Szorc
|
r30775 | |||
$ hg init disallowaddedreq | ||||
Augie Fackler
|
r36391 | $ hg -R disallowaddedreq --config experimental.treemanifest=true debugupgraderepo | ||
abort: cannot upgrade repository; do not support adding requirement: treemanifest | ||||
Gregory Szorc
|
r30775 | [255] | ||
Gregory Szorc
|
r30776 | |||
An upgrade of a repository created with recommended settings only suggests optimizations | ||||
$ hg init empty | ||||
$ cd empty | ||||
Boris Feld
|
r35337 | $ hg debugformat | ||
r45303 | format-variant repo | |||
fncache: yes | ||||
Simon Sapin
|
r48111 | dirstate-v2: no | ||
r49644 | tracked-hint: no | |||
r45303 | dotencode: yes | |||
generaldelta: yes | ||||
r49515 | share-safe: yes | |||
r45303 | sparserevlog: yes | |||
r47646 | persistent-nodemap: no (no-rust !) | |||
persistent-nodemap: yes (rust !) | ||||
r45303 | copies-sdc: no | |||
Raphaël Gomès
|
r47439 | revlog-v2: no | ||
r48037 | changelog-v2: no | |||
r45303 | plain-cl-delta: yes | |||
compression: zlib | ||||
compression-level: default | ||||
Boris Feld
|
r35338 | $ hg debugformat --verbose | ||
r45303 | format-variant repo config default | |||
fncache: yes yes yes | ||||
Simon Sapin
|
r48111 | dirstate-v2: no no no | ||
r49644 | tracked-hint: no no no | |||
r45303 | dotencode: yes yes yes | |||
generaldelta: yes yes yes | ||||
r49515 | share-safe: yes yes yes | |||
r45303 | sparserevlog: yes yes yes | |||
r47646 | persistent-nodemap: no no no (no-rust !) | |||
persistent-nodemap: yes yes no (rust !) | ||||
r45303 | copies-sdc: no no no | |||
Raphaël Gomès
|
r47439 | revlog-v2: no no no | ||
r48037 | changelog-v2: no no no | |||
r45303 | plain-cl-delta: yes yes yes | |||
r47636 | compression: zlib zlib zlib (no-zstd !) | |||
compression: zlib zlib zstd (zstd !) | ||||
r45303 | compression-level: default default default | |||
Boris Feld
|
r40919 | $ hg debugformat --verbose --config format.usefncache=no | ||
r45303 | format-variant repo config default | |||
fncache: yes no yes | ||||
Simon Sapin
|
r48111 | dirstate-v2: no no no | ||
r49644 | tracked-hint: no no no | |||
r45303 | dotencode: yes no yes | |||
generaldelta: yes yes yes | ||||
r49515 | share-safe: yes yes yes | |||
r45303 | sparserevlog: yes yes yes | |||
r47646 | persistent-nodemap: no no no (no-rust !) | |||
persistent-nodemap: yes yes no (rust !) | ||||
r45303 | copies-sdc: no no no | |||
Raphaël Gomès
|
r47439 | revlog-v2: no no no | ||
r48037 | changelog-v2: no no no | |||
r45303 | plain-cl-delta: yes yes yes | |||
r47636 | compression: zlib zlib zlib (no-zstd !) | |||
compression: zlib zlib zstd (zstd !) | ||||
r45303 | compression-level: default default default | |||
Boris Feld
|
r40919 | $ hg debugformat --verbose --config format.usefncache=no --color=debug | ||
r45303 | format-variant repo config default | |||
[formatvariant.name.mismatchconfig|fncache: ][formatvariant.repo.mismatchconfig| yes][formatvariant.config.special| no][formatvariant.default| yes] | ||||
Simon Sapin
|
r48111 | [formatvariant.name.uptodate|dirstate-v2: ][formatvariant.repo.uptodate| no][formatvariant.config.default| no][formatvariant.default| no] | ||
r49644 | [formatvariant.name.uptodate|tracked-hint: ][formatvariant.repo.uptodate| no][formatvariant.config.default| no][formatvariant.default| no] | |||
r45303 | [formatvariant.name.mismatchconfig|dotencode: ][formatvariant.repo.mismatchconfig| yes][formatvariant.config.special| no][formatvariant.default| yes] | |||
[formatvariant.name.uptodate|generaldelta: ][formatvariant.repo.uptodate| yes][formatvariant.config.default| yes][formatvariant.default| yes] | ||||
r49515 | [formatvariant.name.uptodate|share-safe: ][formatvariant.repo.uptodate| yes][formatvariant.config.default| yes][formatvariant.default| yes] | |||
r45303 | [formatvariant.name.uptodate|sparserevlog: ][formatvariant.repo.uptodate| yes][formatvariant.config.default| yes][formatvariant.default| yes] | |||
r47646 | [formatvariant.name.uptodate|persistent-nodemap:][formatvariant.repo.uptodate| no][formatvariant.config.default| no][formatvariant.default| no] (no-rust !) | |||
[formatvariant.name.mismatchdefault|persistent-nodemap:][formatvariant.repo.mismatchdefault| yes][formatvariant.config.special| yes][formatvariant.default| no] (rust !) | ||||
r45303 | [formatvariant.name.uptodate|copies-sdc: ][formatvariant.repo.uptodate| no][formatvariant.config.default| no][formatvariant.default| no] | |||
Raphaël Gomès
|
r47439 | [formatvariant.name.uptodate|revlog-v2: ][formatvariant.repo.uptodate| no][formatvariant.config.default| no][formatvariant.default| no] | ||
r48037 | [formatvariant.name.uptodate|changelog-v2: ][formatvariant.repo.uptodate| no][formatvariant.config.default| no][formatvariant.default| no] | |||
r45303 | [formatvariant.name.uptodate|plain-cl-delta: ][formatvariant.repo.uptodate| yes][formatvariant.config.default| yes][formatvariant.default| yes] | |||
r47636 | [formatvariant.name.uptodate|compression: ][formatvariant.repo.uptodate| zlib][formatvariant.config.default| zlib][formatvariant.default| zlib] (no-zstd !) | |||
[formatvariant.name.mismatchdefault|compression: ][formatvariant.repo.mismatchdefault| zlib][formatvariant.config.special| zlib][formatvariant.default| zstd] (zstd !) | ||||
r45303 | [formatvariant.name.uptodate|compression-level: ][formatvariant.repo.uptodate| default][formatvariant.config.default| default][formatvariant.default| default] | |||
Yuya Nishihara
|
r35378 | $ hg debugformat -Tjson | ||
[ | ||||
{ | ||||
Yuya Nishihara
|
r35379 | "config": true, | ||
"default": true, | ||||
Yuya Nishihara
|
r35378 | "name": "fncache", | ||
Yuya Nishihara
|
r35379 | "repo": true | ||
Yuya Nishihara
|
r35378 | }, | ||
{ | ||||
Simon Sapin
|
r48111 | "config": false, | ||
"default": false, | ||||
"name": "dirstate-v2", | ||||
"repo": false | ||||
}, | ||||
{ | ||||
r49641 | "config": false, | |||
"default": false, | ||||
r49644 | "name": "tracked-hint", | |||
r49641 | "repo": false | |||
}, | ||||
{ | ||||
Yuya Nishihara
|
r35379 | "config": true, | ||
"default": true, | ||||
Yuya Nishihara
|
r35378 | "name": "dotencode", | ||
Yuya Nishihara
|
r35379 | "repo": true | ||
Yuya Nishihara
|
r35378 | }, | ||
{ | ||||
Yuya Nishihara
|
r35379 | "config": true, | ||
"default": true, | ||||
Yuya Nishihara
|
r35378 | "name": "generaldelta", | ||
Yuya Nishihara
|
r35379 | "repo": true | ||
Yuya Nishihara
|
r35378 | }, | ||
{ | ||||
r49515 | "config": true, | |||
"default": true, | ||||
Pulkit Goyal
|
r47052 | "name": "share-safe", | ||
r49515 | "repo": true | |||
Pulkit Goyal
|
r46617 | }, | ||
{ | ||||
Boris Feld
|
r40954 | "config": true, | ||
"default": true, | ||||
Paul Morelle
|
r38741 | "name": "sparserevlog", | ||
Boris Feld
|
r40954 | "repo": true | ||
Paul Morelle
|
r38741 | }, | ||
{ | ||||
r47646 | "config": false, (no-rust !) | |||
"config": true, (rust !) | ||||
r43299 | "default": false, | |||
r45303 | "name": "persistent-nodemap", | |||
r47646 | "repo": false (no-rust !) | |||
"repo": true (rust !) | ||||
r45303 | }, | |||
{ | ||||
"config": false, | ||||
"default": false, | ||||
r43408 | "name": "copies-sdc", | |||
"repo": false | ||||
}, | ||||
{ | ||||
Raphaël Gomès
|
r47439 | "config": false, | ||
"default": false, | ||||
"name": "revlog-v2", | ||||
"repo": false | ||||
}, | ||||
{ | ||||
r48037 | "config": false, | |||
"default": false, | ||||
"name": "changelog-v2", | ||||
"repo": false | ||||
}, | ||||
{ | ||||
Yuya Nishihara
|
r35379 | "config": true, | ||
"default": true, | ||||
Yuya Nishihara
|
r35378 | "name": "plain-cl-delta", | ||
Yuya Nishihara
|
r35379 | "repo": true | ||
Yuya Nishihara
|
r35378 | }, | ||
{ | ||||
"config": "zlib", | ||||
r47636 | "default": "zlib", (no-zstd !) | |||
"default": "zstd", (zstd !) | ||||
Yuya Nishihara
|
r35378 | "name": "compression", | ||
"repo": "zlib" | ||||
r42212 | }, | |||
{ | ||||
"config": "default", | ||||
"default": "default", | ||||
"name": "compression-level", | ||||
"repo": "default" | ||||
Yuya Nishihara
|
r35378 | } | ||
] | ||||
Gregory Szorc
|
r30776 | $ hg debugupgraderepo | ||
Pulkit Goyal
|
r46822 | (no format upgrades found in existing repository) | ||
Gregory Szorc
|
r30776 | performing an upgrade with "--run" will make the following changes: | ||
requirements | ||||
r49515 | preserved: dotencode, fncache, generaldelta, revlogv1, share-safe, sparserevlog, store (no-rust !) | |||
preserved: dotencode, fncache, generaldelta, persistent-nodemap, revlogv1, share-safe, sparserevlog, store (rust !) | ||||
Gregory Szorc
|
r30776 | |||
r49277 | no revlogs to process | |||
r46649 | ||||
Gregory Szorc
|
r30776 | additional optimizations are available by specifying "--optimize <name>": | ||
Boris Feld
|
r41120 | re-delta-parent | ||
Gregory Szorc
|
r30776 | deltas within internal storage will be recalculated to choose an optimal base revision where this was not already done; the size of the repository may shrink and various operations may become faster; the first time this optimization is performed could slow down upgrade execution considerably; subsequent invocations should not run noticeably slower | ||
Boris Feld
|
r41120 | re-delta-multibase | ||
Gregory Szorc
|
r30776 | deltas within internal storage will be recalculated against multiple base revision and the smallest difference will be used; the size of the repository may shrink significantly when there are many merges; this optimization will slow down execution in proportion to the number of merges in the repository and the amount of files in the repository; this slow down should not be significant unless there are tens of thousands of files and thousands of merges | ||
Boris Feld
|
r41120 | re-delta-all | ||
Gregory Szorc
|
r30776 | deltas within internal storage will always be recalculated without reusing prior deltas; this will likely make execution run several times slower; this optimization is typically not needed | ||
Boris Feld
|
r41120 | re-delta-fulladd | ||
every revision will be re-added as if it was new content. It will go through the full storage mechanism giving extensions a chance to process it (eg. lfs). This is similar to "re-delta-all" but even slower since more logic is involved. | ||||
Boris Feld
|
r35346 | |||
Gregory Szorc
|
r30776 | |||
r45302 | $ hg debugupgraderepo --quiet | |||
requirements | ||||
r49515 | preserved: dotencode, fncache, generaldelta, revlogv1, share-safe, sparserevlog, store (no-rust !) | |||
preserved: dotencode, fncache, generaldelta, persistent-nodemap, revlogv1, share-safe, sparserevlog, store (rust !) | ||||
r45302 | ||||
r49277 | no revlogs to process | |||
r46649 | ||||
r45302 | ||||
Gregory Szorc
|
r30776 | --optimize can be used to add optimizations | ||
Pulkit Goyal
|
r46825 | $ hg debugupgrade --optimize 're-delta-parent' | ||
Pulkit Goyal
|
r46822 | (no format upgrades found in existing repository) | ||
Gregory Szorc
|
r30776 | performing an upgrade with "--run" will make the following changes: | ||
requirements | ||||
r49515 | preserved: dotencode, fncache, generaldelta, revlogv1, share-safe, sparserevlog, store (no-rust !) | |||
preserved: dotencode, fncache, generaldelta, persistent-nodemap, revlogv1, share-safe, sparserevlog, store (rust !) | ||||
Gregory Szorc
|
r30776 | |||
r45301 | optimisations: re-delta-parent | |||
Boris Feld
|
r41120 | re-delta-parent | ||
Gregory Szorc
|
r30776 | deltas within internal storage will choose a new base revision if needed | ||
r46649 | processed revlogs: | |||
- all-filelogs | ||||
- changelog | ||||
- manifest | ||||
Gregory Szorc
|
r30776 | additional optimizations are available by specifying "--optimize <name>": | ||
Boris Feld
|
r41120 | re-delta-multibase | ||
Gregory Szorc
|
r30776 | deltas within internal storage will be recalculated against multiple base revision and the smallest difference will be used; the size of the repository may shrink significantly when there are many merges; this optimization will slow down execution in proportion to the number of merges in the repository and the amount of files in the repository; this slow down should not be significant unless there are tens of thousands of files and thousands of merges | ||
Boris Feld
|
r41120 | re-delta-all | ||
Gregory Szorc
|
r30776 | deltas within internal storage will always be recalculated without reusing prior deltas; this will likely make execution run several times slower; this optimization is typically not needed | ||
Boris Feld
|
r41120 | re-delta-fulladd | ||
every revision will be re-added as if it was new content. It will go through the full storage mechanism giving extensions a chance to process it (eg. lfs). This is similar to "re-delta-all" but even slower since more logic is involved. | ||||
modern form of the option | ||||
$ hg debugupgrade --optimize re-delta-parent | ||||
Pulkit Goyal
|
r46822 | (no format upgrades found in existing repository) | ||
Boris Feld
|
r41120 | performing an upgrade with "--run" will make the following changes: | ||
requirements | ||||
r49515 | preserved: dotencode, fncache, generaldelta, revlogv1, share-safe, sparserevlog, store (no-rust !) | |||
preserved: dotencode, fncache, generaldelta, persistent-nodemap, revlogv1, share-safe, sparserevlog, store (rust !) | ||||
Boris Feld
|
r41120 | |||
r45301 | optimisations: re-delta-parent | |||
Boris Feld
|
r41120 | re-delta-parent | ||
deltas within internal storage will choose a new base revision if needed | ||||
Boris Feld
|
r35346 | |||
r46649 | processed revlogs: | |||
- all-filelogs | ||||
- changelog | ||||
- manifest | ||||
Boris Feld
|
r41120 | additional optimizations are available by specifying "--optimize <name>": | ||
re-delta-multibase | ||||
deltas within internal storage will be recalculated against multiple base revision and the smallest difference will be used; the size of the repository may shrink significantly when there are many merges; this optimization will slow down execution in proportion to the number of merges in the repository and the amount of files in the repository; this slow down should not be significant unless there are tens of thousands of files and thousands of merges | ||||
re-delta-all | ||||
deltas within internal storage will always be recalculated without reusing prior deltas; this will likely make execution run several times slower; this optimization is typically not needed | ||||
re-delta-fulladd | ||||
every revision will be re-added as if it was new content. It will go through the full storage mechanism giving extensions a chance to process it (eg. lfs). This is similar to "re-delta-all" but even slower since more logic is involved. | ||||
r50272 | ||||
r45302 | $ hg debugupgrade --optimize re-delta-parent --quiet | |||
requirements | ||||
r49515 | preserved: dotencode, fncache, generaldelta, revlogv1, share-safe, sparserevlog, store (no-rust !) | |||
preserved: dotencode, fncache, generaldelta, persistent-nodemap, revlogv1, share-safe, sparserevlog, store (rust !) | ||||
r45302 | ||||
optimisations: re-delta-parent | ||||
r46649 | processed revlogs: | |||
- all-filelogs | ||||
- changelog | ||||
- manifest | ||||
Boris Feld
|
r41120 | |||
r50272 | passing multiple optimization: | |||
$ hg debugupgrade --optimize re-delta-parent --optimize re-delta-multibase --quiet | ||||
requirements | ||||
preserved: * (glob) | ||||
optimisations: re-delta-multibase, re-delta-parent | ||||
processed revlogs: | ||||
- all-filelogs | ||||
- changelog | ||||
- manifest | ||||
Boris Feld
|
r41120 | unknown optimization: | ||
$ hg debugupgrade --optimize foobar | ||||
abort: unknown optimization action requested: foobar | ||||
(run without arguments to see valid optimizations) | ||||
[255] | ||||
Gregory Szorc
|
r30776 | |||
Various sub-optimal detections work | ||||
$ cat > .hg/requires << EOF | ||||
> revlogv1 | ||||
> store | ||||
> EOF | ||||
Boris Feld
|
r35337 | $ hg debugformat | ||
r45303 | format-variant repo | |||
fncache: no | ||||
Simon Sapin
|
r48111 | dirstate-v2: no | ||
r49644 | tracked-hint: no | |||
r45303 | dotencode: no | |||
generaldelta: no | ||||
Pulkit Goyal
|
r47052 | share-safe: no | ||
r45303 | sparserevlog: no | |||
persistent-nodemap: no | ||||
copies-sdc: no | ||||
Raphaël Gomès
|
r47439 | revlog-v2: no | ||
r48037 | changelog-v2: no | |||
r45303 | plain-cl-delta: yes | |||
compression: zlib | ||||
compression-level: default | ||||
Boris Feld
|
r35338 | $ hg debugformat --verbose | ||
r45303 | format-variant repo config default | |||
fncache: no yes yes | ||||
Simon Sapin
|
r48111 | dirstate-v2: no no no | ||
r49644 | tracked-hint: no no no | |||
r45303 | dotencode: no yes yes | |||
generaldelta: no yes yes | ||||
r49515 | share-safe: no yes yes | |||
r45303 | sparserevlog: no yes yes | |||
r47646 | persistent-nodemap: no no no (no-rust !) | |||
persistent-nodemap: no yes no (rust !) | ||||
r45303 | copies-sdc: no no no | |||
Raphaël Gomès
|
r47439 | revlog-v2: no no no | ||
r48037 | changelog-v2: no no no | |||
r45303 | plain-cl-delta: yes yes yes | |||
r47636 | compression: zlib zlib zlib (no-zstd !) | |||
compression: zlib zlib zstd (zstd !) | ||||
r45303 | compression-level: default default default | |||
Boris Feld
|
r35338 | $ hg debugformat --verbose --config format.usegeneraldelta=no | ||
r45303 | format-variant repo config default | |||
fncache: no yes yes | ||||
Simon Sapin
|
r48111 | dirstate-v2: no no no | ||
r49644 | tracked-hint: no no no | |||
r45303 | dotencode: no yes yes | |||
generaldelta: no no yes | ||||
r49515 | share-safe: no yes yes | |||
r45303 | sparserevlog: no no yes | |||
r47646 | persistent-nodemap: no no no (no-rust !) | |||
persistent-nodemap: no yes no (rust !) | ||||
r45303 | copies-sdc: no no no | |||
Raphaël Gomès
|
r47439 | revlog-v2: no no no | ||
r48037 | changelog-v2: no no no | |||
r45303 | plain-cl-delta: yes yes yes | |||
r47636 | compression: zlib zlib zlib (no-zstd !) | |||
compression: zlib zlib zstd (zstd !) | ||||
r45303 | compression-level: default default default | |||
Boris Feld
|
r35339 | $ hg debugformat --verbose --config format.usegeneraldelta=no --color=debug | ||
r45303 | format-variant repo config default | |||
[formatvariant.name.mismatchconfig|fncache: ][formatvariant.repo.mismatchconfig| no][formatvariant.config.default| yes][formatvariant.default| yes] | ||||
Simon Sapin
|
r48111 | [formatvariant.name.uptodate|dirstate-v2: ][formatvariant.repo.uptodate| no][formatvariant.config.default| no][formatvariant.default| no] | ||
r49644 | [formatvariant.name.uptodate|tracked-hint: ][formatvariant.repo.uptodate| no][formatvariant.config.default| no][formatvariant.default| no] | |||
r45303 | [formatvariant.name.mismatchconfig|dotencode: ][formatvariant.repo.mismatchconfig| no][formatvariant.config.default| yes][formatvariant.default| yes] | |||
[formatvariant.name.mismatchdefault|generaldelta: ][formatvariant.repo.mismatchdefault| no][formatvariant.config.special| no][formatvariant.default| yes] | ||||
r49515 | [formatvariant.name.mismatchconfig|share-safe: ][formatvariant.repo.mismatchconfig| no][formatvariant.config.default| yes][formatvariant.default| yes] | |||
r45303 | [formatvariant.name.mismatchdefault|sparserevlog: ][formatvariant.repo.mismatchdefault| no][formatvariant.config.special| no][formatvariant.default| yes] | |||
r47646 | [formatvariant.name.uptodate|persistent-nodemap:][formatvariant.repo.uptodate| no][formatvariant.config.default| no][formatvariant.default| no] (no-rust !) | |||
[formatvariant.name.mismatchconfig|persistent-nodemap:][formatvariant.repo.mismatchconfig| no][formatvariant.config.special| yes][formatvariant.default| no] (rust !) | ||||
r45303 | [formatvariant.name.uptodate|copies-sdc: ][formatvariant.repo.uptodate| no][formatvariant.config.default| no][formatvariant.default| no] | |||
Raphaël Gomès
|
r47439 | [formatvariant.name.uptodate|revlog-v2: ][formatvariant.repo.uptodate| no][formatvariant.config.default| no][formatvariant.default| no] | ||
r48037 | [formatvariant.name.uptodate|changelog-v2: ][formatvariant.repo.uptodate| no][formatvariant.config.default| no][formatvariant.default| no] | |||
r45303 | [formatvariant.name.uptodate|plain-cl-delta: ][formatvariant.repo.uptodate| yes][formatvariant.config.default| yes][formatvariant.default| yes] | |||
r47636 | [formatvariant.name.uptodate|compression: ][formatvariant.repo.uptodate| zlib][formatvariant.config.default| zlib][formatvariant.default| zlib] (no-zstd !) | |||
[formatvariant.name.mismatchdefault|compression: ][formatvariant.repo.mismatchdefault| zlib][formatvariant.config.special| zlib][formatvariant.default| zstd] (zstd !) | ||||
r45303 | [formatvariant.name.uptodate|compression-level: ][formatvariant.repo.uptodate| default][formatvariant.config.default| default][formatvariant.default| default] | |||
Gregory Szorc
|
r30776 | $ hg debugupgraderepo | ||
r49276 | note: selecting all-filelogs for processing to change: dotencode | |||
note: selecting all-manifestlogs for processing to change: dotencode | ||||
note: selecting changelog for processing to change: dotencode | ||||
Gregory Szorc
|
r30776 | repository lacks features recommended by current config options: | ||
fncache | ||||
long and reserved filenames may not work correctly; repository performance is sub-optimal | ||||
dotencode | ||||
storage of filenames beginning with a period or space may not work correctly | ||||
generaldelta | ||||
deltas within internal storage are unable to choose optimal revisions; repository is larger and slower than it could be; interaction with other repositories may require extra network and CPU resources, making "hg push" and "hg pull" slower | ||||
r49515 | share-safe | |||
old shared repositories do not share source repository requirements and config. This leads to various problems when the source repository format is upgraded or some new extensions are enabled. | ||||
Boris Feld
|
r40954 | sparserevlog | ||
in order to limit disk reading and memory usage on older version, the span of a delta chain from its root to its end is limited, whatever the relevant data in this span. This can severly limit Mercurial ability to build good chain of delta resulting is much more storage space being taken and limit reusability of on disk delta during exchange. | ||||
r47646 | persistent-nodemap (rust !) | |||
persist the node -> rev mapping on disk to speedup lookup (rust !) | ||||
(rust !) | ||||
Gregory Szorc
|
r30776 | |||
performing an upgrade with "--run" will make the following changes: | ||||
requirements | ||||
preserved: revlogv1, store | ||||
r49515 | added: dotencode, fncache, generaldelta, share-safe, sparserevlog (no-rust !) | |||
added: dotencode, fncache, generaldelta, persistent-nodemap, share-safe, sparserevlog (rust !) | ||||
Gregory Szorc
|
r30776 | |||
fncache | ||||
repository will be more resilient to storing certain paths and performance of certain operations should be improved | ||||
dotencode | ||||
repository will be better able to store files beginning with a space or period | ||||
generaldelta | ||||
repository storage will be able to create optimal deltas; new repository data will be smaller and read times should decrease; interacting with other repositories using this storage model should require less network and CPU resources, making "hg push" and "hg pull" faster | ||||
r49515 | share-safe | |||
Upgrades a repository to share-safe format so that future shares of this repository share its requirements and configs. | ||||
Boris Feld
|
r40954 | sparserevlog | ||
Revlog supports delta chain with more unused data between payload. These gaps will be skipped at read time. This allows for better delta chains, making a better compression and faster exchange with server. | ||||
r47646 | persistent-nodemap (rust !) | |||
Speedup revision lookup by node id. (rust !) | ||||
(rust !) | ||||
r46649 | processed revlogs: | |||
- all-filelogs | ||||
- changelog | ||||
- manifest | ||||
Gregory Szorc
|
r30776 | additional optimizations are available by specifying "--optimize <name>": | ||
Boris Feld
|
r41120 | re-delta-parent | ||
Gregory Szorc
|
r30776 | deltas within internal storage will be recalculated to choose an optimal base revision where this was not already done; the size of the repository may shrink and various operations may become faster; the first time this optimization is performed could slow down upgrade execution considerably; subsequent invocations should not run noticeably slower | ||
Boris Feld
|
r41120 | re-delta-multibase | ||
Gregory Szorc
|
r30776 | deltas within internal storage will be recalculated against multiple base revision and the smallest difference will be used; the size of the repository may shrink significantly when there are many merges; this optimization will slow down execution in proportion to the number of merges in the repository and the amount of files in the repository; this slow down should not be significant unless there are tens of thousands of files and thousands of merges | ||
Boris Feld
|
r41120 | re-delta-all | ||
Gregory Szorc
|
r30776 | deltas within internal storage will always be recalculated without reusing prior deltas; this will likely make execution run several times slower; this optimization is typically not needed | ||
Boris Feld
|
r41120 | re-delta-fulladd | ||
every revision will be re-added as if it was new content. It will go through the full storage mechanism giving extensions a chance to process it (eg. lfs). This is similar to "re-delta-all" but even slower since more logic is involved. | ||||
Boris Feld
|
r35346 | |||
r45302 | $ hg debugupgraderepo --quiet | |||
requirements | ||||
preserved: revlogv1, store | ||||
r49515 | added: dotencode, fncache, generaldelta, share-safe, sparserevlog (no-rust !) | |||
added: dotencode, fncache, generaldelta, persistent-nodemap, share-safe, sparserevlog (rust !) | ||||
r45302 | ||||
r46649 | processed revlogs: | |||
- all-filelogs | ||||
- changelog | ||||
- manifest | ||||
Gregory Szorc
|
r30776 | |||
$ hg --config format.dotencode=false debugupgraderepo | ||||
r49276 | note: selecting all-filelogs for processing to change: fncache | |||
note: selecting all-manifestlogs for processing to change: fncache | ||||
note: selecting changelog for processing to change: fncache | ||||
Gregory Szorc
|
r30776 | repository lacks features recommended by current config options: | ||
fncache | ||||
long and reserved filenames may not work correctly; repository performance is sub-optimal | ||||
generaldelta | ||||
deltas within internal storage are unable to choose optimal revisions; repository is larger and slower than it could be; interaction with other repositories may require extra network and CPU resources, making "hg push" and "hg pull" slower | ||||
r49515 | share-safe | |||
old shared repositories do not share source repository requirements and config. This leads to various problems when the source repository format is upgraded or some new extensions are enabled. | ||||
Boris Feld
|
r40954 | sparserevlog | ||
in order to limit disk reading and memory usage on older version, the span of a delta chain from its root to its end is limited, whatever the relevant data in this span. This can severly limit Mercurial ability to build good chain of delta resulting is much more storage space being taken and limit reusability of on disk delta during exchange. | ||||
r47646 | persistent-nodemap (rust !) | |||
persist the node -> rev mapping on disk to speedup lookup (rust !) | ||||
(rust !) | ||||
Gregory Szorc
|
r30776 | repository lacks features used by the default config options: | ||
dotencode | ||||
storage of filenames beginning with a period or space may not work correctly | ||||
performing an upgrade with "--run" will make the following changes: | ||||
requirements | ||||
preserved: revlogv1, store | ||||
r49515 | added: fncache, generaldelta, share-safe, sparserevlog (no-rust !) | |||
added: fncache, generaldelta, persistent-nodemap, share-safe, sparserevlog (rust !) | ||||
Gregory Szorc
|
r30776 | |||
fncache | ||||
repository will be more resilient to storing certain paths and performance of certain operations should be improved | ||||
generaldelta | ||||
repository storage will be able to create optimal deltas; new repository data will be smaller and read times should decrease; interacting with other repositories using this storage model should require less network and CPU resources, making "hg push" and "hg pull" faster | ||||
r49515 | share-safe | |||
Upgrades a repository to share-safe format so that future shares of this repository share its requirements and configs. | ||||
Boris Feld
|
r40954 | sparserevlog | ||
Revlog supports delta chain with more unused data between payload. These gaps will be skipped at read time. This allows for better delta chains, making a better compression and faster exchange with server. | ||||
r47646 | persistent-nodemap (rust !) | |||
Speedup revision lookup by node id. (rust !) | ||||
(rust !) | ||||
r46649 | processed revlogs: | |||
- all-filelogs | ||||
- changelog | ||||
- manifest | ||||
Gregory Szorc
|
r30776 | additional optimizations are available by specifying "--optimize <name>": | ||
Boris Feld
|
r41120 | re-delta-parent | ||
Gregory Szorc
|
r30776 | deltas within internal storage will be recalculated to choose an optimal base revision where this was not already done; the size of the repository may shrink and various operations may become faster; the first time this optimization is performed could slow down upgrade execution considerably; subsequent invocations should not run noticeably slower | ||
Boris Feld
|
r41120 | re-delta-multibase | ||
Gregory Szorc
|
r30776 | deltas within internal storage will be recalculated against multiple base revision and the smallest difference will be used; the size of the repository may shrink significantly when there are many merges; this optimization will slow down execution in proportion to the number of merges in the repository and the amount of files in the repository; this slow down should not be significant unless there are tens of thousands of files and thousands of merges | ||
Boris Feld
|
r41120 | re-delta-all | ||
Gregory Szorc
|
r30776 | deltas within internal storage will always be recalculated without reusing prior deltas; this will likely make execution run several times slower; this optimization is typically not needed | ||
Boris Feld
|
r41120 | re-delta-fulladd | ||
every revision will be re-added as if it was new content. It will go through the full storage mechanism giving extensions a chance to process it (eg. lfs). This is similar to "re-delta-all" but even slower since more logic is involved. | ||||
Boris Feld
|
r35346 | |||
Gregory Szorc
|
r30776 | |||
Gregory Szorc
|
r30777 | $ cd .. | ||
Upgrading a repository that is already modern essentially no-ops | ||||
$ hg init modern | ||||
$ hg -R modern debugupgraderepo --run | ||||
Pulkit Goyal
|
r46848 | nothing to do | ||
Gregory Szorc
|
r30777 | |||
Upgrading a repository to generaldelta works | ||||
$ hg --config format.usegeneraldelta=false init upgradegd | ||||
$ cd upgradegd | ||||
$ touch f0 | ||||
$ hg -q commit -A -m initial | ||||
r43269 | $ mkdir FooBarDirectory.d | |||
$ touch FooBarDirectory.d/f1 | ||||
Gregory Szorc
|
r30777 | $ hg -q commit -A -m 'add f1' | ||
$ hg -q up -r 0 | ||||
r43271 | >>> import random | |||
>>> random.seed(0) # have a reproducible content | ||||
Matt Harbison
|
r43465 | >>> with open("f2", "wb") as f: | ||
r43271 | ... for i in range(100000): | |||
Matt Harbison
|
r43465 | ... f.write(b"%d\n" % random.randint(1000000000, 9999999999)) and None | ||
Gregory Szorc
|
r30777 | $ hg -q commit -A -m 'add f2' | ||
r43271 | make sure we have a .d file | |||
$ ls -d .hg/store/data/* | ||||
.hg/store/data/_foo_bar_directory.d.hg | ||||
.hg/store/data/f0.i | ||||
.hg/store/data/f2.d | ||||
.hg/store/data/f2.i | ||||
Boris Feld
|
r40953 | $ hg debugupgraderepo --run --config format.sparse-revlog=false | ||
r49276 | note: selecting all-filelogs for processing to change: generaldelta | |||
note: selecting all-manifestlogs for processing to change: generaldelta | ||||
note: selecting changelog for processing to change: generaldelta | ||||
Gregory Szorc
|
r30777 | upgrade will perform the following actions: | ||
requirements | ||||
r49515 | preserved: dotencode, fncache, revlogv1, share-safe, store (no-rust !) | |||
preserved: dotencode, fncache, persistent-nodemap, revlogv1, share-safe, store (rust !) | ||||
Gregory Szorc
|
r30777 | added: generaldelta | ||
generaldelta | ||||
repository storage will be able to create optimal deltas; new repository data will be smaller and read times should decrease; interacting with other repositories using this storage model should require less network and CPU resources, making "hg push" and "hg pull" faster | ||||
r46649 | processed revlogs: | |||
- all-filelogs | ||||
- changelog | ||||
- manifest | ||||
Gregory Szorc
|
r30777 | beginning upgrade... | ||
repository locked and read-only | ||||
Pulkit Goyal
|
r46839 | creating temporary repository to stage upgraded data: $TESTTMP/upgradegd/.hg/upgrade.* (glob) | ||
Gregory Szorc
|
r30779 | (it is safe to interrupt this process any time before data migration completes) | ||
migrating 9 total revisions (3 in filelogs, 3 in manifests, 3 in changelog) | ||||
r43271 | migrating 519 KB in store; 1.05 MB tracked data | |||
migrating 3 filelogs containing 3 revisions (518 KB in store; 1.05 MB tracked data) | ||||
Gregory Szorc
|
r30779 | finished migrating 3 filelog revisions across 3 filelogs; change in size: 0 bytes | ||
r43271 | migrating 1 manifests containing 3 revisions (384 bytes in store; 238 bytes tracked data) | |||
finished migrating 3 manifest revisions across 1 manifests; change in size: -17 bytes | ||||
r43269 | migrating changelog containing 3 revisions (394 bytes in store; 199 bytes tracked data) | |||
Gregory Szorc
|
r30779 | finished migrating 3 changelog revisions; change in size: 0 bytes | ||
r43271 | finished migrating 9 total revisions; total change in store size: -17 bytes | |||
Gregory Szorc
|
r30780 | copying phaseroots | ||
r49515 | copying requires | |||
Pulkit Goyal
|
r46839 | data fully upgraded in a temporary repository | ||
Gregory Szorc
|
r30777 | marking source repository as being upgraded; clients will be unable to read from repository | ||
starting in-place swap of repository data | ||||
replaced files will be backed up at $TESTTMP/upgradegd/.hg/upgradebackup.* (glob) | ||||
Gregory Szorc
|
r30779 | replacing store... | ||
store replacement complete; repository was inconsistent for *s (glob) | ||||
Gregory Szorc
|
r30777 | finalizing requirements file and making repository readable again | ||
removing temporary repository $TESTTMP/upgradegd/.hg/upgrade.* (glob) | ||||
copy of old repository backed up at $TESTTMP/upgradegd/.hg/upgradebackup.* (glob) | ||||
the old repository will not be deleted; remove it to free up disk space once the upgraded repository is verified | ||||
Original requirements backed up | ||||
$ cat .hg/upgradebackup.*/requires | ||||
r49515 | share-safe | |||
$ cat .hg/upgradebackup.*/store/requires | ||||
Gregory Szorc
|
r30777 | dotencode | ||
fncache | ||||
r47646 | persistent-nodemap (rust !) | |||
Gregory Szorc
|
r30777 | revlogv1 | ||
store | ||||
r49515 | upgradeinprogress | |||
Gregory Szorc
|
r30777 | |||
generaldelta added to original requirements files | ||||
r49295 | $ hg debugrequires | |||
Gregory Szorc
|
r30777 | dotencode | ||
fncache | ||||
generaldelta | ||||
r47646 | persistent-nodemap (rust !) | |||
Gregory Szorc
|
r30777 | revlogv1 | ||
r49515 | share-safe | |||
Gregory Szorc
|
r30777 | store | ||
Gregory Szorc
|
r30779 | store directory has files we expect | ||
$ ls .hg/store | ||||
00changelog.i | ||||
00manifest.i | ||||
data | ||||
r51555 | data-s | |||
Gregory Szorc
|
r30779 | fncache | ||
Gregory Szorc
|
r30780 | phaseroots | ||
r49515 | requires | |||
Gregory Szorc
|
r30779 | undo | ||
undo.backupfiles | ||||
manifest should be generaldelta | ||||
$ hg debugrevlog -m | grep flags | ||||
flags : inline, generaldelta | ||||
verify should be happy | ||||
Raphaël Gomès
|
r50720 | $ hg verify -q | ||
Gregory Szorc
|
r30779 | |||
old store should be backed up | ||||
Boris Feld
|
r41121 | $ ls -d .hg/upgradebackup.*/ | ||
.hg/upgradebackup.*/ (glob) | ||||
Gregory Szorc
|
r30779 | $ ls .hg/upgradebackup.*/store | ||
00changelog.i | ||||
00manifest.i | ||||
data | ||||
r51555 | data-s | |||
Gregory Szorc
|
r30779 | fncache | ||
phaseroots | ||||
r49515 | requires | |||
Gregory Szorc
|
r30779 | undo | ||
r51579 | undo.backup.fncache.bck | |||
Gregory Szorc
|
r30779 | undo.backupfiles | ||
Boris Feld
|
r41121 | unless --no-backup is passed | ||
$ rm -rf .hg/upgradebackup.*/ | ||||
$ hg debugupgraderepo --run --no-backup | ||||
r49276 | note: selecting all-filelogs for processing to change: sparserevlog | |||
note: selecting all-manifestlogs for processing to change: sparserevlog | ||||
note: selecting changelog for processing to change: sparserevlog | ||||
Boris Feld
|
r41121 | upgrade will perform the following actions: | ||
requirements | ||||
r49515 | preserved: dotencode, fncache, generaldelta, revlogv1, share-safe, store (no-rust !) | |||
preserved: dotencode, fncache, generaldelta, persistent-nodemap, revlogv1, share-safe, store (rust !) | ||||
Boris Feld
|
r41121 | added: sparserevlog | ||
sparserevlog | ||||
Revlog supports delta chain with more unused data between payload. These gaps will be skipped at read time. This allows for better delta chains, making a better compression and faster exchange with server. | ||||
r46649 | processed revlogs: | |||
- all-filelogs | ||||
- changelog | ||||
- manifest | ||||
Boris Feld
|
r41121 | beginning upgrade... | ||
repository locked and read-only | ||||
Pulkit Goyal
|
r46839 | creating temporary repository to stage upgraded data: $TESTTMP/upgradegd/.hg/upgrade.* (glob) | ||
Boris Feld
|
r41121 | (it is safe to interrupt this process any time before data migration completes) | ||
migrating 9 total revisions (3 in filelogs, 3 in manifests, 3 in changelog) | ||||
r43271 | migrating 519 KB in store; 1.05 MB tracked data | |||
migrating 3 filelogs containing 3 revisions (518 KB in store; 1.05 MB tracked data) | ||||
Boris Feld
|
r41121 | finished migrating 3 filelog revisions across 3 filelogs; change in size: 0 bytes | ||
r43269 | migrating 1 manifests containing 3 revisions (367 bytes in store; 238 bytes tracked data) | |||
Boris Feld
|
r41121 | finished migrating 3 manifest revisions across 1 manifests; change in size: 0 bytes | ||
r43269 | migrating changelog containing 3 revisions (394 bytes in store; 199 bytes tracked data) | |||
Boris Feld
|
r41121 | finished migrating 3 changelog revisions; change in size: 0 bytes | ||
finished migrating 9 total revisions; total change in store size: 0 bytes | ||||
copying phaseroots | ||||
r49515 | copying requires | |||
Pulkit Goyal
|
r46839 | data fully upgraded in a temporary repository | ||
Boris Feld
|
r41121 | marking source repository as being upgraded; clients will be unable to read from repository | ||
starting in-place swap of repository data | ||||
replacing store... | ||||
Pulkit Goyal
|
r42157 | store replacement complete; repository was inconsistent for * (glob) | ||
Boris Feld
|
r41121 | finalizing requirements file and making repository readable again | ||
removing temporary repository $TESTTMP/upgradegd/.hg/upgrade.* (glob) | ||||
$ ls -1 .hg/ | grep upgradebackup | ||||
[1] | ||||
r43098 | ||||
We can restrict optimization to some revlog: | ||||
$ hg debugupgrade --optimize re-delta-parent --run --manifest --no-backup --debug --traceback | ||||
upgrade will perform the following actions: | ||||
requirements | ||||
r49515 | preserved: dotencode, fncache, generaldelta, revlogv1, share-safe, sparserevlog, store (no-rust !) | |||
preserved: dotencode, fncache, generaldelta, persistent-nodemap, revlogv1, share-safe, sparserevlog, store (rust !) | ||||
r43098 | ||||
r45301 | optimisations: re-delta-parent | |||
r43098 | re-delta-parent | |||
deltas within internal storage will choose a new base revision if needed | ||||
r46649 | processed revlogs: | |||
- manifest | ||||
r43098 | beginning upgrade... | |||
repository locked and read-only | ||||
Pulkit Goyal
|
r46839 | creating temporary repository to stage upgraded data: $TESTTMP/upgradegd/.hg/upgrade.* (glob) | ||
r43098 | (it is safe to interrupt this process any time before data migration completes) | |||
migrating 9 total revisions (3 in filelogs, 3 in manifests, 3 in changelog) | ||||
r43271 | migrating 519 KB in store; 1.05 MB tracked data | |||
migrating 3 filelogs containing 3 revisions (518 KB in store; 1.05 MB tracked data) | ||||
r43269 | blindly copying data/FooBarDirectory.d/f1.i containing 1 revisions | |||
r43098 | blindly copying data/f0.i containing 1 revisions | |||
blindly copying data/f2.i containing 1 revisions | ||||
finished migrating 3 filelog revisions across 3 filelogs; change in size: 0 bytes | ||||
r43269 | migrating 1 manifests containing 3 revisions (367 bytes in store; 238 bytes tracked data) | |||
r43098 | cloning 3 revisions from 00manifest.i | |||
finished migrating 3 manifest revisions across 1 manifests; change in size: 0 bytes | ||||
r43269 | migrating changelog containing 3 revisions (394 bytes in store; 199 bytes tracked data) | |||
r43098 | blindly copying 00changelog.i containing 3 revisions | |||
finished migrating 3 changelog revisions; change in size: 0 bytes | ||||
finished migrating 9 total revisions; total change in store size: 0 bytes | ||||
copying phaseroots | ||||
r49515 | copying requires | |||
Pulkit Goyal
|
r46839 | data fully upgraded in a temporary repository | ||
r43098 | marking source repository as being upgraded; clients will be unable to read from repository | |||
starting in-place swap of repository data | ||||
replacing store... | ||||
store replacement complete; repository was inconsistent for *s (glob) | ||||
finalizing requirements file and making repository readable again | ||||
removing temporary repository $TESTTMP/upgradegd/.hg/upgrade.* (glob) | ||||
Check that the repo still works fine | ||||
r43271 | $ hg log -G --stat | |||
Matt Harbison
|
r50772 | @ changeset: 2:fca376863211 | ||
r43098 | | tag: tip | |||
| parent: 0:ba592bf28da2 | ||||
| user: test | ||||
| date: Thu Jan 01 00:00:00 1970 +0000 | ||||
| summary: add f2 | ||||
| | ||||
r43271 | | f2 | 100000 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | |||
| 1 files changed, 100000 insertions(+), 0 deletions(-) | ||||
r43098 | | | |||
r43269 | | o changeset: 1:2029ce2354e2 | |||
r43098 | |/ user: test | |||
| date: Thu Jan 01 00:00:00 1970 +0000 | ||||
| summary: add f1 | ||||
| | ||||
| | ||||
o changeset: 0:ba592bf28da2 | ||||
user: test | ||||
date: Thu Jan 01 00:00:00 1970 +0000 | ||||
summary: initial | ||||
Raphaël Gomès
|
r50720 | $ hg verify -q | ||
r43098 | ||||
Check we can select negatively | ||||
$ hg debugupgrade --optimize re-delta-parent --run --no-manifest --no-backup --debug --traceback | ||||
upgrade will perform the following actions: | ||||
requirements | ||||
r49515 | preserved: dotencode, fncache, generaldelta, revlogv1, share-safe, sparserevlog, store (no-rust !) | |||
preserved: dotencode, fncache, generaldelta, persistent-nodemap, revlogv1, share-safe, sparserevlog, store (rust !) | ||||
r43098 | ||||
r45301 | optimisations: re-delta-parent | |||
r43098 | re-delta-parent | |||
deltas within internal storage will choose a new base revision if needed | ||||
r46649 | processed revlogs: | |||
- all-filelogs | ||||
- changelog | ||||
r43098 | beginning upgrade... | |||
repository locked and read-only | ||||
Pulkit Goyal
|
r46839 | creating temporary repository to stage upgraded data: $TESTTMP/upgradegd/.hg/upgrade.* (glob) | ||
r43098 | (it is safe to interrupt this process any time before data migration completes) | |||
migrating 9 total revisions (3 in filelogs, 3 in manifests, 3 in changelog) | ||||
r43271 | migrating 519 KB in store; 1.05 MB tracked data | |||
migrating 3 filelogs containing 3 revisions (518 KB in store; 1.05 MB tracked data) | ||||
r43269 | cloning 1 revisions from data/FooBarDirectory.d/f1.i | |||
r43098 | cloning 1 revisions from data/f0.i | |||
cloning 1 revisions from data/f2.i | ||||
finished migrating 3 filelog revisions across 3 filelogs; change in size: 0 bytes | ||||
r43269 | migrating 1 manifests containing 3 revisions (367 bytes in store; 238 bytes tracked data) | |||
r43098 | blindly copying 00manifest.i containing 3 revisions | |||
finished migrating 3 manifest revisions across 1 manifests; change in size: 0 bytes | ||||
r43269 | migrating changelog containing 3 revisions (394 bytes in store; 199 bytes tracked data) | |||
r43098 | cloning 3 revisions from 00changelog.i | |||
finished migrating 3 changelog revisions; change in size: 0 bytes | ||||
finished migrating 9 total revisions; total change in store size: 0 bytes | ||||
copying phaseroots | ||||
r49515 | copying requires | |||
Pulkit Goyal
|
r46839 | data fully upgraded in a temporary repository | ||
r43098 | marking source repository as being upgraded; clients will be unable to read from repository | |||
starting in-place swap of repository data | ||||
replacing store... | ||||
store replacement complete; repository was inconsistent for *s (glob) | ||||
finalizing requirements file and making repository readable again | ||||
removing temporary repository $TESTTMP/upgradegd/.hg/upgrade.* (glob) | ||||
Raphaël Gomès
|
r50720 | $ hg verify -q | ||
r43098 | ||||
r43099 | Check that we can select changelog only | |||
$ hg debugupgrade --optimize re-delta-parent --run --changelog --no-backup --debug --traceback | ||||
upgrade will perform the following actions: | ||||
requirements | ||||
r49515 | preserved: dotencode, fncache, generaldelta, revlogv1, share-safe, sparserevlog, store (no-rust !) | |||
preserved: dotencode, fncache, generaldelta, persistent-nodemap, revlogv1, share-safe, sparserevlog, store (rust !) | ||||
r43099 | ||||
r45301 | optimisations: re-delta-parent | |||
r43099 | re-delta-parent | |||
deltas within internal storage will choose a new base revision if needed | ||||
r46649 | processed revlogs: | |||
- changelog | ||||
r43099 | beginning upgrade... | |||
repository locked and read-only | ||||
Pulkit Goyal
|
r46839 | creating temporary repository to stage upgraded data: $TESTTMP/upgradegd/.hg/upgrade.* (glob) | ||
r43099 | (it is safe to interrupt this process any time before data migration completes) | |||
migrating 9 total revisions (3 in filelogs, 3 in manifests, 3 in changelog) | ||||
r43271 | migrating 519 KB in store; 1.05 MB tracked data | |||
migrating 3 filelogs containing 3 revisions (518 KB in store; 1.05 MB tracked data) | ||||
r43269 | blindly copying data/FooBarDirectory.d/f1.i containing 1 revisions | |||
r43099 | blindly copying data/f0.i containing 1 revisions | |||
blindly copying data/f2.i containing 1 revisions | ||||
finished migrating 3 filelog revisions across 3 filelogs; change in size: 0 bytes | ||||
r43269 | migrating 1 manifests containing 3 revisions (367 bytes in store; 238 bytes tracked data) | |||
r43099 | blindly copying 00manifest.i containing 3 revisions | |||
finished migrating 3 manifest revisions across 1 manifests; change in size: 0 bytes | ||||
r43269 | migrating changelog containing 3 revisions (394 bytes in store; 199 bytes tracked data) | |||
r43099 | cloning 3 revisions from 00changelog.i | |||
finished migrating 3 changelog revisions; change in size: 0 bytes | ||||
finished migrating 9 total revisions; total change in store size: 0 bytes | ||||
copying phaseroots | ||||
r49515 | copying requires | |||
Pulkit Goyal
|
r46839 | data fully upgraded in a temporary repository | ||
r43099 | marking source repository as being upgraded; clients will be unable to read from repository | |||
starting in-place swap of repository data | ||||
replacing store... | ||||
store replacement complete; repository was inconsistent for *s (glob) | ||||
finalizing requirements file and making repository readable again | ||||
removing temporary repository $TESTTMP/upgradegd/.hg/upgrade.* (glob) | ||||
Raphaël Gomès
|
r50720 | $ hg verify -q | ||
r43099 | ||||
Check that we can select filelog only | ||||
$ hg debugupgrade --optimize re-delta-parent --run --no-changelog --no-manifest --no-backup --debug --traceback | ||||
upgrade will perform the following actions: | ||||
requirements | ||||
r49515 | preserved: dotencode, fncache, generaldelta, revlogv1, share-safe, sparserevlog, store (no-rust !) | |||
preserved: dotencode, fncache, generaldelta, persistent-nodemap, revlogv1, share-safe, sparserevlog, store (rust !) | ||||
r43099 | ||||
r45301 | optimisations: re-delta-parent | |||
r43099 | re-delta-parent | |||
deltas within internal storage will choose a new base revision if needed | ||||
r46649 | processed revlogs: | |||
- all-filelogs | ||||
r43099 | beginning upgrade... | |||
repository locked and read-only | ||||
Pulkit Goyal
|
r46839 | creating temporary repository to stage upgraded data: $TESTTMP/upgradegd/.hg/upgrade.* (glob) | ||
r43099 | (it is safe to interrupt this process any time before data migration completes) | |||
migrating 9 total revisions (3 in filelogs, 3 in manifests, 3 in changelog) | ||||
r43271 | migrating 519 KB in store; 1.05 MB tracked data | |||
migrating 3 filelogs containing 3 revisions (518 KB in store; 1.05 MB tracked data) | ||||
r43269 | cloning 1 revisions from data/FooBarDirectory.d/f1.i | |||
r43099 | cloning 1 revisions from data/f0.i | |||
cloning 1 revisions from data/f2.i | ||||
finished migrating 3 filelog revisions across 3 filelogs; change in size: 0 bytes | ||||
r43269 | migrating 1 manifests containing 3 revisions (367 bytes in store; 238 bytes tracked data) | |||
r43099 | blindly copying 00manifest.i containing 3 revisions | |||
finished migrating 3 manifest revisions across 1 manifests; change in size: 0 bytes | ||||
r43269 | migrating changelog containing 3 revisions (394 bytes in store; 199 bytes tracked data) | |||
r43099 | blindly copying 00changelog.i containing 3 revisions | |||
finished migrating 3 changelog revisions; change in size: 0 bytes | ||||
finished migrating 9 total revisions; total change in store size: 0 bytes | ||||
copying phaseroots | ||||
r49515 | copying requires | |||
Pulkit Goyal
|
r46839 | data fully upgraded in a temporary repository | ||
r43099 | marking source repository as being upgraded; clients will be unable to read from repository | |||
starting in-place swap of repository data | ||||
replacing store... | ||||
store replacement complete; repository was inconsistent for *s (glob) | ||||
finalizing requirements file and making repository readable again | ||||
removing temporary repository $TESTTMP/upgradegd/.hg/upgrade.* (glob) | ||||
Raphaël Gomès
|
r50720 | $ hg verify -q | ||
r43099 | ||||
r43100 | ||||
Check you can't skip revlog clone during important format downgrade | ||||
$ echo "[format]" > .hg/hgrc | ||||
$ echo "sparse-revlog=no" >> .hg/hgrc | ||||
r49275 | $ hg debugupgrade --optimize re-delta-parent --no-manifest --no-backup --quiet | |||
warning: ignoring --no-manifest, as upgrade is changing: sparserevlog | ||||
requirements | ||||
r49515 | preserved: dotencode, fncache, generaldelta, revlogv1, share-safe, store (no-rust !) | |||
preserved: dotencode, fncache, generaldelta, persistent-nodemap, revlogv1, share-safe, store (rust !) | ||||
r49275 | removed: sparserevlog | |||
optimisations: re-delta-parent | ||||
processed revlogs: | ||||
- all-filelogs | ||||
- changelog | ||||
- manifest | ||||
r43100 | $ hg debugupgrade --optimize re-delta-parent --run --manifest --no-backup --debug --traceback | |||
r49276 | note: selecting all-filelogs for processing to change: sparserevlog | |||
note: selecting changelog for processing to change: sparserevlog | ||||
r43100 | upgrade will perform the following actions: | |||
requirements | ||||
r49515 | preserved: dotencode, fncache, generaldelta, revlogv1, share-safe, store (no-rust !) | |||
preserved: dotencode, fncache, generaldelta, persistent-nodemap, revlogv1, share-safe, store (rust !) | ||||
r43100 | removed: sparserevlog | |||
r45301 | optimisations: re-delta-parent | |||
r43100 | re-delta-parent | |||
deltas within internal storage will choose a new base revision if needed | ||||
r46649 | processed revlogs: | |||
- all-filelogs | ||||
- changelog | ||||
- manifest | ||||
r43100 | beginning upgrade... | |||
repository locked and read-only | ||||
Pulkit Goyal
|
r46839 | creating temporary repository to stage upgraded data: $TESTTMP/upgradegd/.hg/upgrade.* (glob) | ||
r43100 | (it is safe to interrupt this process any time before data migration completes) | |||
migrating 9 total revisions (3 in filelogs, 3 in manifests, 3 in changelog) | ||||
r43271 | migrating 519 KB in store; 1.05 MB tracked data | |||
migrating 3 filelogs containing 3 revisions (518 KB in store; 1.05 MB tracked data) | ||||
r43269 | cloning 1 revisions from data/FooBarDirectory.d/f1.i | |||
r43100 | cloning 1 revisions from data/f0.i | |||
cloning 1 revisions from data/f2.i | ||||
finished migrating 3 filelog revisions across 3 filelogs; change in size: 0 bytes | ||||
r43269 | migrating 1 manifests containing 3 revisions (367 bytes in store; 238 bytes tracked data) | |||
r43100 | cloning 3 revisions from 00manifest.i | |||
finished migrating 3 manifest revisions across 1 manifests; change in size: 0 bytes | ||||
r43269 | migrating changelog containing 3 revisions (394 bytes in store; 199 bytes tracked data) | |||
r43100 | cloning 3 revisions from 00changelog.i | |||
finished migrating 3 changelog revisions; change in size: 0 bytes | ||||
finished migrating 9 total revisions; total change in store size: 0 bytes | ||||
copying phaseroots | ||||
r49515 | copying requires | |||
Pulkit Goyal
|
r46839 | data fully upgraded in a temporary repository | ||
r43100 | marking source repository as being upgraded; clients will be unable to read from repository | |||
starting in-place swap of repository data | ||||
replacing store... | ||||
store replacement complete; repository was inconsistent for *s (glob) | ||||
finalizing requirements file and making repository readable again | ||||
removing temporary repository $TESTTMP/upgradegd/.hg/upgrade.* (glob) | ||||
Raphaël Gomès
|
r50720 | $ hg verify -q | ||
r43100 | ||||
Check you can't skip revlog clone during important format upgrade | ||||
$ echo "sparse-revlog=yes" >> .hg/hgrc | ||||
$ hg debugupgrade --optimize re-delta-parent --run --manifest --no-backup --debug --traceback | ||||
r49276 | note: selecting all-filelogs for processing to change: sparserevlog | |||
note: selecting changelog for processing to change: sparserevlog | ||||
r43100 | upgrade will perform the following actions: | |||
requirements | ||||
r49515 | preserved: dotencode, fncache, generaldelta, revlogv1, share-safe, store (no-rust !) | |||
preserved: dotencode, fncache, generaldelta, persistent-nodemap, revlogv1, share-safe, store (rust !) | ||||
r43100 | added: sparserevlog | |||
r45301 | optimisations: re-delta-parent | |||
r43100 | sparserevlog | |||
Revlog supports delta chain with more unused data between payload. These gaps will be skipped at read time. This allows for better delta chains, making a better compression and faster exchange with server. | ||||
re-delta-parent | ||||
deltas within internal storage will choose a new base revision if needed | ||||
r46649 | processed revlogs: | |||
- all-filelogs | ||||
- changelog | ||||
- manifest | ||||
r43100 | beginning upgrade... | |||
repository locked and read-only | ||||
Pulkit Goyal
|
r46839 | creating temporary repository to stage upgraded data: $TESTTMP/upgradegd/.hg/upgrade.* (glob) | ||
r43100 | (it is safe to interrupt this process any time before data migration completes) | |||
migrating 9 total revisions (3 in filelogs, 3 in manifests, 3 in changelog) | ||||
r43271 | migrating 519 KB in store; 1.05 MB tracked data | |||
migrating 3 filelogs containing 3 revisions (518 KB in store; 1.05 MB tracked data) | ||||
r43269 | cloning 1 revisions from data/FooBarDirectory.d/f1.i | |||
r43100 | cloning 1 revisions from data/f0.i | |||
cloning 1 revisions from data/f2.i | ||||
finished migrating 3 filelog revisions across 3 filelogs; change in size: 0 bytes | ||||
r43269 | migrating 1 manifests containing 3 revisions (367 bytes in store; 238 bytes tracked data) | |||
r43100 | cloning 3 revisions from 00manifest.i | |||
finished migrating 3 manifest revisions across 1 manifests; change in size: 0 bytes | ||||
r43269 | migrating changelog containing 3 revisions (394 bytes in store; 199 bytes tracked data) | |||
r43100 | cloning 3 revisions from 00changelog.i | |||
finished migrating 3 changelog revisions; change in size: 0 bytes | ||||
finished migrating 9 total revisions; total change in store size: 0 bytes | ||||
copying phaseroots | ||||
r49515 | copying requires | |||
Pulkit Goyal
|
r46839 | data fully upgraded in a temporary repository | ||
r43100 | marking source repository as being upgraded; clients will be unable to read from repository | |||
starting in-place swap of repository data | ||||
replacing store... | ||||
store replacement complete; repository was inconsistent for *s (glob) | ||||
finalizing requirements file and making repository readable again | ||||
removing temporary repository $TESTTMP/upgradegd/.hg/upgrade.* (glob) | ||||
Raphaël Gomès
|
r50720 | $ hg verify -q | ||
r43100 | ||||
Gregory Szorc
|
r30777 | $ cd .. | ||
Gregory Szorc
|
r31798 | |||
store files with special filenames aren't encoded during copy | ||||
$ hg init store-filenames | ||||
$ cd store-filenames | ||||
$ touch foo | ||||
$ hg -q commit -A -m initial | ||||
$ touch .hg/store/.XX_special_filename | ||||
$ hg debugupgraderepo --run | ||||
Pulkit Goyal
|
r46848 | nothing to do | ||
Pulkit Goyal
|
r46825 | $ hg debugupgraderepo --run --optimize 're-delta-fulladd' | ||
Boris Feld
|
r35346 | upgrade will perform the following actions: | ||
requirements | ||||
r49515 | preserved: dotencode, fncache, generaldelta, revlogv1, share-safe, sparserevlog, store (no-rust !) | |||
preserved: dotencode, fncache, generaldelta, persistent-nodemap, revlogv1, share-safe, sparserevlog, store (rust !) | ||||
Boris Feld
|
r35346 | |||
r45301 | optimisations: re-delta-fulladd | |||
Boris Feld
|
r41120 | re-delta-fulladd | ||
Boris Feld
|
r35346 | each revision will be added as new content to the internal storage; this will likely drastically slow down execution time, but some extensions might need it | ||
r46649 | processed revlogs: | |||
- all-filelogs | ||||
- changelog | ||||
- manifest | ||||
Boris Feld
|
r35346 | beginning upgrade... | ||
repository locked and read-only | ||||
Pulkit Goyal
|
r46839 | creating temporary repository to stage upgraded data: $TESTTMP/store-filenames/.hg/upgrade.* (glob) | ||
Boris Feld
|
r35346 | (it is safe to interrupt this process any time before data migration completes) | ||
migrating 3 total revisions (1 in filelogs, 1 in manifests, 1 in changelog) | ||||
Gregory Szorc
|
r39893 | migrating 301 bytes in store; 107 bytes tracked data | ||
migrating 1 filelogs containing 1 revisions (64 bytes in store; 0 bytes tracked data) | ||||
Boris Feld
|
r35346 | finished migrating 1 filelog revisions across 1 filelogs; change in size: 0 bytes | ||
Gregory Szorc
|
r39893 | migrating 1 manifests containing 1 revisions (110 bytes in store; 45 bytes tracked data) | ||
Boris Feld
|
r35346 | finished migrating 1 manifest revisions across 1 manifests; change in size: 0 bytes | ||
Gregory Szorc
|
r39893 | migrating changelog containing 1 revisions (127 bytes in store; 62 bytes tracked data) | ||
Boris Feld
|
r35346 | finished migrating 1 changelog revisions; change in size: 0 bytes | ||
finished migrating 3 total revisions; total change in store size: 0 bytes | ||||
copying .XX_special_filename | ||||
copying phaseroots | ||||
r49515 | copying requires | |||
Pulkit Goyal
|
r46839 | data fully upgraded in a temporary repository | ||
Boris Feld
|
r35346 | marking source repository as being upgraded; clients will be unable to read from repository | ||
starting in-place swap of repository data | ||||
replaced files will be backed up at $TESTTMP/store-filenames/.hg/upgradebackup.* (glob) | ||||
replacing store... | ||||
Matt Harbison
|
r35361 | store replacement complete; repository was inconsistent for *s (glob) | ||
Boris Feld
|
r35346 | finalizing requirements file and making repository readable again | ||
removing temporary repository $TESTTMP/store-filenames/.hg/upgrade.* (glob) | ||||
copy of old repository backed up at $TESTTMP/store-filenames/.hg/upgradebackup.* (glob) | ||||
the old repository will not be deleted; remove it to free up disk space once the upgraded repository is verified | ||||
Gregory Szorc
|
r31798 | |||
Boris Feld
|
r40871 | fncache is valid after upgrade | ||
$ hg debugrebuildfncache | ||||
fncache already up to date | ||||
Gregory Szorc
|
r31798 | $ cd .. | ||
Boris Feld
|
r35304 | |||
Check upgrading a large file repository | ||||
--------------------------------------- | ||||
$ hg init largefilesrepo | ||||
$ cat << EOF >> largefilesrepo/.hg/hgrc | ||||
> [extensions] | ||||
> largefiles = | ||||
> EOF | ||||
$ cd largefilesrepo | ||||
$ touch foo | ||||
$ hg add --large foo | ||||
$ hg -q commit -m initial | ||||
r49502 | $ hg debugrequires | |||
Boris Feld
|
r35304 | dotencode | ||
fncache | ||||
generaldelta | ||||
largefiles | ||||
r47646 | persistent-nodemap (rust !) | |||
Boris Feld
|
r35304 | revlogv1 | ||
r49515 | share-safe | |||
Boris Feld
|
r40954 | sparserevlog | ||
Boris Feld
|
r35304 | store | ||
$ hg debugupgraderepo --run | ||||
Pulkit Goyal
|
r46848 | nothing to do | ||
r49502 | $ hg debugrequires | |||
Boris Feld
|
r35304 | dotencode | ||
fncache | ||||
generaldelta | ||||
largefiles | ||||
r47646 | persistent-nodemap (rust !) | |||
Boris Feld
|
r35304 | revlogv1 | ||
r49515 | share-safe | |||
Boris Feld
|
r40954 | sparserevlog | ||
Boris Feld
|
r35304 | store | ||
Boris Feld
|
r35342 | |||
Matt Harbison
|
r35362 | $ cat << EOF >> .hg/hgrc | ||
> [extensions] | ||||
> lfs = | ||||
> [lfs] | ||||
> threshold = 10 | ||||
> EOF | ||||
$ echo '123456789012345' > lfs.bin | ||||
$ hg ci -Am 'lfs.bin' | ||||
adding lfs.bin | ||||
r49503 | $ hg debugrequires | grep lfs | |||
Matt Harbison
|
r35362 | lfs | ||
$ find .hg/store/lfs -type f | ||||
.hg/store/lfs/objects/d0/beab232adff5ba365880366ad30b1edb85c4c5372442b5d2fe27adc96d653f | ||||
$ hg debugupgraderepo --run | ||||
Pulkit Goyal
|
r46848 | nothing to do | ||
Matt Harbison
|
r35362 | |||
r49503 | $ hg debugrequires | grep lfs | |||
Matt Harbison
|
r35362 | lfs | ||
$ find .hg/store/lfs -type f | ||||
Matt Harbison
|
r35364 | .hg/store/lfs/objects/d0/beab232adff5ba365880366ad30b1edb85c4c5372442b5d2fe27adc96d653f | ||
Raphaël Gomès
|
r50720 | $ hg verify -q | ||
Matt Harbison
|
r35362 | $ hg debugdata lfs.bin 0 | ||
version https://git-lfs.github.com/spec/v1 | ||||
oid sha256:d0beab232adff5ba365880366ad30b1edb85c4c5372442b5d2fe27adc96d653f | ||||
size 16 | ||||
x-is-binary 0 | ||||
Boris Feld
|
r35342 | $ cd .. | ||
repository config is taken in account | ||||
------------------------------------- | ||||
$ cat << EOF >> $HGRCPATH | ||||
> [format] | ||||
> maxchainlen = 1 | ||||
> EOF | ||||
$ hg init localconfig | ||||
$ cd localconfig | ||||
$ cat << EOF > file | ||||
> some content | ||||
> with some length | ||||
> to make sure we get a delta | ||||
> after changes | ||||
> very long | ||||
> very long | ||||
> very long | ||||
> very long | ||||
> very long | ||||
> very long | ||||
> very long | ||||
> very long | ||||
> very long | ||||
> very long | ||||
> very long | ||||
> EOF | ||||
$ hg -q commit -A -m A | ||||
$ echo "new line" >> file | ||||
$ hg -q commit -m B | ||||
$ echo "new line" >> file | ||||
$ hg -q commit -m C | ||||
$ cat << EOF >> .hg/hgrc | ||||
> [format] | ||||
> maxchainlen = 9001 | ||||
> EOF | ||||
$ hg config format | ||||
r47608 | format.revlog-compression=$BUNDLE2_COMPRESSIONS$ | |||
Boris Feld
|
r35342 | format.maxchainlen=9001 | ||
r51969 | $ hg debugdeltachain file --all-info | |||
r50116 | rev p1 p2 chain# chainlen prev delta size rawsize chainsize ratio lindist extradist extraratio readsize largestblk rddensity srchunks | |||
0 -1 -1 1 1 -1 base 77 182 77 0.42308 77 0 0.00000 77 77 1.00000 1 | ||||
1 0 -1 1 2 0 p1 21 191 98 0.51309 98 0 0.00000 98 98 1.00000 1 | ||||
2 1 -1 1 2 0 snap 30 200 107 0.53500 128 21 0.19626 128 128 0.83594 1 | ||||
Boris Feld
|
r35342 | |||
Pulkit Goyal
|
r46825 | $ hg debugupgraderepo --run --optimize 're-delta-all' | ||
Boris Feld
|
r35342 | upgrade will perform the following actions: | ||
requirements | ||||
r49515 | preserved: dotencode, fncache, generaldelta, revlogv1, share-safe, sparserevlog, store (no-rust !) | |||
preserved: dotencode, fncache, generaldelta, persistent-nodemap, revlogv1, share-safe, sparserevlog, store (rust !) | ||||
Boris Feld
|
r35342 | |||
r45301 | optimisations: re-delta-all | |||
Boris Feld
|
r41120 | re-delta-all | ||
Boris Feld
|
r35342 | deltas within internal storage will be fully recomputed; this will likely drastically slow down execution time | ||
r46649 | processed revlogs: | |||
- all-filelogs | ||||
- changelog | ||||
- manifest | ||||
Boris Feld
|
r35342 | beginning upgrade... | ||
repository locked and read-only | ||||
Pulkit Goyal
|
r46839 | creating temporary repository to stage upgraded data: $TESTTMP/localconfig/.hg/upgrade.* (glob) | ||
Boris Feld
|
r35342 | (it is safe to interrupt this process any time before data migration completes) | ||
migrating 9 total revisions (3 in filelogs, 3 in manifests, 3 in changelog) | ||||
Boris Feld
|
r40954 | migrating 1019 bytes in store; 882 bytes tracked data | ||
migrating 1 filelogs containing 3 revisions (320 bytes in store; 573 bytes tracked data) | ||||
finished migrating 3 filelog revisions across 1 filelogs; change in size: -9 bytes | ||||
Gregory Szorc
|
r39893 | migrating 1 manifests containing 3 revisions (333 bytes in store; 138 bytes tracked data) | ||
Boris Feld
|
r35342 | finished migrating 3 manifest revisions across 1 manifests; change in size: 0 bytes | ||
Gregory Szorc
|
r39893 | migrating changelog containing 3 revisions (366 bytes in store; 171 bytes tracked data) | ||
Boris Feld
|
r35342 | finished migrating 3 changelog revisions; change in size: 0 bytes | ||
Boris Feld
|
r40954 | finished migrating 9 total revisions; total change in store size: -9 bytes | ||
Boris Feld
|
r35342 | copying phaseroots | ||
r49515 | copying requires | |||
Pulkit Goyal
|
r46839 | data fully upgraded in a temporary repository | ||
Boris Feld
|
r35342 | marking source repository as being upgraded; clients will be unable to read from repository | ||
starting in-place swap of repository data | ||||
replaced files will be backed up at $TESTTMP/localconfig/.hg/upgradebackup.* (glob) | ||||
replacing store... | ||||
Matt Harbison
|
r35361 | store replacement complete; repository was inconsistent for *s (glob) | ||
Boris Feld
|
r35342 | finalizing requirements file and making repository readable again | ||
removing temporary repository $TESTTMP/localconfig/.hg/upgrade.* (glob) | ||||
copy of old repository backed up at $TESTTMP/localconfig/.hg/upgradebackup.* (glob) | ||||
the old repository will not be deleted; remove it to free up disk space once the upgraded repository is verified | ||||
r51969 | $ hg debugdeltachain file --all-info | |||
r50116 | rev p1 p2 chain# chainlen prev delta size rawsize chainsize ratio lindist extradist extraratio readsize largestblk rddensity srchunks | |||
0 -1 -1 1 1 -1 base 77 182 77 0.42308 77 0 0.00000 77 77 1.00000 1 | ||||
1 0 -1 1 2 0 p1 21 191 98 0.51309 98 0 0.00000 98 98 1.00000 1 | ||||
2 1 -1 1 3 1 p1 21 200 119 0.59500 119 0 0.00000 119 119 1.00000 1 | ||||
Boris Feld
|
r35342 | $ cd .. | ||
$ cat << EOF >> $HGRCPATH | ||||
> [format] | ||||
> maxchainlen = 9001 | ||||
> EOF | ||||
Paul Morelle
|
r38742 | |||
Check upgrading a sparse-revlog repository | ||||
--------------------------------------- | ||||
Boris Feld
|
r40953 | $ hg init sparserevlogrepo --config format.sparse-revlog=no | ||
Paul Morelle
|
r38742 | $ cd sparserevlogrepo | ||
$ touch foo | ||||
$ hg add foo | ||||
$ hg -q commit -m "foo" | ||||
r49502 | $ hg debugrequires | |||
Paul Morelle
|
r38742 | dotencode | ||
fncache | ||||
generaldelta | ||||
r47646 | persistent-nodemap (rust !) | |||
Paul Morelle
|
r38742 | revlogv1 | ||
r49515 | share-safe | |||
Paul Morelle
|
r38742 | store | ||
Check that we can add the sparse-revlog format requirement | ||||
r45302 | $ hg --config format.sparse-revlog=yes debugupgraderepo --run --quiet | |||
upgrade will perform the following actions: | ||||
requirements | ||||
r49515 | preserved: dotencode, fncache, generaldelta, revlogv1, share-safe, store (no-rust !) | |||
preserved: dotencode, fncache, generaldelta, persistent-nodemap, revlogv1, share-safe, store (rust !) | ||||
r45302 | added: sparserevlog | |||
r46649 | processed revlogs: | |||
- all-filelogs | ||||
- changelog | ||||
- manifest | ||||
r49502 | $ hg debugrequires | |||
Paul Morelle
|
r38742 | dotencode | ||
fncache | ||||
generaldelta | ||||
r47646 | persistent-nodemap (rust !) | |||
Paul Morelle
|
r38742 | revlogv1 | ||
r49515 | share-safe | |||
Paul Morelle
|
r38742 | sparserevlog | ||
store | ||||
Check that we can remove the sparse-revlog format requirement | ||||
r45302 | $ hg --config format.sparse-revlog=no debugupgraderepo --run --quiet | |||
upgrade will perform the following actions: | ||||
requirements | ||||
r49515 | preserved: dotencode, fncache, generaldelta, revlogv1, share-safe, store (no-rust !) | |||
preserved: dotencode, fncache, generaldelta, persistent-nodemap, revlogv1, share-safe, store (rust !) | ||||
r45302 | removed: sparserevlog | |||
r46649 | processed revlogs: | |||
- all-filelogs | ||||
- changelog | ||||
- manifest | ||||
r49502 | $ hg debugrequires | |||
Paul Morelle
|
r38742 | dotencode | ||
fncache | ||||
generaldelta | ||||
r47646 | persistent-nodemap (rust !) | |||
Paul Morelle
|
r38742 | revlogv1 | ||
r49515 | share-safe | |||
Paul Morelle
|
r38742 | store | ||
r42306 | ||||
#if zstd | ||||
Check upgrading to a zstd revlog | ||||
-------------------------------- | ||||
upgrade | ||||
r45302 | $ hg --config format.revlog-compression=zstd debugupgraderepo --run --no-backup --quiet | |||
upgrade will perform the following actions: | ||||
requirements | ||||
r49515 | preserved: dotencode, fncache, generaldelta, revlogv1, share-safe, store (no-rust !) | |||
preserved: dotencode, fncache, generaldelta, persistent-nodemap, revlogv1, share-safe, store (rust !) | ||||
r45302 | added: revlog-compression-zstd, sparserevlog | |||
r46649 | processed revlogs: | |||
- all-filelogs | ||||
- changelog | ||||
- manifest | ||||
r42306 | $ hg debugformat -v | |||
r45303 | format-variant repo config default | |||
fncache: yes yes yes | ||||
Simon Sapin
|
r48111 | dirstate-v2: no no no | ||
r49644 | tracked-hint: no no no | |||
r45303 | dotencode: yes yes yes | |||
generaldelta: yes yes yes | ||||
r49515 | share-safe: yes yes yes | |||
r45303 | sparserevlog: yes yes yes | |||
r47646 | persistent-nodemap: no no no (no-rust !) | |||
persistent-nodemap: yes yes no (rust !) | ||||
r45303 | copies-sdc: no no no | |||
Raphaël Gomès
|
r47439 | revlog-v2: no no no | ||
r48037 | changelog-v2: no no no | |||
r45303 | plain-cl-delta: yes yes yes | |||
r47636 | compression: zlib zlib zlib (no-zstd !) | |||
compression: zstd zlib zstd (zstd !) | ||||
r45303 | compression-level: default default default | |||
r49502 | $ hg debugrequires | |||
r42306 | dotencode | |||
fncache | ||||
generaldelta | ||||
r47646 | persistent-nodemap (rust !) | |||
r42306 | revlog-compression-zstd | |||
revlogv1 | ||||
r49515 | share-safe | |||
r42306 | sparserevlog | |||
store | ||||
downgrade | ||||
r45302 | $ hg debugupgraderepo --run --no-backup --quiet | |||
upgrade will perform the following actions: | ||||
requirements | ||||
r49515 | preserved: dotencode, fncache, generaldelta, revlogv1, share-safe, sparserevlog, store (no-rust !) | |||
preserved: dotencode, fncache, generaldelta, persistent-nodemap, revlogv1, share-safe, sparserevlog, store (rust !) | ||||
r45302 | removed: revlog-compression-zstd | |||
r46649 | processed revlogs: | |||
- all-filelogs | ||||
- changelog | ||||
- manifest | ||||
r42306 | $ hg debugformat -v | |||
r45303 | format-variant repo config default | |||
fncache: yes yes yes | ||||
Simon Sapin
|
r48111 | dirstate-v2: no no no | ||
r49644 | tracked-hint: no no no | |||
r45303 | dotencode: yes yes yes | |||
generaldelta: yes yes yes | ||||
r49515 | share-safe: yes yes yes | |||
r45303 | sparserevlog: yes yes yes | |||
r47646 | persistent-nodemap: no no no (no-rust !) | |||
persistent-nodemap: yes yes no (rust !) | ||||
r45303 | copies-sdc: no no no | |||
Raphaël Gomès
|
r47439 | revlog-v2: no no no | ||
r48037 | changelog-v2: no no no | |||
r45303 | plain-cl-delta: yes yes yes | |||
r47636 | compression: zlib zlib zlib (no-zstd !) | |||
compression: zlib zlib zstd (zstd !) | ||||
r45303 | compression-level: default default default | |||
r49502 | $ hg debugrequires | |||
r42306 | dotencode | |||
fncache | ||||
generaldelta | ||||
r47646 | persistent-nodemap (rust !) | |||
r42306 | revlogv1 | |||
r49515 | share-safe | |||
r42306 | sparserevlog | |||
store | ||||
upgrade from hgrc | ||||
$ cat >> .hg/hgrc << EOF | ||||
> [format] | ||||
> revlog-compression=zstd | ||||
> EOF | ||||
r45302 | $ hg debugupgraderepo --run --no-backup --quiet | |||
upgrade will perform the following actions: | ||||
requirements | ||||
r49515 | preserved: dotencode, fncache, generaldelta, revlogv1, share-safe, sparserevlog, store (no-rust !) | |||
preserved: dotencode, fncache, generaldelta, persistent-nodemap, revlogv1, share-safe, sparserevlog, store (rust !) | ||||
r45302 | added: revlog-compression-zstd | |||
r46649 | processed revlogs: | |||
- all-filelogs | ||||
- changelog | ||||
- manifest | ||||
r42306 | $ hg debugformat -v | |||
r45303 | format-variant repo config default | |||
fncache: yes yes yes | ||||
Simon Sapin
|
r48111 | dirstate-v2: no no no | ||
r49644 | tracked-hint: no no no | |||
r45303 | dotencode: yes yes yes | |||
generaldelta: yes yes yes | ||||
r49515 | share-safe: yes yes yes | |||
r45303 | sparserevlog: yes yes yes | |||
r47646 | persistent-nodemap: no no no (no-rust !) | |||
persistent-nodemap: yes yes no (rust !) | ||||
r45303 | copies-sdc: no no no | |||
Raphaël Gomès
|
r47439 | revlog-v2: no no no | ||
r48037 | changelog-v2: no no no | |||
r45303 | plain-cl-delta: yes yes yes | |||
r47636 | compression: zlib zlib zlib (no-zstd !) | |||
compression: zstd zstd zstd (zstd !) | ||||
r45303 | compression-level: default default default | |||
r49502 | $ hg debugrequires | |||
r42306 | dotencode | |||
fncache | ||||
generaldelta | ||||
r47646 | persistent-nodemap (rust !) | |||
r42306 | revlog-compression-zstd | |||
revlogv1 | ||||
r49515 | share-safe | |||
r42306 | sparserevlog | |||
store | ||||
r43404 | #endif | |||
r48001 | Check upgrading to a revlog format supporting sidedata | |||
------------------------------------------------------ | ||||
r43404 | ||||
upgrade | ||||
r42306 | ||||
r47997 | $ hg debugsidedata -c 0 | |||
r48001 | $ hg --config experimental.revlogv2=enable-unstable-format-and-corrupt-my-data debugupgraderepo --run --no-backup --config "extensions.sidedata=$TESTDIR/testlib/ext-sidedata.py" --quiet | |||
r45302 | upgrade will perform the following actions: | |||
requirements | ||||
r49515 | preserved: dotencode, fncache, generaldelta, share-safe, store (no-zstd !) | |||
preserved: dotencode, fncache, generaldelta, revlog-compression-zstd, share-safe, sparserevlog, store (zstd no-rust !) | ||||
preserved: dotencode, fncache, generaldelta, persistent-nodemap, revlog-compression-zstd, share-safe, sparserevlog, store (rust !) | ||||
Raphaël Gomès
|
r47439 | removed: revlogv1 | ||
r48001 | added: exp-revlogv2.2 (zstd !) | |||
added: exp-revlogv2.2, sparserevlog (no-zstd !) | ||||
r45302 | ||||
r46649 | processed revlogs: | |||
- all-filelogs | ||||
- changelog | ||||
- manifest | ||||
r43404 | $ hg debugformat -v | |||
r45303 | format-variant repo config default | |||
fncache: yes yes yes | ||||
Simon Sapin
|
r48111 | dirstate-v2: no no no | ||
r49644 | tracked-hint: no no no | |||
r45303 | dotencode: yes yes yes | |||
generaldelta: yes yes yes | ||||
r49515 | share-safe: yes yes yes | |||
r45303 | sparserevlog: yes yes yes | |||
r47646 | persistent-nodemap: no no no (no-rust !) | |||
persistent-nodemap: yes yes no (rust !) | ||||
r45303 | copies-sdc: no no no | |||
Raphaël Gomès
|
r47439 | revlog-v2: yes no no | ||
r48037 | changelog-v2: no no no | |||
r45303 | plain-cl-delta: yes yes yes | |||
compression: zlib zlib zlib (no-zstd !) | ||||
r47636 | compression: zstd zstd zstd (zstd !) | |||
r45303 | compression-level: default default default | |||
r49502 | $ hg debugrequires | |||
r43404 | dotencode | |||
Raphaël Gomès
|
r47439 | exp-revlogv2.2 | ||
r43404 | fncache | |||
generaldelta | ||||
r47646 | persistent-nodemap (rust !) | |||
r43414 | revlog-compression-zstd (zstd !) | |||
r49515 | share-safe | |||
r43404 | sparserevlog | |||
store | ||||
$ hg debugsidedata -c 0 | ||||
2 sidedata entries | ||||
entry-0001 size 4 | ||||
entry-0002 size 32 | ||||
r43405 | downgrade | |||
r48001 | $ hg debugupgraderepo --config experimental.revlogv2=no --run --no-backup --quiet | |||
r45302 | upgrade will perform the following actions: | |||
requirements | ||||
r49515 | preserved: dotencode, fncache, generaldelta, share-safe, sparserevlog, store (no-zstd !) | |||
preserved: dotencode, fncache, generaldelta, revlog-compression-zstd, share-safe, sparserevlog, store (zstd no-rust !) | ||||
preserved: dotencode, fncache, generaldelta, persistent-nodemap, revlog-compression-zstd, share-safe, sparserevlog, store (rust !) | ||||
r48001 | removed: exp-revlogv2.2 | |||
Raphaël Gomès
|
r47439 | added: revlogv1 | ||
r45302 | ||||
r46649 | processed revlogs: | |||
- all-filelogs | ||||
- changelog | ||||
- manifest | ||||
r43405 | $ hg debugformat -v | |||
r45303 | format-variant repo config default | |||
fncache: yes yes yes | ||||
Simon Sapin
|
r48111 | dirstate-v2: no no no | ||
r49644 | tracked-hint: no no no | |||
r45303 | dotencode: yes yes yes | |||
generaldelta: yes yes yes | ||||
r49515 | share-safe: yes yes yes | |||
r45303 | sparserevlog: yes yes yes | |||
r47646 | persistent-nodemap: no no no (no-rust !) | |||
persistent-nodemap: yes yes no (rust !) | ||||
r45303 | copies-sdc: no no no | |||
Raphaël Gomès
|
r47439 | revlog-v2: no no no | ||
r48037 | changelog-v2: no no no | |||
r45303 | plain-cl-delta: yes yes yes | |||
compression: zlib zlib zlib (no-zstd !) | ||||
r47636 | compression: zstd zstd zstd (zstd !) | |||
r45303 | compression-level: default default default | |||
r49502 | $ hg debugrequires | |||
r43405 | dotencode | |||
fncache | ||||
generaldelta | ||||
r47646 | persistent-nodemap (rust !) | |||
r43414 | revlog-compression-zstd (zstd !) | |||
r43405 | revlogv1 | |||
r49515 | share-safe | |||
r43405 | sparserevlog | |||
store | ||||
$ hg debugsidedata -c 0 | ||||
upgrade from hgrc | ||||
$ cat >> .hg/hgrc << EOF | ||||
r48001 | > [experimental] | |||
> revlogv2=enable-unstable-format-and-corrupt-my-data | ||||
r43405 | > EOF | |||
r45302 | $ hg debugupgraderepo --run --no-backup --quiet | |||
upgrade will perform the following actions: | ||||
requirements | ||||
r49515 | preserved: dotencode, fncache, generaldelta, share-safe, sparserevlog, store (no-zstd !) | |||
preserved: dotencode, fncache, generaldelta, revlog-compression-zstd, share-safe, sparserevlog, store (zstd no-rust !) | ||||
preserved: dotencode, fncache, generaldelta, persistent-nodemap, revlog-compression-zstd, share-safe, sparserevlog, store (rust !) | ||||
Raphaël Gomès
|
r47439 | removed: revlogv1 | ||
r48001 | added: exp-revlogv2.2 | |||
r45302 | ||||
r46649 | processed revlogs: | |||
- all-filelogs | ||||
- changelog | ||||
- manifest | ||||
r43405 | $ hg debugformat -v | |||
r45303 | format-variant repo config default | |||
fncache: yes yes yes | ||||
Simon Sapin
|
r48111 | dirstate-v2: no no no | ||
r49644 | tracked-hint: no no no | |||
r45303 | dotencode: yes yes yes | |||
generaldelta: yes yes yes | ||||
r49515 | share-safe: yes yes yes | |||
r45303 | sparserevlog: yes yes yes | |||
r47646 | persistent-nodemap: no no no (no-rust !) | |||
persistent-nodemap: yes yes no (rust !) | ||||
r45303 | copies-sdc: no no no | |||
Raphaël Gomès
|
r47439 | revlog-v2: yes yes no | ||
r48037 | changelog-v2: no no no | |||
r45303 | plain-cl-delta: yes yes yes | |||
compression: zlib zlib zlib (no-zstd !) | ||||
r47636 | compression: zstd zstd zstd (zstd !) | |||
r45303 | compression-level: default default default | |||
r49502 | $ hg debugrequires | |||
r43405 | dotencode | |||
Raphaël Gomès
|
r47439 | exp-revlogv2.2 | ||
r43405 | fncache | |||
generaldelta | ||||
r47646 | persistent-nodemap (rust !) | |||
r43414 | revlog-compression-zstd (zstd !) | |||
r49515 | share-safe | |||
r43405 | sparserevlog | |||
store | ||||
$ hg debugsidedata -c 0 | ||||
Pulkit Goyal
|
r46840 | |||
Demonstrate that nothing to perform upgrade will still run all the way through | ||||
$ hg debugupgraderepo --run | ||||
Pulkit Goyal
|
r46848 | nothing to do | ||
Simon Sapin
|
r48111 | |||
r49265 | #if no-rust | |||
$ cat << EOF >> $HGRCPATH | ||||
> [storage] | ||||
> dirstate-v2.slow-path = allow | ||||
> EOF | ||||
#endif | ||||
Simon Sapin
|
r48111 | |||
Upgrade to dirstate-v2 | ||||
r49523 | $ hg debugformat -v --config format.use-dirstate-v2=1 | grep dirstate-v2 | |||
Simon Sapin
|
r48111 | dirstate-v2: no yes no | ||
r49523 | $ hg debugupgraderepo --config format.use-dirstate-v2=1 --run | |||
Simon Sapin
|
r48111 | upgrade will perform the following actions: | ||
requirements | ||||
r49265 | preserved: * (glob) | |||
r49116 | added: dirstate-v2 | |||
Simon Sapin
|
r48111 | |||
dirstate-v2 | ||||
"hg status" will be faster | ||||
r49277 | no revlogs to process | |||
Simon Sapin
|
r48111 | |||
beginning upgrade... | ||||
repository locked and read-only | ||||
creating temporary repository to stage upgraded data: $TESTTMP/sparserevlogrepo/.hg/upgrade.* (glob) | ||||
(it is safe to interrupt this process any time before data migration completes) | ||||
upgrading to dirstate-v2 from v1 | ||||
replaced files will be backed up at $TESTTMP/sparserevlogrepo/.hg/upgradebackup.* (glob) | ||||
removing temporary repository $TESTTMP/sparserevlogrepo/.hg/upgrade.* (glob) | ||||
$ ls .hg/upgradebackup.*/dirstate | ||||
.hg/upgradebackup.*/dirstate (glob) | ||||
r49263 | $ hg debugformat -v | grep dirstate-v2 | |||
Simon Sapin
|
r48111 | dirstate-v2: yes no no | ||
$ hg status | ||||
r49264 | $ dd bs=12 count=1 if=.hg/dirstate 2> /dev/null | |||
Simon Sapin
|
r48111 | dirstate-v2 | ||
Downgrade from dirstate-v2 | ||||
$ hg debugupgraderepo --run | ||||
upgrade will perform the following actions: | ||||
requirements | ||||
r49265 | preserved: * (glob) | |||
r49116 | removed: dirstate-v2 | |||
Simon Sapin
|
r48111 | |||
r49277 | no revlogs to process | |||
Simon Sapin
|
r48111 | |||
beginning upgrade... | ||||
repository locked and read-only | ||||
creating temporary repository to stage upgraded data: $TESTTMP/sparserevlogrepo/.hg/upgrade.* (glob) | ||||
(it is safe to interrupt this process any time before data migration completes) | ||||
downgrading from dirstate-v2 to v1 | ||||
replaced files will be backed up at $TESTTMP/sparserevlogrepo/.hg/upgradebackup.* (glob) | ||||
removing temporary repository $TESTTMP/sparserevlogrepo/.hg/upgrade.* (glob) | ||||
r49263 | $ hg debugformat -v | grep dirstate-v2 | |||
Simon Sapin
|
r48111 | dirstate-v2: no no no | ||
$ hg status | ||||
r49266 | ||||
$ cd .. | ||||
dirstate-v2: upgrade and downgrade from and empty repository: | ||||
------------------------------------------------------------- | ||||
r49523 | $ hg init --config format.use-dirstate-v2=no dirstate-v2-empty | |||
r49266 | $ cd dirstate-v2-empty | |||
$ hg debugformat | grep dirstate-v2 | ||||
dirstate-v2: no | ||||
upgrade | ||||
r49523 | $ hg debugupgraderepo --run --config format.use-dirstate-v2=yes | |||
r49266 | upgrade will perform the following actions: | |||
requirements | ||||
preserved: * (glob) | ||||
added: dirstate-v2 | ||||
dirstate-v2 | ||||
"hg status" will be faster | ||||
r49277 | no revlogs to process | |||
r49266 | ||||
beginning upgrade... | ||||
repository locked and read-only | ||||
creating temporary repository to stage upgraded data: $TESTTMP/dirstate-v2-empty/.hg/upgrade.* (glob) | ||||
(it is safe to interrupt this process any time before data migration completes) | ||||
upgrading to dirstate-v2 from v1 | ||||
replaced files will be backed up at $TESTTMP/dirstate-v2-empty/.hg/upgradebackup.* (glob) | ||||
removing temporary repository $TESTTMP/dirstate-v2-empty/.hg/upgrade.* (glob) | ||||
$ hg debugformat | grep dirstate-v2 | ||||
dirstate-v2: yes | ||||
downgrade | ||||
r49523 | $ hg debugupgraderepo --run --config format.use-dirstate-v2=no | |||
r49266 | upgrade will perform the following actions: | |||
requirements | ||||
preserved: * (glob) | ||||
removed: dirstate-v2 | ||||
r49277 | no revlogs to process | |||
r49266 | ||||
beginning upgrade... | ||||
repository locked and read-only | ||||
creating temporary repository to stage upgraded data: $TESTTMP/dirstate-v2-empty/.hg/upgrade.* (glob) | ||||
(it is safe to interrupt this process any time before data migration completes) | ||||
downgrading from dirstate-v2 to v1 | ||||
replaced files will be backed up at $TESTTMP/dirstate-v2-empty/.hg/upgradebackup.* (glob) | ||||
removing temporary repository $TESTTMP/dirstate-v2-empty/.hg/upgrade.* (glob) | ||||
$ hg debugformat | grep dirstate-v2 | ||||
dirstate-v2: no | ||||
$ cd .. | ||||
r50090 | ||||
Test automatic upgrade/downgrade | ||||
================================ | ||||
For dirstate v2 | ||||
--------------- | ||||
create an initial repository | ||||
$ hg init auto-upgrade \ | ||||
> --config format.use-dirstate-v2=no \ | ||||
> --config format.use-dirstate-tracked-hint=yes \ | ||||
> --config format.use-share-safe=no | ||||
$ hg debugbuilddag -R auto-upgrade --new-file .+5 | ||||
$ hg -R auto-upgrade update | ||||
6 files updated, 0 files merged, 0 files removed, 0 files unresolved | ||||
$ hg debugformat -R auto-upgrade | grep dirstate-v2 | ||||
dirstate-v2: no | ||||
upgrade it to dirstate-v2 automatically | ||||
$ hg status -R auto-upgrade \ | ||||
> --config format.use-dirstate-v2.automatic-upgrade-of-mismatching-repositories=yes \ | ||||
> --config format.use-dirstate-v2=yes | ||||
automatically upgrading repository to the `dirstate-v2` feature | ||||
(see `hg help config.format.use-dirstate-v2` for details) | ||||
$ hg debugformat -R auto-upgrade | grep dirstate-v2 | ||||
dirstate-v2: yes | ||||
downgrade it from dirstate-v2 automatically | ||||
$ hg status -R auto-upgrade \ | ||||
> --config format.use-dirstate-v2.automatic-upgrade-of-mismatching-repositories=yes \ | ||||
> --config format.use-dirstate-v2=no | ||||
automatically downgrading repository from the `dirstate-v2` feature | ||||
(see `hg help config.format.use-dirstate-v2` for details) | ||||
$ hg debugformat -R auto-upgrade | grep dirstate-v2 | ||||
dirstate-v2: no | ||||
For multiple change at the same time | ||||
------------------------------------ | ||||
Mads Kiilerich
|
r51618 | $ hg debugformat -R auto-upgrade | grep -E '(dirstate-v2|tracked|share-safe)' | ||
r50090 | dirstate-v2: no | |||
tracked-hint: yes | ||||
share-safe: no | ||||
$ hg status -R auto-upgrade \ | ||||
> --config format.use-dirstate-v2.automatic-upgrade-of-mismatching-repositories=yes \ | ||||
> --config format.use-dirstate-v2=yes \ | ||||
> --config format.use-dirstate-tracked-hint.automatic-upgrade-of-mismatching-repositories=yes \ | ||||
> --config format.use-dirstate-tracked-hint=no\ | ||||
> --config format.use-share-safe.automatic-upgrade-of-mismatching-repositories=yes \ | ||||
> --config format.use-share-safe=yes | ||||
automatically upgrading repository to the `dirstate-v2` feature | ||||
(see `hg help config.format.use-dirstate-v2` for details) | ||||
automatically upgrading repository to the `share-safe` feature | ||||
(see `hg help config.format.use-share-safe` for details) | ||||
automatically downgrading repository from the `tracked-hint` feature | ||||
(see `hg help config.format.use-dirstate-tracked-hint` for details) | ||||
Mads Kiilerich
|
r51618 | $ hg debugformat -R auto-upgrade | grep -E '(dirstate-v2|tracked|share-safe)' | ||
r50090 | dirstate-v2: yes | |||
tracked-hint: no | ||||
share-safe: yes | ||||
r50233 | Quiet upgrade and downgrade | |||
--------------------------- | ||||
Mads Kiilerich
|
r51618 | $ hg debugformat -R auto-upgrade | grep -E '(dirstate-v2|tracked|share-safe)' | ||
r50233 | dirstate-v2: yes | |||
tracked-hint: no | ||||
share-safe: yes | ||||
$ hg status -R auto-upgrade \ | ||||
> --config format.use-dirstate-v2.automatic-upgrade-of-mismatching-repositories=yes \ | ||||
r50236 | > --config format.use-dirstate-v2.automatic-upgrade-of-mismatching-repositories:quiet=yes \ | |||
r50233 | > --config format.use-dirstate-v2=no \ | |||
> --config format.use-dirstate-tracked-hint.automatic-upgrade-of-mismatching-repositories=yes \ | ||||
r50237 | > --config format.use-dirstate-tracked-hint.automatic-upgrade-of-mismatching-repositories:quiet=yes \ | |||
r50233 | > --config format.use-dirstate-tracked-hint=yes \ | |||
> --config format.use-share-safe.automatic-upgrade-of-mismatching-repositories=yes \ | ||||
r50234 | > --config format.use-share-safe.automatic-upgrade-of-mismatching-repositories:quiet=yes \ | |||
r50233 | > --config format.use-share-safe=no | |||
Mads Kiilerich
|
r51618 | $ hg debugformat -R auto-upgrade | grep -E '(dirstate-v2|tracked|share-safe)' | ||
r50233 | dirstate-v2: no | |||
tracked-hint: yes | ||||
share-safe: no | ||||
$ hg status -R auto-upgrade \ | ||||
> --config format.use-dirstate-v2.automatic-upgrade-of-mismatching-repositories=yes \ | ||||
r50236 | > --config format.use-dirstate-v2.automatic-upgrade-of-mismatching-repositories:quiet=yes \ | |||
r50233 | > --config format.use-dirstate-v2=yes \ | |||
> --config format.use-dirstate-tracked-hint.automatic-upgrade-of-mismatching-repositories=yes \ | ||||
r50237 | > --config format.use-dirstate-tracked-hint.automatic-upgrade-of-mismatching-repositories:quiet=yes \ | |||
r50233 | > --config format.use-dirstate-tracked-hint=no\ | |||
> --config format.use-share-safe.automatic-upgrade-of-mismatching-repositories=yes \ | ||||
r50234 | > --config format.use-share-safe.automatic-upgrade-of-mismatching-repositories:quiet=yes \ | |||
r50233 | > --config format.use-share-safe=yes | |||
Mads Kiilerich
|
r51618 | $ hg debugformat -R auto-upgrade | grep -E '(dirstate-v2|tracked|share-safe)' | ||
r50233 | dirstate-v2: yes | |||
tracked-hint: no | ||||
share-safe: yes | ||||
r50091 | Attempting Auto-upgrade on a read-only repository | |||
------------------------------------------------- | ||||
$ chmod -R a-w auto-upgrade | ||||
$ hg status -R auto-upgrade \ | ||||
> --config format.use-dirstate-v2.automatic-upgrade-of-mismatching-repositories=yes \ | ||||
> --config format.use-dirstate-v2=no | ||||
$ hg debugformat -R auto-upgrade | grep dirstate-v2 | ||||
dirstate-v2: yes | ||||
$ chmod -R u+w auto-upgrade | ||||
r50094 | Attempting Auto-upgrade on a locked repository | |||
---------------------------------------------- | ||||
$ hg -R auto-upgrade debuglock --set-lock --quiet & | ||||
$ echo $! >> $DAEMON_PIDS | ||||
$ $RUNTESTDIR/testlib/wait-on-file 10 auto-upgrade/.hg/store/lock | ||||
$ hg status -R auto-upgrade \ | ||||
> --config format.use-dirstate-v2.automatic-upgrade-of-mismatching-repositories=yes \ | ||||
> --config format.use-dirstate-v2=no | ||||
$ hg debugformat -R auto-upgrade | grep dirstate-v2 | ||||
dirstate-v2: yes | ||||
$ killdaemons.py | ||||