## page was renamed from ChangesetEvolutionDevelObsmarkersExchange ## page was renamed from ObsolescenceMarkersExchange #pragma section-numbers 2 = Obsolescence Markers exchange = List of case and expected behavior when exchanging obsolesence marker /!\ This page is intended for developer <> == Currently in core == === 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: * marker that use this changeset as successors * prune marker of direct children on this changeset. * recursive application of the two rules on precursors store in those marker 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. == Idea being current experimented (withing the evolve extension) == === 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. ==== 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. ===== 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. * "range-obshash" of a 1 changeset range, is the hash of the marker relevant to it. * "range-obshash" is the hash of its standard subrange "range-obshash" ===== Caching ===== (Current implementation of caches are basic, some use sqlite as backend) Here is the list of information we could cache for this discovery: * Property immutable to each changesets (could be part of changelog), usually trivial to compute but for merge.: * depth of a changesets: [[https://www.mercurial-scm.org/repo/evolve/file/tip/hgext3rd/evolve/depthcache.py]] * Stable sort related information: [[https://www.mercurial-scm.org/repo/evolve/file/tip/hgext3rd/evolve/stablesort.py]] * Standard slicing of "range" (range → standard-subrange): [[https://www.mercurial-scm.org/repo/evolve/file/tip/hgext3rd/evolve/stablerangecache.py]] * Data dependant of obsolescence markers creation: * obshash of range (range → obshash): Long lived for each range, we need to detect when marker relevant to a changeset changes and invalidated range including it. (note: worth case invalidation seems `O(N log(N))` for N descendant, But after such invalidation, not all range will be re-used) ===== 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 [[ObsolescenceMarkersExchange#fragiletoparent|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. ==== 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. ====== 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 [[#subhashes|sub hashes tracking idea]] for lead on how to solve this. ====== 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 [[#slicing|graph slicing idea]] for lead on how to solve this. ====== 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) ==== Idea for Next Step Experiment ==== ===== Obsmarker Subset caching ===== <> The second major issue we face with the current experiment is the [[ObsolescenceMarkersExchange#nosubset|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. == 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) }}} == A. Simple Case == === A.1 pushing a single heads === ==== A.1.1 pushing a single head ==== {{{ ⇠◔ A | ● O }}} Marker exist from: * A Command run: * hg push -r A * hg push Expected exchange: * chain from A ==== A.1.2 pushing a multiple changeset into a single head ==== {{{ ◔ B | ⇠◔ A | ● O }}} Marker exist from: * A Command run: * hg push -r B * hg push Expected exchange: * chain from A === A.2 Two heads === {{{ ⇠○ B ⇠◔ | A |/ ● O }}} Marker exist from: * A * B Command run: * hg push -r A Expected exchange: * chain from A Expected Exclude: * chain from B === A.3 new branch created === {{{ B' ○⇢ø B | | \Aø⇠◔ A' \|/ ● O }}} Marker exist from: * `Aø⇠○ A'` * `Bø⇠○ B'` Command run: * hg push -r A Expected exchange: * chain from A Expected Exclude: * chain from B If A and B are remontly known, we should expect: * `hg push` will complain about the new head * `hg push` should complain about unstable history creation === 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: * `Aø⇠○ A'` * chain from A Command run: * hg push -r B Expected exchange: * Chain from A Expected Exclude: * `Aø⇠○ A'` === A.5 partial reordering === {{{ B ø⇠⇠ | ⇡ A ø⇠⇠⇠○ A' | ⇡/ | ○ B' |/ ● O }}} Marker exist from: * `Aø⇠○ A'` * `Bø⇠○ B'` Command run: * hg push -r B Expected exchange: * `Bø⇠○ B'` Expected Exclude: * `Aø⇠○ A'` === A.6 between existing changeset === {{{ A ◕⇠● B |/ ● O }}} Marker exist from: * `A◕⇠● B` Command run: * hg push -r B * hg push Expected exchange: * `A◕⇠● B` === A.7 Non targeted common changeset === {{{ ⇠◕ A | ● O }}} Marker exist from: * Chain from A Command run: * hg push -r O Expected exchange: * ø Expected exclude: * Chain from A == B. Deletion Case == Most B case can be read with === B.1 Pruned changeset atop the pushed set === {{{ ⊗ B | ◔ A | ● O }}} Marker exist from: * B (prune) Command run: * hg push -r A * hg push Expected exchange: * prune marker for B === B.2 Pruned changeset on head. nothing pushed === {{{ ⊗ A | ● O }}} Marker exist from: * A (prune) Command run: * hg push -r O * hg push Expected exchange: * prune marker for A === B.3 Pruned changeset on non-pushed part of the history === {{{ ⊗ C | ○ B | ◔ A |/ ● O }}} Marker exist from: * C (prune) Command run: * hg push -r A * hg push Expected exchange: * ø Expected Exclude: * chain from B === B.4 Pruned changeset on common part of history === {{{ ⊗ C | ● B | | | ● A |/ ● O }}} Marker exist from: * C (prune) Command run: * hg push -r B * hg push Expected exchange: * prune for C === 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: * `Aø⇠○ A'` * chain from A * `A'` Command run: * hg push -r B Expected exchange: * `Aø⇠○ A'` * chain from A * `A'` Extra Note: I'm not totally happy about this case and I believe some more complicated graph can result in behavior wuite confusing for the user (if some tool create prune maker in a the middle of a valid chain) === B.6 Pruned changeset with ancestors not in pushed set === {{{ B ø⇠⊗ B' | | A ○ | |/ ● O }}} Marker exist from: * `Bø⇠⊗ B'` * B' prune Command run: * hg push -r O Expected exchange: * `Bø⇠⊗ B'` * B' prune === B.7 Prune on non targeted common changeset === {{{ ⊗ B | ◕ A | ● O }}} Marker exist from: * B (prune) Command run: * hg push -r O Expected exchange: * ø == C. Advance Case == === C.1 Multiple pruned changeset atop each other === {{{ ⊗ B | ⊗ A | ● O }}} Marker exist from: * A (prune) * B (prune) Command run: * hg push -r O * hg push Expected exchange: * A (prune) * B (prune) === C.2 Pruned changeset on precursors === {{{ B ⊗ | A ø⇠◔ A' |/ ● O }}} Marker exist from: * A' succeed to A * B (prune) Command run: * hg push -r A' * hg push Expected exchange: * `A ø⇠o A'` * B (prune) === C.3 Pruned changeset on precursors of another pruned one === {{{ B ⊗ | A ø⇠⊗ A' |/ ● O }}} Marker exist from: * A' succeed to A * A' (prune * B (prune) Command run: * hg push -r A' * hg push Expected exchange: * `A ø⇠⊗ A'` * A (prune) * B (prune) === 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: * `A ø⇠○ B` * `A ø⇠○ C` * C (prune) Command run: * hg push -r O Expected exchange: * `A ø⇠○ C` * C (prune) Expected exclude: * `A ø⇠○ B` == 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. === D.1 Pruned changeset based on a missing precursors of something we push === {{{ B ⊗ | A ◌⇠◔ A' / ● O }}} Marker exist from: * A' succeed to A * B (prune) Command run: * hg push -r A' * hg push Expected exchange: * `A ø⇠o A'` * B (prune) === D.2 missing prune target (prune in "pushed set") === {{{ A ø⇠✕ A' |/ ● O }}} Marker exist from: * A' succeed to A * A' (prune) Command run: * hg push Expected exchange: * `A ø⇠o A'` * A' (prune) === 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: * A' succeed to A * A' (prune) Command run: * hg push -r O (shall we account for a secret B? Expected exchange: * nothing? === D.4 Unknown changeset in between known one === Mostly a clarification case {{{ ø⇠◌⇠○ | |/ | ◔ |/ ● O }}} Should be treated as A.3 case: {{{ ø⇠○ | | | ◔ |/ ● O }}} === D.5 Unknown changeset in between known one === == Z. Crazy case == When I'm note very sure about what we should do === Z.1 partial push of split === {{{ D'○⇢ø D | | A B ○⇢ø⇠◔ C \|/ ● O }}} Marker exist from: * `A ø⇠⚭ (B,C)` (split) * `D ø⇠○ D'` Command run: * hg push -r C Expected exchange: We should probably send the whole marker anyway. But what about things related to B children * `A ø⇠⚭ (B,C)` (split) Expected exclude: * `D ø⇠○ D'` ---- CategoryDeveloper CategoryEvolution