From 28417afbb4d8776501f9ae3ecead5859707488b9 Mon Sep 17 00:00:00 2001 From: talyz Date: Mon, 19 Sep 2022 09:30:28 +0200 Subject: fix(nixery): Avoid race when the same image is fetched in parallel Remove a race condition which appears when uploadHashLayer is called with the same key from multiple threads simultaneously. This can easily happen when the same image path is requested by multiple clients at the same time. When it does, a 500 status is returned and the following error message is logged: { "context": { "filePath": "github.com/google/nixery/builder/builder.go", "lineNumber": 440, "functionName": "github.com/google/nixery/builder.uploadHashLayer" }, "error": "rename /var/lib/nixery/staging/ /var/lib/nixery/layers/: no such file or directory", "eventTime": "...", "layer": "", "message": "failed to move layer from staging", ... } To solve this issue, introduce a mutex keyed on the uploaded hash and move all layer caching into uploadHashLayer. This could additionally provide a small performance benefit when an already built image is requested and NIXERY_PKGS_PATH is set, since symlink layers and config layers are now also cached. Change-Id: I50788a7ec7940cb5e5760f244692e361019a9bb7 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6695 Reviewed-by: tazjin Tested-by: BuildkiteCI --- tools/nixery/go.mod | 1 + 1 file changed, 1 insertion(+) (limited to 'tools/nixery/go.mod') diff --git a/tools/nixery/go.mod b/tools/nixery/go.mod index 005daa337d..9e896ffb40 100644 --- a/tools/nixery/go.mod +++ b/tools/nixery/go.mod @@ -6,6 +6,7 @@ require ( cloud.google.com/go/storage v1.22.1 github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect github.com/google/go-cmp v0.5.8 + github.com/im7mortal/kmutex v1.0.1 // indirect github.com/pkg/xattr v0.4.7 github.com/sirupsen/logrus v1.8.1 golang.org/x/oauth2 v0.0.0-20220524215830-622c5d57e401 -- cgit 1.4.1