Mercurial > public > mercurial-scm > hg
diff mercurial/setdiscovery.py @ 23813:932f814bf016
setdiscovery: always add exponential sample to the heads
As explained in a previous changeset, prioritizing heads too much behaves
pathologically when there are more heads than the sample size. To counter this,
we always inject exponential samples before reducing to the sample size limit.
This already show some benefit in the test themselves, but on a real-world example
this moves my discovery for push to pathologically headed repo from 45 rounds to
17 of them.
We should maybe ensure that at least 25% of the result sample is heads, but I
think the random sampling will be fine in practice.
author | Pierre-Yves David <pierre-yves.david@fb.com> |
---|---|
date | Wed, 07 Jan 2015 17:28:51 -0800 |
parents | db58186dd8e3 |
children | 6a5877a73141 |
line wrap: on
line diff
--- a/mercurial/setdiscovery.py Wed Jan 07 17:23:21 2015 -0800 +++ b/mercurial/setdiscovery.py Wed Jan 07 17:28:51 2015 -0800 @@ -105,10 +105,7 @@ return sample def _takefullsample(dag, nodes, size): - always = dag.headsetofconnecteds(nodes) - if size <= len(always): - return always - sample = always + sample = always = dag.headsetofconnecteds(nodes) # update from heads _updatesample(dag, nodes, sample, always) # update from roots