Commits on Source (43)
-
Tristan Van Berkom authored
Cache management fixes See merge request !1091
-
Tristan Van Berkom authored
The artifact cache emits messages, and we want to allow that in preflight.
-
Tristan Van Berkom authored
We can streamline this call to os.statvfs() in a few places.
-
Tristan Van Berkom authored
This will benefit from a better UtilError being raised, and and turns the artifact cache's local function into a one liner. The loop which finds the first existing directory in the given path has been removed, being meaningless due to the call to os.makedirs() in ArtifactCache.__init__(). The local function was renamed to _get_cache_volume_size() and no longer takes any arguments, which is more suitable for the function as it serves as a testing override surface for unittest.mock(). The following test cases which use the function to override the ArtifactCache behavior have been updated to use the new overridable function name: tests/artifactcache/cache_size.py tests/artifactcache/expiry.py
-
Tristan Van Berkom authored
A simple object which creates a snapshot of current usage statistics for easy reporting in the frontend.
-
Tristan Van Berkom authored
A frontend facing API for obtaining usage statistics. I would have put this on Stream instead, but the Context seems to be the de facto place for looking up the artifact cache in general so let's put it here.
-
Tristan Van Berkom authored
-
Tristan Van Berkom authored
This also adds some comments around the main status bar heading rendering function.
-
Tristan Van Berkom authored
Added some useful status messages when: * Calculating a new artifact cache usage size * Starting a cleanup * Finishing a cleanup Also enhanced messaging about what was cleaned up so far when aborting a cleanup.
-
Tristan Van Berkom authored
-
Tristan Van Berkom authored
-
Tristan Van Berkom authored
Updates the known cache size in the main process while the cleanup process is ongoing, so that the status indicators update live while the cleanup happens.
-
Tristan Van Berkom authored
This seems to have been copy/pasted from cascache, and documents the function to possibly return None if defer_prune was specified, but this function does not expose defer_prune.
-
Tristan Van Berkom authored
Cache management logging enhancements See merge request !1105
-
James Ennis authored
profile_start() and profile_end() calls have been incorporated into Scheduler.run()
-
James Ennis authored
profile_start() and profile_end() calls have been added to Stream.load_selection()
-
James Ennis authored
-
James Ennis authored
Add new 'scheduler' and 'load-selection' profiling topics See merge request !1088
-
Tristan Van Berkom authored
Instead only rely on the headroom to be enough to protect against out of space conditions. The headroom can become configurable as a separate step is required. The changes to achieve this are: * Rename ArtifactCache.has_quota_exceeded() to ArtifactCache.full(). * ArtifactCache.full() now also reports True if the available space on the artifact cache volume is smaller than the headroom. This ensures jobs get triggered to cleanup the cache when reaching the end of the disk. * When loading the artifact quota, it is now only an error if the quota exceeds the overall disk space, not if it does not fit in the available space. It is still a warning if the quota does not fit in the available space on the artifact cache volume. * Updated scheduler.py and buildqueue.py for the API rename * tests: Updated the artifactcache/expiry.py test for its expectations in this regard. Added a new test to test an error when quota was specified to exceed total disk space, and adjusted the existing tests to expect a warning when the quota does not fit in the available space. This fixes issue #733 and #869.
-
Tristan Van Berkom authored
_artifactcache.py: Don't require the quota to be available on disk. Closes #869 and #733 See merge request !1106
-
Previously, one had to manually install `click-man` package, and remember to run the correct command. Now, we can simply run `tox -e man` to update the man pages.
-
Notable changes: * New `source` and `artifact` command groups * Man pages corresponding to obsolete commands, that were marked as hidden in Click, have now been removed. Fixes #881.
-
Simplify our docs, by requesting users to run `tox -e man` to update man pages, instead of manually installing `click-man` and running the command manually.
-
If the `man` directory is empty, then it won't be copied in the source distribution, and `list_man_pages()` will throw an exception when trying to list files in a non-existent directory. This prevents us from installing the BuildStream package when the man pages are not there. The most common use-case for this is when we want to re-generate the man pages but want to install the package before re-generating them.
-
Tristan Van Berkom authored
Generate man pages using tox & update them Closes #880 and #881 See merge request !1107
-
Angelos Evripiotis authored
-
Angelos Evripiotis authored
Now that 'bst track' is obsolete, change guidance to refer to the replacement 'bst source track' instead.
-
Angelos Evripiotis authored
Now that 'bst fetch' is obsolete, change guidance to refer to the replacement 'bst source fetch' instead.
-
Angelos Evripiotis authored
Fixup refs to 'bst track' and 'bst fetch' See merge request !1086
-
Tom Pollard authored
use_artifact_config added as an optional default arg, allowing for loading of given elements artifact remote config.
-
Tom Pollard authored
Provide bst shell --use-buildtree the ability to attempt to acquire missing buildtrees, given respective option, user pull-buildtree context and remote availability. _frontend/cli.py: Refactor logic for determining --use-buildtree option with given opportunity to attempt pulling a non-local buildtree. Element loaded with artifact_config to allow remote querying. _stream.py: With given user option and element state, construct PullQueue to fetch remote buildtree. Continue or Error without buildtree if cannot be attained. tests/integration/build-tree.py: Update to support new usecases
-
Tom Pollard authored
Download buildtrees on demand for bst shell --use-buildtree Closes #829 See merge request !1050
-
Abderrahim Kitouni authored
This is needed since 0f2bc375
-
Abderrahim Kitouni authored
This is needed since 629a6e52, and was lost in the conversion to requirements.in
-
Javier Jardón authored
requirements/requirements.in: update minimum versions Closes #884 See merge request !1114
-
Job can complete before we return from `Job.span()` to `Scheduler._spawn_job()`, so that `_active_jobs` would not yet contain the job. This would print a stack on the console and try to run a second time the job which can have unexpected effects. In order to reproduce the issue, in `buildstream/_scheduler/jobs/job.py`, in `Job.spawn`, add a call to `time.sleep()` right before call to `asyncio.get_child_watcher()`. This fixes issue #857.
-
Jürg Billeter authored
Fix crash when spawned job completes very fast Closes #857 See merge request !1095
-
Fixes #882.
-
Jürg Billeter authored
Fix type of error codes in CAS server Closes #882 See merge request !1099
-
Fixes #873
-
Jürg Billeter authored
Make sure testing cache directory exists Closes #873 See merge request !1092
-
Raoul Hidalgo Charman authored
Deprecates artifactdir and builddir. Fixes #870
-
Raoul Hidalgo Charman authored
Part of #870
Showing
- CONTRIBUTING.rst 2 additions, 7 deletionsCONTRIBUTING.rst
- NEWS 1 addition, 1 deletionNEWS
- buildstream/_artifactcache.py 112 additions, 141 deletionsbuildstream/_artifactcache.py
- buildstream/_cas/__init__.py 1 addition, 1 deletionbuildstream/_cas/__init__.py
- buildstream/_cas/cascache.py 155 additions, 1 deletionbuildstream/_cas/cascache.py
- buildstream/_cas/casserver.py 4 additions, 4 deletionsbuildstream/_cas/casserver.py
- buildstream/_context.py 41 additions, 5 deletionsbuildstream/_context.py
- buildstream/_frontend/app.py 7 additions, 5 deletionsbuildstream/_frontend/app.py
- buildstream/_frontend/cli.py 26 additions, 15 deletionsbuildstream/_frontend/cli.py
- buildstream/_frontend/status.py 35 additions, 7 deletionsbuildstream/_frontend/status.py
- buildstream/_frontend/widget.py 1 addition, 0 deletionsbuildstream/_frontend/widget.py
- buildstream/_gitsourcebase.py 1 addition, 1 deletionbuildstream/_gitsourcebase.py
- buildstream/_loader/loader.py 2 additions, 2 deletionsbuildstream/_loader/loader.py
- buildstream/_pipeline.py 2 additions, 2 deletionsbuildstream/_pipeline.py
- buildstream/_profile.py 4 additions, 0 deletionsbuildstream/_profile.py
- buildstream/_scheduler/jobs/cachesizejob.py 3 additions, 3 deletionsbuildstream/_scheduler/jobs/cachesizejob.py
- buildstream/_scheduler/jobs/cleanupjob.py 15 additions, 2 deletionsbuildstream/_scheduler/jobs/cleanupjob.py
- buildstream/_scheduler/jobs/job.py 52 additions, 20 deletionsbuildstream/_scheduler/jobs/job.py
- buildstream/_scheduler/queues/buildqueue.py 1 addition, 1 deletionbuildstream/_scheduler/queues/buildqueue.py
- buildstream/_scheduler/scheduler.py 9 additions, 3 deletionsbuildstream/_scheduler/scheduler.py