tests/test-pullling-to-general-delta.t
author Pierre-Yves David <pierre-yves.david@octobus.net>
Tue, 09 Apr 2024 22:37:15 +0200
changeset 51595 3a6fae3bef35
parent 50693 c96fd53c0e2d
permissions -rw-r--r--
outgoing: add a simple fastpath when there is no common This further speed up case like `hg bundle --all` for larger repository. ### data-env-vars.name = mozilla-try-2023-03-22-zstd-sparse-revlog # benchmark.name = hg.command.bundle # bin-env-vars.hg.flavor = default # bin-env-vars.hg.py-re2-module = default # benchmark.variants.revs = all # benchmark.variants.type = none-streamv2 before: 316.749699 after: 311.165461 (-1.76%, -5.58) There is further work to be done in this area like not doing any outgoing computation in the stream case for example. however the recent changes already gives use a large win for a small amount of local work. ### benchmark.name = hg.command.bundle # bin-env-vars.hg.flavor = default # bin-env-vars.hg.py-re2-module = default # benchmark.variants.revs = all # benchmark.variants.type = none-streamv2 ## data-env-vars.name = mercurial-public-2024-03-22-zstd-sparse-revlog pre-%ln-change: 1.263859 the-%ln-change: 0.700229 (-44.60%, -0.56) prev-changeset: 0.496050 (-60.75%, -0.77) this-changeset: 0.495243 (-60.81%, -0.77) ## data-env-vars.name = tryton-public-2024-03-22-zstd-sparse-revlog pre-%ln-change: 2.975765 the-%ln-change: 1.870798 (-37.13%, -1.10) prev-changeset: 1.461583 (-50.88%, -1.51) this-changeset: 1.469185 (-50.63%, -1.51) ## data-env-vars.name = pypy-2024-03-22-zstd-sparse-revlog pre-%ln-change: 4.540080 the-%ln-change: 3.401700 (-25.07%, -1.14) prev-changeset: 2.915810 (-35.78%, -1.62) this-changeset: 2.911643 (-35.87%, -1.63) ## data-env-vars.name = heptapod-public-2024-03-25-zstd-sparse-revlog pre-%ln-change: 10.138396 the-%ln-change: 7.750458 (-23.55%, -2.39) prev-changeset: 6.665565 (-34.25%, -3.47) this-changeset: 6.672078 (-34.19%, -3.47) ## data-env-vars.name = mozilla-try-2023-03-22-zstd-sparse-revlog pre-%ln-change: 399.484481 the-%ln-change: 346.508952 (-13.26%, -52.98) prev-changeset: 316.749699 (-20.71%, -82.73) this-changeset: 311.165461 (-22.11%, -88.32)

============================================================================
Pulling from modern to a non-general delta target (and other related checks)
============================================================================

There is various issue that can arise when we update the code with modern
storage in mind while working on delta processing. So this file is meant for
various scenario that might break in the future or have break in the past.

Setup
=====

Create a modern server with an older clone

  $ cat << EOF >> $HGRCPATH
  > [command-templates]
  > log = "{desc} {tags}\n"
  > EOF

  $ hg init server

  $ hg clone --quiet --pull server client --config format.usegeneraldelta=no
  $ hg debugformat -R client | grep generaldelta
  generaldelta:        no

Create some complexe history

  $ cd server
  $ hg debugbuilddag -n '.+3:a$.+5:b/a:k$.+7:c/b:l$.+6:d/a:m<k+6/l+1/m'
  $ hg log -G
  o    r36 tip
  |\
  | o  r35
  | |
  | o    r34
  | |\
  | | o  r33
  | | |
  | | o  r32
  | | |
  | | o  r31
  | | |
  | | o  r30
  | | |
  | | o  r29
  | | |
  | | o  r28
  | | |
  o | |    r27 m
  |\ \ \
  | o | |  r26 d
  | | | |
  | o | |  r25
  | | | |
  | o | |  r24
  | | | |
  | o | |  r23
  | | | |
  | o | |  r22
  | | | |
  | o | |  r21
  | | | |
  | o | |  r20
  |  / /
  | o |    r19 l
  | |\ \
  | | o |  r18 c
  | | | |
  | | o |  r17
  | | | |
  | | o |  r16
  | | | |
  | | o |  r15
  | | | |
  | | o |  r14
  | | | |
  | | o |  r13
  | | | |
  | | o |  r12
  | | | |
  | | o |  r11
  | |  /
  +---o  r10 k
  | |/
  | o  r9 b
  | |
  | o  r8
  | |
  | o  r7
  | |
  | o  r6
  | |
  | o  r5
  | |
  | o  r4
  |
  o  r3 a
  |
  o  r2
  |
  o  r1
  |
  o  r0
  
  $ cd ..


Pull it in the client
=====================


pull with default value
-----------------------

  $ cp -R client client-simple-pull
  $ hg -R client-simple-pull pull
  pulling from $TESTTMP/server
  requesting all changes
  adding changesets
  adding manifests
  adding file changes
  added 37 changesets with 37 changes to 37 files
  new changesets 61246295ee1e:b4b117cbbcf3
  (run 'hg update' to get a working copy)
  $ hg -R client-simple-pull verify
  checking changesets
  checking manifests
  crosschecking files in changesets and manifests
  checking files
  checking dirstate
  checked 37 changesets with 37 changes to 37 files


pull with "no-reuse" policy
---------------------------

  $ cp -R client client-no-reuse
  $ hg -R client-no-reuse pull --config paths.default:pulled-delta-reuse-policy=no-reuse
  pulling from $TESTTMP/server
  requesting all changes
  adding changesets
  adding manifests
  adding file changes
  added 37 changesets with 37 changes to 37 files
  new changesets 61246295ee1e:b4b117cbbcf3
  (run 'hg update' to get a working copy)
  $ hg -R client-no-reuse verify
  checking changesets
  checking manifests
  crosschecking files in changesets and manifests
  checking files
  checking dirstate
  checked 37 changesets with 37 changes to 37 files


pull with "try-base" policy
---------------------------

  $ cp -R client client-try-base
  $ hg -R client-try-base pull --config paths.default:pulled-delta-reuse-policy=try-base
  pulling from $TESTTMP/server
  requesting all changes
  adding changesets
  adding manifests
  adding file changes
  added 37 changesets with 37 changes to 37 files
  new changesets 61246295ee1e:b4b117cbbcf3
  (run 'hg update' to get a working copy)
  $ hg -R client-try-base verify
  checking changesets
  checking manifests
  crosschecking files in changesets and manifests
  checking files
  checking dirstate
  checked 37 changesets with 37 changes to 37 files


pull with "forced" policy
-------------------------

  $ cp -R client client-forced
  $ hg -R client-forced paths --config paths.default:pulled-delta-reuse-policy=forced
  default = $TESTTMP/server
  default:pulled-delta-reuse-policy = forced
  $ hg -R client-forced pull --config paths.default:pulled-delta-reuse-policy=forced
  pulling from $TESTTMP/server
  requesting all changes
  adding changesets
  adding manifests
  adding file changes
  added 37 changesets with 37 changes to 37 files
  new changesets 61246295ee1e:b4b117cbbcf3
  (run 'hg update' to get a working copy)
  $ hg -R client-forced verify
  checking changesets
  checking manifests
  crosschecking files in changesets and manifests
  checking files
  checking dirstate
  checked 37 changesets with 37 changes to 37 files