##// END OF EJS Templates
changegroup: remove reordering control (BC)...
changegroup: remove reordering control (BC) This logic - including the experimental bundle.reorder option - was originally added in a8e3931e3fb5 in 2011 and then later ported to changegroup.py. The intent of this option and associated logic is to control the ordering of revisions in deltagroups in changegroups. At the time it was implemented, only changegroup version 1 existed and generaldelta revlogs were just coming into the world. Changegroup version 1 requires that deltas be made against the last revision sent over the wire. Used with generaldelta, this created an impedance mismatch of sorts and resulted in changegroup producers spending a lot of time recomputing deltas. Revision reordering was introduced so outgoing revisions would be sent in "generaldelta order" and producers would be able to reuse internal deltas from storage. Later on, we introduced changegroup version 2. It supported denoting which revision a delta was against. So we no longer needed to sort outgoing revisions to ensure optimal delta generation from the producer. So, subsequent changegroup versions disabled reordering. We also later made the changelog not store deltas by default. And we also made the changelog send out deltas in storage order. Why we do this for changelog, I'm not sure. Maybe we want to preserve revision order across clones? It doesn't really matter for this commit. Fast forward to 2018. We want to abstract storage backends. And having changegroup code require knowledge about how deltas are stored internally interferes with that goal. This commit removes reordering control from changegroup generation. After this commit, the reordering behavior is: * The changelog is always sent out in storage order (no behavior change). * Non-changelog generaldelta revlogs are reordered to always be in DAG topological order (previously, generaldelta revlogs would be emitted in storage order for version 2 and 3 changegroups). * Non-changelog non-generaldelta revlogs are sent in storage order (no behavior change). * There exists no config option to override behavior. The big difference here is that generaldelta revlogs now *always* have their revisions sorted in DAG order before going out over the wire. This behavior was previously only done for changegroup version 1. Version 2 and version 3 changegroups disabled reordering because the interchange format supported encoding arbitrary delta parents, so reordering wasn't strictly necessary. I can think of a few significant implications for this change. Because changegroup receivers will now see non-changelog revisions in DAG order instead of storage order, the internal storage order of manifests and files may differ substantially between producer and consumer. I don't think this matters that much, since the storage order of manifests and files is largely hidden from users. Only the storage order of changelog matters (because `hg log` shows the changelog in storage order). I don't think there should be any controversy here. The reordering of revisions has implications for changegroup producers. Previously, generaldelta revlogs would be emitted in storage order. And in the common case, the internally-stored delta could effectively be copied from disk into the deltagroup delta. This meant that emitting delta groups for generaldelta revlogs would be mostly linear read I/O. This is desirable for performance. With us now reordering generaldelta revlog revisions in DAG order, the read operations may use more random I/O instead of sequential I/O. This could result in performance loss. But with the prevalence of SSDs and fast random I/O, I'm not too worried. (Note: the optimal emission order for revlogs is actually delta encoding order. But the changegroup code wasn't doing that before or after this change. We could potentially implement that in a later commit.) Changegroups in DAG order will have implications for receivers. Previously, receiving storage order might mean seeing a number of interleaved branches. This would mean long delta chains, sparse I/O, and possibly more fulltext revisions instead of deltas, blowing up storage storage. (This is the same set of problems that sparse revlogs aims to address.) With the producer now sending revisions in DAG order, the receiver also stores revisions in DAG order. That means revisions for the same DAG branch are all grouped together. And this should yield better storage outcomes. In other words, sending the reordered changegroup allows the receiver to have better storage order and for the producer to not propagate its (possibly sub-optimal) internal storage order. On the mozilla-unified repository, this change influences bundle generation: $ hg bundle -t none-v2 -a before: time: real 355.680 secs (user 256.790+0.000 sys 16.820+0.000) after: time: real 382.950 secs (user 281.700+0.000 sys 17.690+0.000) before: 7,150,228,967 bytes (uncompressed) after: 7,041,556,273 bytes (uncompressed) before: 1,669,063,234 bytes (zstd l=3) after: 1,628,598,830 bytes (zstd l=3) $ hg unbundle before: time: real 511.910 secs (user 466.750+0.000 sys 32.680+0.000) after: time: real 487.790 secs (user 443.940+0.000 sys 30.840+0.000) 00manifest.d size: source: 274,924,292 bytes before: 304,741,626 bytes after: 245,252,087 bytes .hg/store total file size: source: 2,649,133,490 before: 2,680,888,130 after: 2,627,875,673 We see the bundle size drop. That's probably because if a revlog internally isn't storing a delta, it will choose to delta against the last emitted revision. And on repos with interleaved branches (like mozilla-unified), the previous revision could be an unrelated branch and therefore be a large delta. But with this patch, the previous revision is likely p1 or p2 and a delta should be small. We also see the manifest size drop by ~50 MB. It's worth noting that the manifest actually *increased* in size by ~25 MB in the old strategy and decreased ~25 MB from its source in the new strategy. Again, my explanation for this is that the DAG ordering in the changegroup is resulting in better grouping of revisions in the receiver, which results in more compact delta chains and higher storage efficiency. Unbundle time also dropped. I suspect this is due to the revlog having to work less to compute deltas since the incoming deltas are more optimal. i.e. the receiver spends less time resolving fulltext revisions as incoming deltas bounce around between DAG branches and delta chains. We also see bundle generation time increase. This is not desirable. However, the regression is only significant on the original repository: if we generate a bundle from the repository created from the new, always reordered bundles, we're close to baseline (if not at it with expected noise): $ hg bundle -t none-v2 -a before (original): time: real 355.680 secs (user 256.790+0.000 sys 16.820+0.000) after (original): time: real 382.950 secs (user 281.700+0.000 sys 17.690+0.000) after (new repo): time: real 362.280 secs (user 260.300+0.000 sys 17.700+0.000) This regression is a bit worrying because it will impact serving canonical repositories (that don't have optimal internal storage unless they are reordered - possibly as part of running `hg debugupgraderepo`). However, this regression will only be noticed by very large changegroups. And I'm guessing/hoping that any repository that large is using clonebundles to mitigate server load. Again, sending DAG order isn't the optimal send order for servers: sending in storage-delta order is. But in order to enable storage-optimal send order, we'll need a storage API that handles sorting. Future commits will introduce such an API. Differential Revision: https://phab.mercurial-scm.org/D4721

