context: schedule file prefetch before comparing for cleanliness
authorKyle Lippincott <spectral@google.com>
Tue, 08 Jan 2019 14:31:22 -0800
changeset 41154 f18f665b1424
parent 41153 2c3f69855ce8
child 41155 8c222bec97da
context: schedule file prefetch before comparing for cleanliness When using a system like remotefilelog, we can occasionally run into scenarios where the local content cache does not have the data we need to perform these comparisons. These will be fetched on-demand, but individually; if the remotefilelog server isn't extremely low latency, the runtime of the command becomes dominated by the multiple getfile requests for individual files. By performing the prefetch, we can download these files in bulk, and save server resources and many network roundtrips. Differential Revision: https://phab.mercurial-scm.org/D5532
mercurial/context.py
--- a/mercurial/context.py	Wed Dec 12 16:26:58 2018 +0300
+++ b/mercurial/context.py	Tue Jan 08 14:31:22 2019 -0800
@@ -2018,6 +2018,12 @@
         to resolve a conflict.
         """
         keys = []
+        # This won't be perfect, but can help performance significantly when
+        # using things like remotefilelog.
+        scmutil.prefetchfiles(
+            self.repo(), [self.p1().rev()],
+            matchmod.match('', '', patterns=self._cache.keys(), exact=True))
+
         for path in self._cache.keys():
             cache = self._cache[path]
             try: