Obsolescence Markers exchange

List of case and expected behavior when exchanging obsolesence marker

/!\ This page is intended for developer

Contents

  1. Currently in core
    1. Exchanged markers
  2. Idea being current experimented (withing the evolve extension)
    1. Markers discovery changes
      1. Current approach: Change slicing approach "obshashrange"
        1. Actual discovery
        2. Caching
        3. Graph slicing
      2. Legacy approach: Changeset Tree approach "obshashtree"
        1. Lack of Subsets Detection
        2. Fragile to prune of children of old changeset (and push of forgotten ancient data)
        3. Sending Whole chain all the time
      3. Idea for Next Step Experiment
        1. Obsmarker Subset caching
  3. Graph Outline
  4. A. Simple Case
    1. A.1 pushing a single heads
      1. A.1.1 pushing a single head
      2. A.1.2 pushing a multiple changeset into a single head
    2. A.2 Two heads
    3. A.3 new branch created
    4. A.4 Push in the middle of the obsolescence chain
    5. A.5 partial reordering
    6. A.6 between existing changeset
    7. A.7 Non targeted common changeset
  5. B. Deletion Case
    1. B.1 Pruned changeset atop the pushed set
    2. B.2 Pruned changeset on head. nothing pushed
    3. B.3 Pruned changeset on non-pushed part of the history
    4. B.4 Pruned changeset on common part of history
    5. B.5 Push of a children of changeset which successors is pruned
    6. B.6 Pruned changeset with ancestors not in pushed set
    7. B.7 Prune on non targeted common changeset
  6. C. Advance Case
    1. C.1 Multiple pruned changeset atop each other
    2. C.2 Pruned changeset on precursors
    3. C.3 Pruned changeset on precursors of another pruned one
    4. C.4 multiple successors, one is pruned
  7. D. Partial Information Case
    1. D.1 Pruned changeset based on a missing precursors of something we push
    2. D.2 missing prune target (prune in "pushed set")
    3. D.3 missing prune target (prune Not in "pushed set")
    4. D.4 Unknown changeset in between known one
    5. D.5 Unknown changeset in between known one
  8. Z. Crazy case
    1. Z.1 partial push of split

1. Currently in core

1.1. Exchanged markers

This discuss behavior part of the exchange. What do we exchange when. Experimenting with this for two years, we are happy with it.

1. You have all markers relevant changeset common between source and destination to be exchanged

2. Marker relevant to a changeset are:

By this definition we includes splits markers where only part of the successors are pushed. This is as crazy case that we are unsure about.

2. Idea being current experimented (withing the evolve extension)

2.1. Markers discovery changes

This discusses a method to get a efficient and fast exchange of the markers. The goal is to avoid sending markers that the remote already have to save time and bandwidth.

2.1.1. Current approach: Change slicing approach "obshashrange"

<!> This approach is implemented and available in the hg-evolve extension <!> set experimental.obshashrange = yes to enable it.

The approach discovers mismatching bits in a way similar to bisection. The repository is sliced into "stable range" that will be common to all copy of that repository. Each stable range can be sliced into small range with the same property.

By comparing the hash of obs markers relevant to ranges, two clients can discover what are the precise ranges for which they have different markers.

2.1.1.1. Actual discovery

We do discovery using "range-obshash" (associated to ranges), if "range-obshash" are the same, we know the content is similar for that range. If the content is different, we query the standard-subranges to pinpoint the difference.

2.1.1.2. Caching

(Current implementation of caches are basic, some use sqlite as backend)

Here is the list of information we could cache for this discovery:

2.1.1.3. Graph slicing

/!\ This is a longer technical explanation for those interrested. Other can skip it.

The previous experiment basically reuse the same logic as the changeset discover. Defining a subset of revision null::REV using REV as an identifier and comparing the obsmarker hash for this subset. However, as the model is not append only, this is a bit too fragile. So the idea would be to have more flexibility in the definition of the subset. For example START::REV and do a wide → narrow search of the space. This mean (1) dropping parent information from the hash (2) requesting hash using the START, END pair instead of just END.

