aboutsummaryrefslogtreecommitdiff
path: root/guix-data-service
Commit message (Expand)AuthorAge
* Add mechanism to fix derivation inputs•••Some derivations are missing inputs, I don't know why, but this should allow for manually fixing the affected derivations. HEADmasterChristopher Baines2025-03-10
* Remove compatability with old guix derivation-inputsChristopher Baines2025-03-10
* Use vector-fold rather than map to construct input-derivations•••This avoids append-map and vector->list so might be faster and use less memory. Christopher Baines2025-03-10
* Revert "Optimise inserting derivation inputs"•••I'm concerned that this approach is more error prone and won't error if there are issues with the data in the database. This reverts commit 3081887b90d09a6d5cf82e7292087362f30fc311. Christopher Baines2025-03-10
* Improve package deduplication•••Handle cases where there are up to 4 packages with the same name and version plus some having replacements. This is currently the case with glibc. Christopher Baines2025-02-25
* Use with-exception-handler in place of with-throw-handlerChristopher Baines2025-02-25
* Update the package derivations table in a transactionChristopher Baines2025-02-20
* Make knots update changesChristopher Baines2025-02-11
* Make the job timeout configurableChristopher Baines2025-02-10
* Tweak streaming json•••Don't set the encoding, this should be handled by knots, and drop the block size as the previous value seemed excessive. Christopher Baines2025-02-06
* Fix some nullsChristopher Baines2025-02-06
* Update use of resource poolsChristopher Baines2025-02-06
* Name the temporary threadsChristopher Baines2025-02-04
* Remove some knots workaroundsChristopher Baines2025-02-03
* Update exception handling in load-new-guix-revisionChristopher Baines2025-02-03
* Add a slightly crude method to ignore systems and targets•••While processing a revision. It would be good to also record what systems and targets are in the platforms so it's clear what data is missing, but that can be added later. Christopher Baines2025-02-03
* Use the default knots web server exception handlerChristopher Baines2025-02-03
* Force add resources parallelism to 1 for some resource pools•••This'll be the default in coming revisions of knots, and is neccessary for pools being used to share a single object. Christopher Baines2025-02-02
* Remove use of call-with-utility-thread•••As I think it's no longer necessary, and the PostgreSQL connection is being handled here incorrectly. Christopher Baines2025-01-31
* Work around the resource pool needing a destructorChristopher Baines2025-01-31
* Configure the knots web server connection buffer size•••Rather than changing the buffer size when processing each request. Christopher Baines2025-01-29
* Move the exception handling to the knots web server•••Rather than adding another layer. This commit also removes the extra fibers layer when processing requests. I forget exactly why this was added, but if the reason resurfaces then it should be addressed in knots. Christopher Baines2025-01-29
* Fix branch package version page if no data is foundChristopher Baines2025-01-27
* Fix matching NULLChristopher Baines2025-01-27
* Fix null handling in result-serializer-simple-list-with-null-handlingChristopher Baines2025-01-26
* Handle NULL values for included_branchesChristopher Baines2025-01-17
* Update Guile KnotsChristopher Baines2025-01-14
* Log resource pool stats on errorsChristopher Baines2025-01-06
* Fix log messageChristopher Baines2025-01-06
* Attempt to reduce memory churn when processing package metadataChristopher Baines2024-12-29
* Report on the GC when processing revisionsChristopher Baines2024-12-29
* Parallelise inserting derivation countsChristopher Baines2024-12-29
* Remove random xChristopher Baines2024-12-29
* Avoid null characters in package descriptionsChristopher Baines2024-12-29
* Update Guile KnotsChristopher Baines2024-12-29
* Add utility functions for configuring the databaseChristopher Baines2024-12-15
* Use knots•••A library of extracted Guile Fibers patterns and utilities. Christopher Baines2024-12-15
* Add a commentChristopher Baines2024-12-09
* Log differently when using the load-new-guix-revision-inserts lockChristopher Baines2024-12-09
* Avoid getting the load-new-guix-revision-inserts lock twiceChristopher Baines2024-12-09
* Fix hash display for formatted derivationsChristopher Baines2024-12-09
* Improve some query formattingChristopher Baines2024-12-09
* Fix wrong number of values from channel-derivations-by-system->guix-store-itemChristopher Baines2024-12-09
* Rework loading revision data•••These changes were motivated by switching to a mechanism of loading data that isn't dependent on the big advisory lock that prevents more than one revision from being processed at a time. Since INSERT ... RETURNING id; is used, this can block if another transaction inserts the same data, and then cause an error when that transaction commits. The solution is to use ON CONFLICT DO NOTHING, but you have to handle the case when the INSERT doesn't return an id since the other transaction has inserted it. This commit rewrites insert-missing-data-and-return-all-ids to do as described above, as well as being more efficient in how existing data is detected and to use more vectors. Other utilities for inserting data are added as well. Christopher Baines2024-12-09
* Improve null handlingChristopher Baines2024-12-01
* Handle conflicts in insert-missing-data-and-return-all-idsChristopher Baines2024-12-01
* Memoize field-can-be-null?Christopher Baines2024-11-29
* Handle conflicts when inserting lint warning message setsChristopher Baines2024-11-29
* Use insert-missing-data-and-return-all-ids for locationsChristopher Baines2024-11-29
* Add in call-with-worker-thread to try to avoid sort problemsChristopher Baines2024-11-29