aboutsummaryrefslogtreecommitdiff
path: root/guix-build-coordinator
Commit message (Collapse)AuthorAge
* Enable recompressing nars in the publish hookHEADmasterChristopher Baines6 days
| | | | | | | | | | The implementation is intended to be generic, but the new default behaviour either keeps the lzip compressed nar, or if the compressed nar isn't much smaller than the compressed one, decompresses it. This also changes the API for the post-publish-hook and combined-post-publish-hook, since they now get called with a list of narinfos, rather than a list of narinfos and files.
* Use threads for reading derivationsChristopher Baines10 days
| | | | As it is quite slow on bayfront at least.
* Work around the broken with-store/non-blockingChristopher Baines10 days
|
* Use just one cooperative threadChristopher Baines10 days
| | | | To try and simplify things.
* Order messages to the writer thread channelChristopher Baines10 days
| | | | So that they're processed in a first come first served manor.
* Handled fetching details of canceled buildsChristopher Baines10 days
|
* Export port timeout error predicatesChristopher Baines10 days
|
* Use with-store/non-blocking from guixChristopher Baines11 days
| | | | | As it opens a non-blocking connection, rather than doing a blocking handshake then making the socket non-blocking.
* Fix the no-fibers-wait in with-fibers-port-timeoutsChristopher Baines11 days
|
* Make the worker thread timeout a parameterChristopher Baines13 days
|
* Avoid starting new builds when low on disk spaceChristopher Baines13 days
|
* Increase the timeout for substituting derivationsChristopher Baines2024-05-10
|
* Fix the port timeout exceptionsChristopher Baines2024-05-10
|
* Remove with-timeoutChristopher Baines2024-05-10
| | | | As it's now unused.
* Use with-port-timeouts when recompressing log filesChristopher Baines2024-05-10
| | | | To avoid using alarm.
* Avoid with-store/non-blockingChristopher Baines2024-05-10
| | | | | As I'm seeing exceptions around here, but I think the syntax rule may be hiding exactly where.
* Show backtraces for exceptions when substituting derivationsChristopher Baines2024-05-10
|
* Have the port monitoring fiber use non blocking socketsChristopher Baines2024-04-28
|
* Use port timeouts when substituting derivationsChristopher Baines2024-04-28
|
* Create the pid file earlierChristopher Baines2024-04-28
| | | | As this might avoid shepherd failing to start the service.
* Don't use open-connection-for-uri from GuixChristopher Baines2024-04-28
| | | | As it's timeout approach doesn't work with suspendable ports.
* Fix for guile-lib v0.2.8Christopher Baines2024-04-23
| | | | | | | | | I'm not sure quite what's changed, but it seems like the way the formatter is being called has changed in a backwards incompatible way. To maintain compatability with both older and newer versions of guile-lib, accept the formatter being called with extra arguments, and just look at the first three.
* Tweak running sqitchChristopher Baines2024-04-22
|
* Use the new process metrics exporterChristopher Baines2024-04-17
|
* Guard against signaling the error condition not workingChristopher Baines2024-04-17
| | | | As this seems to happen when the process runs out of file descriptors.q
* Fix the sleep-impl argument to retry-on-errorChristopher Baines2024-03-16
|
* Add a definition of retry-on-error which uses the fibers sleepChristopher Baines2024-03-15
|
* Remove the core-guile-sleep variableChristopher Baines2024-03-15
| | | | As this is unnecessary.
* Remove mutexes from the upload monitoringChristopher Baines2024-03-13
| | | | Instead, store the state in the work queue.
* Actually use non-blocking ports for network requestsChristopher Baines2024-03-02
| | | | In most places at least.
* Expose information about setup failuresChristopher Baines2024-02-08
|
* Expose the derived priorities for buildsChristopher Baines2024-01-30
|
* Add inbuilt port monitoringChristopher Baines2024-01-19
| | | | | | There seems to be some issue which can lead to the client and agent ports no longer being listened on. I've got no idea how to track this down, so just try and monitor for it and kill the process if it happens.
* Force output with the custom port logChristopher Baines2024-01-17
|
* Fix worker thread channel destructor loggingChristopher Baines2024-01-17
|
* Change retry-on-error to take #:ignore and #:no-retryChristopher Baines2024-01-12
| | | | And change #:ignore to better reflect ignoring the exception.
* Add more options when updating build prioritiesChristopher Baines2024-01-12
| | | | | | | Computing new derived priorities is slow, so these options allow skipping that if you know what you're doing. For example, if you're updating a batch of related builds and you want them all to have the same priorities and derived priorities, you can now do that much quicker.
* Use client errors in update-build-priorityChristopher Baines2024-01-12
| | | | So these can be passed to the agent.
* Avoid calling display for loggingChristopher Baines2023-12-28
| | | | | | As I'm getting encoding-error (put-char conversion to port encoding failed) errors from it sometimes. It doesn't happen at all, then suddenly it seems to happen continuously.
* Rewrite process-eventChristopher Baines2023-12-23
| | | | | Just in case this helps to avoid the "conversion to port encoding failed" issue.
* Add some port timeouts in to the build-success-publish-hookChristopher Baines2023-12-13
|
* Improve thread pool and work queue backtracesChristopher Baines2023-12-09
| | | | To try and get more information about "conversion to port encoding failed".
* Add delay logging to SQLite transactionsChristopher Baines2023-12-06
|
* Drop the write duration logging thresholdChristopher Baines2023-12-06
|
* Guard against exceptions in the thread poolChristopher Baines2023-12-06
|
* Don't check too-many-threads? in the thread pool for each jobChristopher Baines2023-12-06
| | | | | As this is excessive. Instead just check this when there are no jobs available.
* Avoid some database queries when running hooksChristopher Baines2023-12-06
|
* Move a hash-set! in the thread poolChristopher Baines2023-12-06
| | | | To avoid unlocking and locking the mutex.
* Re-fetch running jobs in the thread poolChristopher Baines2023-12-06
| | | | As the information might be stale when wait-condition-variable returns.
* Fix the return value for fold-buildsChristopher Baines2023-12-06
|