This would solve the issue with pruned changeset and newly pushed data on ancient changeset

Simplified explanation

Let's explain the idea on a a linear history first for simplicity.

We have a linear history with 128 changesets. We ask the hash of all obsmarkers relevant for changeset 0::127, then 0::63 and 64::127, then 0::31, 32::63, 64::95, 96::127, etc. At any time if the hash for a slice matches, we can stop digging deeper. otherwise we keep subdividing. Of course, request won't be made one at a time and multiple requests for hashes of superset and subset would we batched in a single round trip.

For the purpose of caching and cross-repo convergence, the scheme for subdivision should be stable. If we have 5 changesets, we probe the following slices 0::1, 2::3, 0::3, 0::4. When we grow to 0::6 we want to be able to reuse slices: 0::1, 2::3, 0::3. We introduce a new one 4::5 (That new slice is "final" and will stay in use forever). We also add 0::5 that will stay in use as long as nothing is exchange above 5.

Having a stable scheme is important for 2 reasons:

1) Local Growth: By reusing as many as the same slice (independently of the probed set) we allow efficient caching of the hash of all relevant markers. The is expected to be efficient as the set of relevant markers of each slice will be "final" in most case (but can never be guaranteed to be) so once computed, chance for invalidation are low as the repository grow.

2) Cross Repositories Stability: repository discovering markers from each others will have various sizes and content (including case where content will not converge), having the same scheme for slicing maximize cache reuse regardless of what other repos one is talking to.

Extra complexity in Mercurial

Mercurial have branching and merging, so we cannot simply use a 2^N slicing based on index as shown above. We have to build a a slicing algorithm able to explore branches in an efficient and stable way. Keep in mind that branching might be introduced in the repository later or even know by only one side of the discovery, so "branch point" cannot be treated as useful boundary.

2.1.2. Legacy approach: Changeset Tree approach "obshashtree"

<!> This is an old idea replaced by better one. <!> This method is currently provided by the hg-evolve extensions by default.

This approach build and tracking a set of hashes from obsolescence data. This set is based on the changesets graph.

Every node are associate a hash (called obshash from now). This obshash of C is a sha1 hash for "obshash of C's parents + all obsmarkers relevant to C"

Because we use hashes of the parents, we can do standard discovery (the same than changeset one) on the result.

However, this use of the parents hashs introduce severe drawback, some easy to overcome, others harder to fix.

2.1.2.1. Lack of Subsets Detection

If the destination has a super-set of source markers, this will be detected as "different markers on both side" and the source will send everything to the destination again. No new markers will be added, the obshash will still be different and this will happen again and again for all future exchanges.

Common case for this to happen "perpetually" are:

- You push to a server with more information than you - You pull for a server with less information than you.

The pull case will be very common. For example mercurial contributor are likely to have markers that applies to changeset in selenic.com/hg/ but that never and will never make it to selenic.com.

Moreover when you have this extra information mismatch for one node, you'll get the same one for all descendant. Disabling the discovery benefit for a whole subtree.

See the sub hashes tracking idea for lead on how to solve this.

2.1.2.2. Fragile to prune of children of old changeset (and push of forgotten ancient data)

A chain that directly leads to a changeset (as successors) should be fairly stable. It's possible for someone to come up with old marker at the precursors end of the chain, but it should be fairly rare.

However, the obshash also containts data about the pruned children. And it will be much more common to see people adding markers that prune a children of an old changeset. eg: if someone leave a project for 6 months, it will probably prune multiple draft changesets when he comes back.

This mean invalidation of the obshash of an old changeset and all its descendant leading to the resend of all markers applying to 6 months all changesets)

See the graph slicing idea for lead on how to solve this.

2.1.2.3. Sending Whole chain all the time