File last commit:

r39897:db5501d9 default
r39897:db5501d9 default
Show More
configitems.py
1404 lines | 31.0 KiB | text/x-python | PythonLexer
# configitems.py - centralized declaration of configuration option
#
# Copyright 2017 Pierre-Yves David <pierre-yves.david@octobus.net>
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
from __future__ import absolute_import
import functools
import re
from . import (
encoding,
error,
)
def loadconfigtable(ui, extname, configtable):
"""update config item known to the ui with the extension ones"""
for section, items in sorted(configtable.items()):
knownitems = ui._knownconfig.setdefault(section, itemregister())
knownkeys = set(knownitems)
newkeys = set(items)
for key in sorted(knownkeys & newkeys):
msg = "extension '%s' overwrite config item '%s.%s'"
msg %= (extname, section, key)
ui.develwarn(msg, config='warn-config')
knownitems.update(items)
class configitem(object):
"""represent a known config item
:section: the official config section where to find this item,
:name: the official name within the section,
:default: default value for this item,
:alias: optional list of tuples as alternatives,
:generic: this is a generic definition, match name using regular expression.
"""
def __init__(self, section, name, default=None, alias=(),
generic=False, priority=0):
self.section = section
self.name = name
self.default = default
self.alias = list(alias)
self.generic = generic
self.priority = priority
self._re = None
if generic:
self._re = re.compile(self.name)
class itemregister(dict):
"""A specialized dictionary that can handle wild-card selection"""
def __init__(self):
super(itemregister, self).__init__()
self._generics = set()
def update(self, other):
super(itemregister, self).update(other)
self._generics.update(other._generics)
def __setitem__(self, key, item):
super(itemregister, self).__setitem__(key, item)
if item.generic:
self._generics.add(item)
def get(self, key):
baseitem = super(itemregister, self).get(key)
if baseitem is not None and not baseitem.generic:
return baseitem
# search for a matching generic item
generics = sorted(self._generics, key=(lambda x: (x.priority, x.name)))
for item in generics:
# we use 'match' instead of 'search' to make the matching simpler
# for people unfamiliar with regular expression. Having the match
# rooted to the start of the string will produce less surprising
# result for user writing simple regex for sub-attribute.
#
# For example using "color\..*" match produces an unsurprising
# result, while using search could suddenly match apparently
# unrelated configuration that happens to contains "color."
# anywhere. This is a tradeoff where we favor requiring ".*" on
# some match to avoid the need to prefix most pattern with "^".
# The "^" seems more error prone.
if item._re.match(key):
return item
return None
coreitems = {}
def _register(configtable, *args, **kwargs):
item = configitem(*args, **kwargs)
section = configtable.setdefault(item.section, itemregister())
if item.name in section:
msg = "duplicated config item registration for '%s.%s'"
raise error.ProgrammingError(msg % (item.section, item.name))
section[item.name] = item
# special value for case where the default is derived from other values
dynamicdefault = object()
# Registering actual config items
def getitemregister(configtable):
f = functools.partial(_register, configtable)
# export pseudo enum as configitem.*
f.dynamicdefault = dynamicdefault
return f
coreconfigitem = getitemregister(coreitems)
coreconfigitem('alias', '.*',
default=dynamicdefault,
generic=True,
)
coreconfigitem('annotate', 'nodates',
default=False,
)
coreconfigitem('annotate', 'showfunc',
default=False,
)
coreconfigitem('annotate', 'unified',
default=None,
)
coreconfigitem('annotate', 'git',
default=False,
)
coreconfigitem('annotate', 'ignorews',
default=False,
)
coreconfigitem('annotate', 'ignorewsamount',
default=False,
)
coreconfigitem('annotate', 'ignoreblanklines',
default=False,
)
coreconfigitem('annotate', 'ignorewseol',
default=False,
)
coreconfigitem('annotate', 'nobinary',
default=False,
)
coreconfigitem('annotate', 'noprefix',
default=False,
)
coreconfigitem('annotate', 'word-diff',
default=False,
)
coreconfigitem('auth', 'cookiefile',
default=None,
)
# bookmarks.pushing: internal hack for discovery
coreconfigitem('bookmarks', 'pushing',
default=list,
)
# bundle.mainreporoot: internal hack for bundlerepo
coreconfigitem('bundle', 'mainreporoot',
default='',
)
coreconfigitem('censor', 'policy',
default='abort',
)
coreconfigitem('chgserver', 'idletimeout',
default=3600,
)
coreconfigitem('chgserver', 'skiphash',
default=False,
)
coreconfigitem('cmdserver', 'log',
default=None,
)
coreconfigitem('color', '.*',
default=None,
generic=True,
)
coreconfigitem('color', 'mode',
default='auto',
)
coreconfigitem('color', 'pagermode',
default=dynamicdefault,
)
coreconfigitem('commands', 'grep.all-files',
default=False,
)
coreconfigitem('commands', 'resolve.confirm',
default=False,
)
coreconfigitem('commands', 'resolve.explicit-re-merge',
default=False,
)
coreconfigitem('commands', 'resolve.mark-check',
default='none',
)
coreconfigitem('commands', 'show.aliasprefix',
default=list,
)
coreconfigitem('commands', 'status.relative',
default=False,
)
coreconfigitem('commands', 'status.skipstates',
default=[],
)
coreconfigitem('commands', 'status.terse',
default='',
)
coreconfigitem('commands', 'status.verbose',
default=False,
)
coreconfigitem('commands', 'update.check',
default=None,
)
coreconfigitem('commands', 'update.requiredest',
default=False,
)
coreconfigitem('committemplate', '.*',
default=None,
generic=True,
)
coreconfigitem('convert', 'bzr.saverev',
default=True,
)
coreconfigitem('convert', 'cvsps.cache',
default=True,
)
coreconfigitem('convert', 'cvsps.fuzz',
default=60,
)
coreconfigitem('convert', 'cvsps.logencoding',
default=None,
)
coreconfigitem('convert', 'cvsps.mergefrom',
default=None,
)
coreconfigitem('convert', 'cvsps.mergeto',
default=None,
)
coreconfigitem('convert', 'git.committeractions',
default=lambda: ['messagedifferent'],
)
coreconfigitem('convert', 'git.extrakeys',
default=list,
)
coreconfigitem('convert', 'git.findcopiesharder',
default=False,
)
coreconfigitem('convert', 'git.remoteprefix',
default='remote',
)
coreconfigitem('convert', 'git.renamelimit',
default=400,
)
coreconfigitem('convert', 'git.saverev',
default=True,
)
coreconfigitem('convert', 'git.similarity',
default=50,
)
coreconfigitem('convert', 'git.skipsubmodules',
default=False,
)
coreconfigitem('convert', 'hg.clonebranches',
default=False,
)
coreconfigitem('convert', 'hg.ignoreerrors',
default=False,
)
coreconfigitem('convert', 'hg.revs',
default=None,
)
coreconfigitem('convert', 'hg.saverev',
default=False,
)
coreconfigitem('convert', 'hg.sourcename',
default=None,
)
coreconfigitem('convert', 'hg.startrev',
default=None,
)
coreconfigitem('convert', 'hg.tagsbranch',
default='default',
)
coreconfigitem('convert', 'hg.usebranchnames',
default=True,
)
coreconfigitem('convert', 'ignoreancestorcheck',
default=False,
)
coreconfigitem('convert', 'localtimezone',
default=False,
)
coreconfigitem('convert', 'p4.encoding',
default=dynamicdefault,
)
coreconfigitem('convert', 'p4.startrev',
default=0,
)
coreconfigitem('convert', 'skiptags',
default=False,
)
coreconfigitem('convert', 'svn.debugsvnlog',
default=True,
)
coreconfigitem('convert', 'svn.trunk',
default=None,
)
coreconfigitem('convert', 'svn.tags',
default=None,
)
coreconfigitem('convert', 'svn.branches',
default=None,
)
coreconfigitem('convert', 'svn.startrev',
default=0,
)
coreconfigitem('debug', 'dirstate.delaywrite',
default=0,
)
coreconfigitem('defaults', '.*',
default=None,
generic=True,
)
coreconfigitem('devel', 'all-warnings',
default=False,
)
coreconfigitem('devel', 'bundle2.debug',
default=False,
)
coreconfigitem('devel', 'cache-vfs',
default=None,
)
coreconfigitem('devel', 'check-locks',
default=False,
)
coreconfigitem('devel', 'check-relroot',
default=False,
)
coreconfigitem('devel', 'default-date',
default=None,
)
coreconfigitem('devel', 'deprec-warn',
default=False,
)
coreconfigitem('devel', 'disableloaddefaultcerts',
default=False,
)
coreconfigitem('devel', 'warn-empty-changegroup',
default=False,
)
coreconfigitem('devel', 'legacy.exchange',
default=list,
)
coreconfigitem('devel', 'servercafile',
default='',
)
coreconfigitem('devel', 'serverexactprotocol',
default='',
)
coreconfigitem('devel', 'serverrequirecert',
default=False,
)
coreconfigitem('devel', 'strip-obsmarkers',
default=True,
)
coreconfigitem('devel', 'warn-config',
default=None,
)
coreconfigitem('devel', 'warn-config-default',
default=None,
)
coreconfigitem('devel', 'user.obsmarker',
default=None,
)
coreconfigitem('devel', 'warn-config-unknown',
default=None,
)
coreconfigitem('devel', 'debug.extensions',
default=False,
)
coreconfigitem('devel', 'debug.peer-request',
default=False,
)
coreconfigitem('diff', 'nodates',
default=False,
)
coreconfigitem('diff', 'showfunc',
default=False,
)
coreconfigitem('diff', 'unified',
default=None,
)
coreconfigitem('diff', 'git',
default=False,
)
coreconfigitem('diff', 'ignorews',
default=False,
)
coreconfigitem('diff', 'ignorewsamount',
default=False,
)
coreconfigitem('diff', 'ignoreblanklines',
default=False,
)
coreconfigitem('diff', 'ignorewseol',
default=False,
)
coreconfigitem('diff', 'nobinary',
default=False,
)
coreconfigitem('diff', 'noprefix',
default=False,
)
coreconfigitem('diff', 'word-diff',
default=False,
)
coreconfigitem('email', 'bcc',
default=None,
)
coreconfigitem('email', 'cc',
default=None,
)
coreconfigitem('email', 'charsets',
default=list,
)
coreconfigitem('email', 'from',
default=None,
)
coreconfigitem('email', 'method',
default='smtp',
)
coreconfigitem('email', 'reply-to',
default=None,
)
coreconfigitem('email', 'to',
default=None,
)
coreconfigitem('experimental', 'archivemetatemplate',
default=dynamicdefault,
)
coreconfigitem('experimental', 'bundle-phases',
default=False,
)
coreconfigitem('experimental', 'bundle2-advertise',
default=True,
)
coreconfigitem('experimental', 'bundle2-output-capture',
default=False,
)
coreconfigitem('experimental', 'bundle2.pushback',
default=False,
)
coreconfigitem('experimental', 'bundle2lazylocking',
default=False,
)
coreconfigitem('experimental', 'bundlecomplevel',
default=None,
)
coreconfigitem('experimental', 'bundlecomplevel.bzip2',
default=None,
)
coreconfigitem('experimental', 'bundlecomplevel.gzip',
default=None,
)
coreconfigitem('experimental', 'bundlecomplevel.none',
default=None,
)
coreconfigitem('experimental', 'bundlecomplevel.zstd',
default=None,
)
coreconfigitem('experimental', 'changegroup3',
default=False,
)
coreconfigitem('experimental', 'clientcompressionengines',
default=list,
)
coreconfigitem('experimental', 'copytrace',
default='on',
)
coreconfigitem('experimental', 'copytrace.movecandidateslimit',
default=100,
)
coreconfigitem('experimental', 'copytrace.sourcecommitlimit',
default=100,
)
coreconfigitem('experimental', 'crecordtest',
default=None,
)
coreconfigitem('experimental', 'directaccess',
default=False,
)
coreconfigitem('experimental', 'directaccess.revnums',
default=False,
)
coreconfigitem('experimental', 'editortmpinhg',
default=False,
)
coreconfigitem('experimental', 'evolution',
default=list,
)
coreconfigitem('experimental', 'evolution.allowdivergence',
default=False,
alias=[('experimental', 'allowdivergence')]
)
coreconfigitem('experimental', 'evolution.allowunstable',
default=None,
)
coreconfigitem('experimental', 'evolution.createmarkers',
default=None,
)
coreconfigitem('experimental', 'evolution.effect-flags',
default=True,
alias=[('experimental', 'effect-flags')]
)
coreconfigitem('experimental', 'evolution.exchange',
default=None,
)
coreconfigitem('experimental', 'evolution.bundle-obsmarker',
default=False,
)
coreconfigitem('experimental', 'evolution.report-instabilities',
default=True,
)
coreconfigitem('experimental', 'evolution.track-operation',
default=True,
)
coreconfigitem('experimental', 'maxdeltachainspan',
default=-1,
)
coreconfigitem('experimental', 'mergetempdirprefix',
default=None,
)
coreconfigitem('experimental', 'mmapindexthreshold',
default=None,
)
coreconfigitem('experimental', 'nonnormalparanoidcheck',
default=False,
)
coreconfigitem('experimental', 'exportableenviron',
default=list,
)
coreconfigitem('experimental', 'extendedheader.index',
default=None,
)
coreconfigitem('experimental', 'extendedheader.similarity',
default=False,
)
coreconfigitem('experimental', 'format.compression',
default='zlib',
)
coreconfigitem('experimental', 'graphshorten',
default=False,
)
coreconfigitem('experimental', 'graphstyle.parent',
default=dynamicdefault,
)
coreconfigitem('experimental', 'graphstyle.missing',
default=dynamicdefault,
)
coreconfigitem('experimental', 'graphstyle.grandparent',
default=dynamicdefault,
)
coreconfigitem('experimental', 'hook-track-tags',
default=False,
)
coreconfigitem('experimental', 'httppeer.advertise-v2',
default=False,
)
coreconfigitem('experimental', 'httppostargs',
default=False,
)
coreconfigitem('experimental', 'mergedriver',
default=None,
)
coreconfigitem('experimental', 'nointerrupt', default=False)
coreconfigitem('experimental', 'nointerrupt-interactiveonly', default=True)
coreconfigitem('experimental', 'obsmarkers-exchange-debug',
default=False,
)
coreconfigitem('experimental', 'remotenames',
default=False,
)
coreconfigitem('experimental', 'removeemptydirs',
default=True,
)
coreconfigitem('experimental', 'revisions.prefixhexnode',
default=False,
)
coreconfigitem('experimental', 'revlogv2',
default=None,
)
coreconfigitem('experimental', 'revisions.disambiguatewithin',
default=None,
)
coreconfigitem('experimental', 'single-head-per-branch',
default=False,
)
coreconfigitem('experimental', 'sshserver.support-v2',
default=False,
)
coreconfigitem('experimental', 'spacemovesdown',
default=False,
)
coreconfigitem('experimental', 'sparse-read',
default=False,
)
coreconfigitem('experimental', 'sparse-read.density-threshold',
default=0.50,
)
coreconfigitem('experimental', 'sparse-read.min-gap-size',
default='65K',
)
coreconfigitem('experimental', 'treemanifest',
default=False,
)
coreconfigitem('experimental', 'update.atomic-file',
default=False,
)
coreconfigitem('experimental', 'sshpeer.advertise-v2',
default=False,
)
coreconfigitem('experimental', 'web.apiserver',
default=False,
)
coreconfigitem('experimental', 'web.api.http-v2',
default=False,
)
coreconfigitem('experimental', 'web.api.debugreflect',
default=False,
)
coreconfigitem('experimental', 'worker.wdir-get-thread-safe',
default=False,
)
coreconfigitem('experimental', 'xdiff',
default=False,
)
coreconfigitem('extensions', '.*',
default=None,
generic=True,
)
coreconfigitem('extdata', '.*',
default=None,
generic=True,
)
coreconfigitem('format', 'chunkcachesize',
default=None,
)
coreconfigitem('format', 'dotencode',
default=True,
)
coreconfigitem('format', 'generaldelta',
default=False,
)
coreconfigitem('format', 'manifestcachesize',
default=None,
)
coreconfigitem('format', 'maxchainlen',
default=dynamicdefault,
)
coreconfigitem('format', 'obsstore-version',
default=None,
)
coreconfigitem('format', 'sparse-revlog',
default=False,
)
coreconfigitem('format', 'usefncache',
default=True,
)
coreconfigitem('format', 'usegeneraldelta',
default=True,
)
coreconfigitem('format', 'usestore',
default=True,
)
coreconfigitem('format', 'internal-phase',
default=False,
)
coreconfigitem('fsmonitor', 'warn_when_unused',
default=True,
)
coreconfigitem('fsmonitor', 'warn_update_file_count',
default=50000,
)
coreconfigitem('hooks', '.*',
default=dynamicdefault,
generic=True,
)
coreconfigitem('hgweb-paths', '.*',
default=list,
generic=True,
)
coreconfigitem('hostfingerprints', '.*',
default=list,
generic=True,
)
coreconfigitem('hostsecurity', 'ciphers',
default=None,
)
coreconfigitem('hostsecurity', 'disabletls10warning',
default=False,
)
coreconfigitem('hostsecurity', 'minimumprotocol',
default=dynamicdefault,
)
coreconfigitem('hostsecurity', '.*:minimumprotocol$',
default=dynamicdefault,
generic=True,
)
coreconfigitem('hostsecurity', '.*:ciphers$',
default=dynamicdefault,
generic=True,
)
coreconfigitem('hostsecurity', '.*:fingerprints$',
default=list,
generic=True,
)
coreconfigitem('hostsecurity', '.*:verifycertsfile$',
default=None,
generic=True,
)
coreconfigitem('http_proxy', 'always',
default=False,
)
coreconfigitem('http_proxy', 'host',
default=None,
)
coreconfigitem('http_proxy', 'no',
default=list,
)
coreconfigitem('http_proxy', 'passwd',
default=None,
)
coreconfigitem('http_proxy', 'user',
default=None,
)
coreconfigitem('logtoprocess', 'commandexception',
default=None,
)
coreconfigitem('logtoprocess', 'commandfinish',
default=None,
)
coreconfigitem('logtoprocess', 'command',
default=None,
)
coreconfigitem('logtoprocess', 'develwarn',
default=None,
)
coreconfigitem('logtoprocess', 'uiblocked',
default=None,
)
coreconfigitem('merge', 'checkunknown',
default='abort',
)
coreconfigitem('merge', 'checkignored',
default='abort',
)
coreconfigitem('experimental', 'merge.checkpathconflicts',
default=False,
)
coreconfigitem('merge', 'followcopies',
default=True,
)
coreconfigitem('merge', 'on-failure',
default='continue',
)
coreconfigitem('merge', 'preferancestor',
default=lambda: ['*'],
)
coreconfigitem('merge', 'strict-capability-check',
default=False,
)
coreconfigitem('merge-tools', '.*',
default=None,
generic=True,
)
coreconfigitem('merge-tools', br'.*\.args$',
default="$local $base $other",
generic=True,
priority=-1,
)
coreconfigitem('merge-tools', br'.*\.binary$',
default=False,
generic=True,
priority=-1,
)
coreconfigitem('merge-tools', br'.*\.check$',
default=list,
generic=True,
priority=-1,
)
coreconfigitem('merge-tools', br'.*\.checkchanged$',
default=False,
generic=True,
priority=-1,
)
coreconfigitem('merge-tools', br'.*\.executable$',
default=dynamicdefault,
generic=True,
priority=-1,
)
coreconfigitem('merge-tools', br'.*\.fixeol$',
default=False,
generic=True,
priority=-1,
)
coreconfigitem('merge-tools', br'.*\.gui$',
default=False,
generic=True,
priority=-1,
)
coreconfigitem('merge-tools', br'.*\.mergemarkers$',
default='basic',
generic=True,
priority=-1,
)
coreconfigitem('merge-tools', br'.*\.mergemarkertemplate$',
default=dynamicdefault, # take from ui.mergemarkertemplate
generic=True,
priority=-1,
)
coreconfigitem('merge-tools', br'.*\.priority$',
default=0,
generic=True,
priority=-1,
)
coreconfigitem('merge-tools', br'.*\.premerge$',
default=dynamicdefault,
generic=True,
priority=-1,
)
coreconfigitem('merge-tools', br'.*\.symlink$',
default=False,
generic=True,
priority=-1,
)
coreconfigitem('pager', 'attend-.*',
default=dynamicdefault,
generic=True,
)
coreconfigitem('pager', 'ignore',
default=list,
)
coreconfigitem('pager', 'pager',
default=dynamicdefault,
)
coreconfigitem('patch', 'eol',
default='strict',
)
coreconfigitem('patch', 'fuzz',
default=2,
)
coreconfigitem('paths', 'default',
default=None,
)
coreconfigitem('paths', 'default-push',
default=None,
)
coreconfigitem('paths', '.*',
default=None,
generic=True,
)
coreconfigitem('phases', 'checksubrepos',
default='follow',
)
coreconfigitem('phases', 'new-commit',
default='draft',
)
coreconfigitem('phases', 'publish',
default=True,
)
coreconfigitem('profiling', 'enabled',
default=False,
)
coreconfigitem('profiling', 'format',
default='text',
)
coreconfigitem('profiling', 'freq',
default=1000,
)
coreconfigitem('profiling', 'limit',
default=30,
)
coreconfigitem('profiling', 'nested',
default=0,
)
coreconfigitem('profiling', 'output',
default=None,
)
coreconfigitem('profiling', 'showmax',
default=0.999,
)
coreconfigitem('profiling', 'showmin',
default=dynamicdefault,
)
coreconfigitem('profiling', 'sort',
default='inlinetime',
)
coreconfigitem('profiling', 'statformat',
default='hotpath',
)
coreconfigitem('profiling', 'time-track',
default='cpu',
)
coreconfigitem('profiling', 'type',
default='stat',
)
coreconfigitem('progress', 'assume-tty',
default=False,
)
coreconfigitem('progress', 'changedelay',
default=1,
)
coreconfigitem('progress', 'clear-complete',
default=True,
)
coreconfigitem('progress', 'debug',
default=False,
)
coreconfigitem('progress', 'delay',
default=3,
)
coreconfigitem('progress', 'disable',
default=False,
)
coreconfigitem('progress', 'estimateinterval',
default=60.0,
)
coreconfigitem('progress', 'format',
default=lambda: ['topic', 'bar', 'number', 'estimate'],
)
coreconfigitem('progress', 'refresh',
default=0.1,
)
coreconfigitem('progress', 'width',
default=dynamicdefault,
)
coreconfigitem('push', 'pushvars.server',
default=False,
)
coreconfigitem('storage', 'revlog.optimize-delta-parent-choice',
default=True,
alias=[('format', 'aggressivemergedeltas')],
)
coreconfigitem('server', 'bookmarks-pushkey-compat',
default=True,
)
coreconfigitem('server', 'bundle1',
default=True,
)
coreconfigitem('server', 'bundle1gd',
default=None,
)
coreconfigitem('server', 'bundle1.pull',
default=None,
)
coreconfigitem('server', 'bundle1gd.pull',
default=None,
)
coreconfigitem('server', 'bundle1.push',
default=None,
)
coreconfigitem('server', 'bundle1gd.push',
default=None,
)
coreconfigitem('server', 'bundle2.stream',
default=True,
alias=[('experimental', 'bundle2.stream')]
)
coreconfigitem('server', 'compressionengines',
default=list,
)
coreconfigitem('server', 'concurrent-push-mode',
default='strict',
)
coreconfigitem('server', 'disablefullbundle',
default=False,
)
coreconfigitem('server', 'maxhttpheaderlen',
default=1024,
)
coreconfigitem('server', 'pullbundle',
default=False,
)
coreconfigitem('server', 'preferuncompressed',
default=False,
)
coreconfigitem('server', 'streamunbundle',
default=False,
)
coreconfigitem('server', 'uncompressed',
default=True,
)
coreconfigitem('server', 'uncompressedallowsecret',
default=False,
)
coreconfigitem('server', 'validate',
default=False,
)
coreconfigitem('server', 'zliblevel',
default=-1,
)
coreconfigitem('server', 'zstdlevel',
default=3,
)
coreconfigitem('share', 'pool',
default=None,
)
coreconfigitem('share', 'poolnaming',
default='identity',
)
coreconfigitem('smtp', 'host',
default=None,
)
coreconfigitem('smtp', 'local_hostname',
default=None,
)
coreconfigitem('smtp', 'password',
default=None,
)
coreconfigitem('smtp', 'port',
default=dynamicdefault,
)
coreconfigitem('smtp', 'tls',
default='none',
)
coreconfigitem('smtp', 'username',
default=None,
)
coreconfigitem('sparse', 'missingwarning',
default=True,
)
coreconfigitem('subrepos', 'allowed',
default=dynamicdefault, # to make backporting simpler
)
coreconfigitem('subrepos', 'hg:allowed',
default=dynamicdefault,
)
coreconfigitem('subrepos', 'git:allowed',
default=dynamicdefault,
)
coreconfigitem('subrepos', 'svn:allowed',
default=dynamicdefault,
)
coreconfigitem('templates', '.*',
default=None,
generic=True,
)
coreconfigitem('trusted', 'groups',
default=list,
)
coreconfigitem('trusted', 'users',
default=list,
)
coreconfigitem('ui', '_usedassubrepo',
default=False,
)
coreconfigitem('ui', 'allowemptycommit',
default=False,
)
coreconfigitem('ui', 'archivemeta',
default=True,
)
coreconfigitem('ui', 'askusername',
default=False,
)
coreconfigitem('ui', 'clonebundlefallback',
default=False,
)
coreconfigitem('ui', 'clonebundleprefers',
default=list,
)
coreconfigitem('ui', 'clonebundles',
default=True,
)
coreconfigitem('ui', 'color',
default='auto',
)
coreconfigitem('ui', 'commitsubrepos',
default=False,
)
coreconfigitem('ui', 'debug',
default=False,
)
coreconfigitem('ui', 'debugger',
default=None,
)
coreconfigitem('ui', 'editor',
default=dynamicdefault,
)
coreconfigitem('ui', 'fallbackencoding',
default=None,
)
coreconfigitem('ui', 'forcecwd',
default=None,
)
coreconfigitem('ui', 'forcemerge',
default=None,
)
coreconfigitem('ui', 'formatdebug',
default=False,
)
coreconfigitem('ui', 'formatjson',
default=False,
)
coreconfigitem('ui', 'formatted',
default=None,
)
coreconfigitem('ui', 'graphnodetemplate',
default=None,
)
coreconfigitem('ui', 'history-editing-backup',
default=True,
)
coreconfigitem('ui', 'interactive',
default=None,
)
coreconfigitem('ui', 'interface',
default=None,
)
coreconfigitem('ui', 'interface.chunkselector',
default=None,
)
coreconfigitem('ui', 'large-file-limit',
default=10000000,
)
coreconfigitem('ui', 'logblockedtimes',
default=False,
)
coreconfigitem('ui', 'logtemplate',
default=None,
)
coreconfigitem('ui', 'merge',
default=None,
)
coreconfigitem('ui', 'mergemarkers',
default='basic',
)
coreconfigitem('ui', 'mergemarkertemplate',
default=('{node|short} '
'{ifeq(tags, "tip", "", '
'ifeq(tags, "", "", "{tags} "))}'
'{if(bookmarks, "{bookmarks} ")}'
'{ifeq(branch, "default", "", "{branch} ")}'
'- {author|user}: {desc|firstline}')
)
coreconfigitem('ui', 'nontty',
default=False,
)
coreconfigitem('ui', 'origbackuppath',
default=None,
)
coreconfigitem('ui', 'paginate',
default=True,
)
coreconfigitem('ui', 'patch',
default=None,
)
coreconfigitem('ui', 'portablefilenames',
default='warn',
)
coreconfigitem('ui', 'promptecho',
default=False,
)
coreconfigitem('ui', 'quiet',
default=False,
)
coreconfigitem('ui', 'quietbookmarkmove',
default=False,
)
coreconfigitem('ui', 'remotecmd',
default='hg',
)
coreconfigitem('ui', 'report_untrusted',
default=True,
)
coreconfigitem('ui', 'rollback',
default=True,
)
coreconfigitem('ui', 'signal-safe-lock',
default=True,
)
coreconfigitem('ui', 'slash',
default=False,
)
coreconfigitem('ui', 'ssh',
default='ssh',
)
coreconfigitem('ui', 'ssherrorhint',
default=None,
)
coreconfigitem('ui', 'statuscopies',
default=False,
)
coreconfigitem('ui', 'strict',
default=False,
)
coreconfigitem('ui', 'style',
default='',
)
coreconfigitem('ui', 'supportcontact',
default=None,
)
coreconfigitem('ui', 'textwidth',
default=78,
)
coreconfigitem('ui', 'timeout',
default='600',
)
coreconfigitem('ui', 'timeout.warn',
default=0,
)
coreconfigitem('ui', 'traceback',
default=False,
)
coreconfigitem('ui', 'tweakdefaults',
default=False,
)
coreconfigitem('ui', 'username',
alias=[('ui', 'user')]
)
coreconfigitem('ui', 'verbose',
default=False,
)
coreconfigitem('verify', 'skipflags',
default=None,
)
coreconfigitem('web', 'allowbz2',
default=False,
)
coreconfigitem('web', 'allowgz',
default=False,
)
coreconfigitem('web', 'allow-pull',
alias=[('web', 'allowpull')],
default=True,
)
coreconfigitem('web', 'allow-push',
alias=[('web', 'allow_push')],
default=list,
)
coreconfigitem('web', 'allowzip',
default=False,
)
coreconfigitem('web', 'archivesubrepos',
default=False,
)
coreconfigitem('web', 'cache',
default=True,
)
coreconfigitem('web', 'contact',
default=None,
)
coreconfigitem('web', 'deny_push',
default=list,
)
coreconfigitem('web', 'guessmime',
default=False,
)
coreconfigitem('web', 'hidden',
default=False,
)
coreconfigitem('web', 'labels',
default=list,
)
coreconfigitem('web', 'logoimg',
default='hglogo.png',
)
coreconfigitem('web', 'logourl',
default='https://mercurial-scm.org/',
)
coreconfigitem('web', 'accesslog',
default='-',
)
coreconfigitem('web', 'address',
default='',
)
coreconfigitem('web', 'allow-archive',
alias=[('web', 'allow_archive')],
default=list,
)
coreconfigitem('web', 'allow_read',
default=list,
)
coreconfigitem('web', 'baseurl',
default=None,
)
coreconfigitem('web', 'cacerts',
default=None,
)
coreconfigitem('web', 'certificate',
default=None,
)
coreconfigitem('web', 'collapse',
default=False,
)
coreconfigitem('web', 'csp',
default=None,
)
coreconfigitem('web', 'deny_read',
default=list,
)
coreconfigitem('web', 'descend',
default=True,
)
coreconfigitem('web', 'description',
default="",
)
coreconfigitem('web', 'encoding',
default=lambda: encoding.encoding,
)
coreconfigitem('web', 'errorlog',
default='-',
)
coreconfigitem('web', 'ipv6',
default=False,
)
coreconfigitem('web', 'maxchanges',
default=10,
)
coreconfigitem('web', 'maxfiles',
default=10,
)
coreconfigitem('web', 'maxshortchanges',
default=60,
)
coreconfigitem('web', 'motd',
default='',
)
coreconfigitem('web', 'name',
default=dynamicdefault,
)
coreconfigitem('web', 'port',
default=8000,
)
coreconfigitem('web', 'prefix',
default='',
)
coreconfigitem('web', 'push_ssl',
default=True,
)
coreconfigitem('web', 'refreshinterval',
default=20,
)
coreconfigitem('web', 'server-header',
default=None,
)
coreconfigitem('web', 'static',
default=None,
)
coreconfigitem('web', 'staticurl',
default=None,
)
coreconfigitem('web', 'stripes',
default=1,
)
coreconfigitem('web', 'style',
default='paper',
)
coreconfigitem('web', 'templates',
default=None,
)
coreconfigitem('web', 'view',
default='served',
)
coreconfigitem('worker', 'backgroundclose',
default=dynamicdefault,
)
# Windows defaults to a limit of 512 open files. A buffer of 128
# should give us enough headway.
coreconfigitem('worker', 'backgroundclosemaxqueue',
default=384,
)
coreconfigitem('worker', 'backgroundcloseminfilecount',
default=2048,
)
coreconfigitem('worker', 'backgroundclosethreadcount',
default=4,
)
coreconfigitem('worker', 'enabled',
default=True,
)
coreconfigitem('worker', 'numcpus',
default=None,
)
# Rebase related configuration moved to core because other extension are doing
# strange things. For example, shelve import the extensions to reuse some bit
# without formally loading it.
coreconfigitem('commands', 'rebase.requiredest',
default=False,
)
coreconfigitem('experimental', 'rebaseskipobsolete',
default=True,
)
coreconfigitem('rebase', 'singletransaction',
default=False,
)
coreconfigitem('rebase', 'experimental.inmemory',
default=False,
)