Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Unified Diff: gclient_utils.py

Issue 210063005: Disabled threaded index-pack for known difficult repositories. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gclient_scm.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient_utils.py
diff --git a/gclient_utils.py b/gclient_utils.py
index 44dba57df2f8230c247e3bbf96eee5c58e61448c..3fcc903cdf4dedc1cbe2e66b459ff4c5fae0f244 100644
--- a/gclient_utils.py
+++ b/gclient_utils.py
@@ -30,6 +30,14 @@ RETRY_INITIAL_SLEEP = 0.5
_WARNINGS = []
+# These repos are known to cause OOM errors on 32-bit platforms, due the the
mmoss 2014/03/25 00:21:44 It would be nice if this only kicked in under thos
+# very large objects they contain. It is not safe to use threaded index-pack
+# when cloning/fetching them.
+THREADED_INDEX_PACK_BLACKLIST = [
+ 'https://chromium.googlesource.com/chromium/reference_builds/chrome_win.git'
+]
+
+
class Error(Exception):
"""gclient exception class."""
def __init__(self, msg, *args, **kwargs):
@@ -990,10 +998,12 @@ def DefaultDeltaBaseCacheLimit():
else:
return '512m'
-def DefaultIndexPackConfig():
+def DefaultIndexPackConfig(url=''):
"""Return reasonable default values for configuring git-index-pack.
Experiments suggest that higher values for pack.threads don't improve
performance."""
- return ['-c', 'pack.threads=5', '-c',
- 'core.deltaBaseCacheLimit=%s' % DefaultDeltaBaseCacheLimit()]
+ cache_limit = DefaultDeltaBaseCacheLimit()
+ pack_threads = 1 if url in THREADED_INDEX_PACK_BLACKLIST else 4
iannucci 2014/03/24 23:45:10 Not sure about the hard-coded 4 default. What abou
szager1 2014/03/24 23:56:44 I don't have any reason to believe that 4 is more
mmoss 2014/03/25 00:21:44 Yeah, only adding the command-line arg when "neces
szager1 2014/03/25 00:40:25 OK, the code now only sets pack.threads on the com
+ return ['-c', 'pack.threads=%d' % pack_threads,
+ '-c', 'core.deltaBaseCacheLimit=%s' % cache_limit]
« no previous file with comments | « gclient_scm.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698