This discovery said if the whole chain is known or not. which mean that each new changeset created, adding a new markers to the chain will resend everything in the chain. For changeset that got rewritten a lot will be an issue. For changeset that will never get public (-not- recommended, but you know… users…) that'll be worse.

Note that in practice the median chain length is fairly low (2 for mercurial-devel repo)

2.1.3. Idea for Next Step Experiment

2.1.3.1. Obsmarker Subset caching

The second major issue we face with the current experiment is the lack of detection of a common subset. If I pull from a repository having markers A+B but I've A+B+C locally, the hash will be different and the discovery will not detect that nothing needs to be pulled.

The idea here would be to exchange not just the hash of the relevant markers for a slices, but to also keep around and exchange a small amount of hashes for frequent subset of the relevant markers.

For example we have repo-1 with A+B (hashed as h1), repo-2 with B+C (hashed as h2) and repo-3 with A+B+C (hashed as h3).

When repo-3 pull from repo-1, It would receive h1 and recognize it as a subset of h3. Same would go when repo-2 push to repo-3. repo-3 would send the data that h3 is its exact hash, but also that h1 and h2 are common subset. repo-2 would recognize h2 as its local content and skip the push of these markers.

Keeping track of these subset means making the obsmarkers application smarter. Initially, something has to notice than despite the fact that h1 != h3, all markers sent for h1 were know locally.

The subset relation could also be fed when adding new markers. If a cached hash is invalidated when new markers are added, the old value used as a known subset right away. In addition we could compute a set of relevant marker without taking "prune" into account improve another problematic aspect of the current approach.

To avoid unbounded growth, we need some kind of least frequently used cache structure. Possibly with adaptive cache size to handle various project geography.

3. Graph Outline

    ○ ← a changeset,
    ◔ ← changeset being pushed
    ● ← changeset that exist remotly before the push.
    ◕ ← changeset that exist remotly but is not selected by the push
    ⊗ ← pruned changeset
    ø ← obsolete changeset with successors
    ◌ ← changeset that does not exist locally but are present in marker history
    ✕ ← changeset that does not exist locally but are pruned in marker history
    ⇠ ← obsolescence marker from that point (if not pointing to anything this mean we do not care about what is point to)

4. A. Simple Case

4.1. A.1 pushing a single heads

4.1.1. A.1.1 pushing a single head

    ⇠◔ A
     |
     ●  O

Marker exist from:

Command run:

Expected exchange:

4.1.2. A.1.2 pushing a multiple changeset into a single head

     ◔ B
     |
    ⇠◔ A
     |
     ● O

Marker exist from:

Command run:

Expected exchange:

4.2. A.2 Two heads

    ⇠○ B
  ⇠◔ | A
   |/
   ● O

Marker exist from:

Command run:

Expected exchange:

Expected Exclude:

4.3. A.3 new branch created

  B' ○⇢ø B
     | |
     \Aø⇠◔ A'
      \|/
       ● O

Marker exist from:

Command run:

Expected exchange:

Expected Exclude:

If A and B are remontly known, we should expect:

4.4. A.4 Push in the middle of the obsolescence chain

(Where we show that we should not push the marker without the successors)

  B ◔
    |
  A⇠ø⇠○ A'
    |/
    ● O

Marker exist from:

Command run:

Expected exchange:

Expected Exclude:

4.5. A.5 partial reordering

  B ø⇠⇠
    | ⇡
  A ø⇠⇠⇠○ A'
    | ⇡/
    | ○ B'
    |/
    ● O

Marker exist from:

Command run:

Expected exchange:

Expected Exclude:

4.6. A.6 between existing changeset

  A ◕⇠● B
    |/
    ● O

Marker exist from:

Command run:

Expected exchange:

4.7. A.7 Non targeted common changeset

   ⇠◕ A
    |
    ● O

Marker exist from:

Command run:

Expected exchange:

Expected exclude:

5. B. Deletion Case

Most B case can be read with

