diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-17 16:18:25 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-18 13:59:06 +0000 |
commit | c204cc47d0a319d0435c4a9ba06e241c2e75ff1e (patch) | |
tree | 335e80d6b956e0327156aa8eed3811498b735c07 /bitbake | |
parent | fe857e4179355bcfb79303c16baf3ad87fca59a4 (diff) | |
download | poky-c204cc47d0a319d0435c4a9ba06e241c2e75ff1e.tar.gz |
bitbake: cooker/siggen: Empty siggen cache during parsing
When parsing recipes its apparent the memory usage of bitbake rises linearly
with number of recipes parsed. It shouldn't.
Using tracemalloc (thanks for the tip Joshua Lock) it was clear that the
dependency information left behind in siggen was the culprit. Add a new
method to allow us to drop this information. We don't need it after the recipe
has been parsed and hashes calculated (at runtime its different but only the
currently executing task would be in memory).
This should give signficant memory usage improvements for bitbake and that
in turn should help speed on more constrained systems, as well as when used in
multiconfig environments.
(Bitbake rev: ef29309d0b512b64d024e383e7baff22c727711c)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/cooker.py | 3 | ||||
-rw-r--r-- | bitbake/lib/bb/siggen.py | 11 |
2 files changed, 13 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index 911805a6e3..d2d308ae20 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
@@ -1944,7 +1944,8 @@ class Parser(multiprocessing.Process): | |||
1944 | except IndexError: | 1944 | except IndexError: |
1945 | break | 1945 | break |
1946 | result = self.parse(*job) | 1946 | result = self.parse(*job) |
1947 | 1947 | # Clear the siggen cache after parsing to control memory usage, its huge | |
1948 | bb.parse.siggen.postparsing_clean_cache() | ||
1948 | try: | 1949 | try: |
1949 | self.results.put(result, timeout=0.25) | 1950 | self.results.put(result, timeout=0.25) |
1950 | except queue.Full: | 1951 | except queue.Full: |
diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py index ffd8fcaf36..c2d0c736cf 100644 --- a/bitbake/lib/bb/siggen.py +++ b/bitbake/lib/bb/siggen.py | |||
@@ -51,6 +51,9 @@ class SignatureGenerator(object): | |||
51 | def finalise(self, fn, d, varient): | 51 | def finalise(self, fn, d, varient): |
52 | return | 52 | return |
53 | 53 | ||
54 | def postparsing_clean_cache(self): | ||
55 | return | ||
56 | |||
54 | def get_unihash(self, tid): | 57 | def get_unihash(self, tid): |
55 | return self.taskhash[tid] | 58 | return self.taskhash[tid] |
56 | 59 | ||
@@ -188,6 +191,14 @@ class SignatureGeneratorBasic(SignatureGenerator): | |||
188 | for task in taskdeps: | 191 | for task in taskdeps: |
189 | d.setVar("BB_BASEHASH_task-%s" % task, self.basehash[fn + ":" + task]) | 192 | d.setVar("BB_BASEHASH_task-%s" % task, self.basehash[fn + ":" + task]) |
190 | 193 | ||
194 | def postparsing_clean_cache(self): | ||
195 | # | ||
196 | # After parsing we can remove some things from memory to reduce our memory footprint | ||
197 | # | ||
198 | self.gendeps = {} | ||
199 | self.lookupcache = {} | ||
200 | self.taskdeps = {} | ||
201 | |||
191 | def rundep_check(self, fn, recipename, task, dep, depname, dataCache): | 202 | def rundep_check(self, fn, recipename, task, dep, depname, dataCache): |
192 | # Return True if we should keep the dependency, False to drop it | 203 | # Return True if we should keep the dependency, False to drop it |
193 | # We only manipulate the dependencies for packages not in the whitelist | 204 | # We only manipulate the dependencies for packages not in the whitelist |