We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb43ee6 commit 62b177dCopy full SHA for 62b177d
1 file changed
master/master.cfg
@@ -110,6 +110,22 @@ c["configurators"] = [
110
)
111
]
112
113
+# Note: these cache values are not currently tuned in any meaningful way.
114
+# Some are taken straight from the buildbot docs at
115
+# https://docs.buildbot.net/4.2.1/manual/configuration/global.html#caches
116
+# and others are just guesses. For now, they're mostly meant to see if
117
+# there's any appreciable impact on performance or memory usage.
118
+c["caches"] = {
119
+ "Changes": 100,
120
+ "Builds": 500,
121
+ "chdicts": 100,
122
+ "BuildRequests": 100,
123
+ "SourceStamps": 200,
124
+ "ssdicts": 200,
125
+ "objectids": 10,
126
+ "usdicts": 100,
127
+}
128
+
129
# workers are set up in workers.py
130
c["workers"] = [w.bb_worker for w in WORKERS]
131
0 commit comments