5.1. B.1 Pruned changeset atop the pushed set

    ⊗ B
    |
    ◔ A
    |
    ● O

Marker exist from:

Command run:

Expected exchange:

5.2. B.2 Pruned changeset on head. nothing pushed

    ⊗ A
    |
    ● O

Marker exist from:

Command run:

Expected exchange:

5.3. B.3 Pruned changeset on non-pushed part of the history

  ⊗ C
  |
  ○ B
  | ◔ A
  |/
  ● O

Marker exist from:

Command run:

Expected exchange:

Expected Exclude:

5.4. B.4 Pruned changeset on common part of history

  ⊗ C
  | ● B
  | |
  | ● A
  |/
  ● O

Marker exist from:

Command run:

Expected exchange:

5.5. B.5 Push of a children of changeset which successors is pruned

This case Mirror A.4, with pruned changeset successors.

  B ◔
    |
  A⇠ø⇠⊗ A'
    |/
    ● O

Marker exist from:

Command run:

Expected exchange:

Extra Note:

5.6. B.6 Pruned changeset with ancestors not in pushed set

  B ø⇠⊗ B'
    | |
  A ○ |
    |/
    ● O

Marker exist from:

Command run:

Expected exchange:

5.7. B.7 Prune on non targeted common changeset

    ⊗ B
    |
    ◕ A
    |
    ● O

Marker exist from:

Command run:

Expected exchange:

6. C. Advance Case

6.1. C.1 Multiple pruned changeset atop each other

  ⊗ B
  |
  ⊗ A
  |
  ● O

Marker exist from:

Command run:

Expected exchange:

6.2. C.2 Pruned changeset on precursors

  B ⊗
    |
  A ø⇠◔ A'
    |/
    ● O

Marker exist from:

Command run:

Expected exchange:

6.3. C.3 Pruned changeset on precursors of another pruned one

  B ⊗
    |
  A ø⇠⊗ A'
    |/
    ● O

Marker exist from:

Command run:

Expected exchange:

6.4. C.4 multiple successors, one is pruned

Another case were prune are confusing? (A is killed without its successors being pushed)

(could split of divergence, if split see the Z section)

       A
   B ○⇢ø⇠⊗ C
      \|/
       ● O

Marker exist from:

Command run:

Expected exchange:

Expected exclude:

7. D. Partial Information Case

From then we have changeset missing from the repo but still referenced in obsolescence marker. This has an impact on the knowledge we have from the graph topology.

About any of the above Case could be used too, just drop local knownledge of some/all obsolete changeset.

7.1. D.1 Pruned changeset based on a missing precursors of something we push

  B ⊗
    |
  A ◌⇠◔ A'
     /
    ● O

Marker exist from:

Command run:

Expected exchange:

7.2. D.2 missing prune target (prune in "pushed set")

  A ø⇠✕ A'
    |/
    ● O

Marker exist from:

Command run:

Expected exchange:

7.3. D.3 missing prune target (prune Not in "pushed set")

(this is one of the case were is will be hard to be non-confusing)

  A ø⇠✕ A'
    | |
    | ○ B
    |/
    ● O

Marker exist from:

Command run:

(shall we account for a secret B?

Expected exchange:

7.4. D.4 Unknown changeset in between known one

Mostly a clarification case

    ø⇠◌⇠○
    | |/
    | ◔
    |/
    ● O

Should be treated as A.3 case:

    ø⇠○
    | |
    | ◔
    |/
    ● O

7.5. D.5 Unknown changeset in between known one

8. Z. Crazy case

When I'm note very sure about what we should do

8.1. Z.1 partial push of split

   D'○⇢ø D
     | | A
   B ○⇢ø⇠◔ C
      \|/
       ● O

Marker exist from:

Command run:

Expected exchange:

Expected exclude:


CategoryDeveloper CategoryEvolution

CEDObsmarkersExchange (last edited 2018-03-04 20:25:36 by BorisFeld)