Skip to content

Commit

Permalink
Retry depot push on 5xx errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobwgillespie committed Nov 21, 2024
1 parent 5904d77 commit f1c626c
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 25 deletions.
62 changes: 39 additions & 23 deletions pkg/cmd/push/blobs.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,49 +7,65 @@ import (
"io"
"net/http"
"strings"
"time"

"github.com/opencontainers/go-digest"
)

type BlobRequest struct {
type BlobToPush struct {
ParsedTag *ParsedTag
RegistryToken *Token
BuildID string
Digest digest.Digest
}

// PushBlob requests a blob to be pushed from Depot to a destination registry.
func PushBlob(ctx context.Context, depotToken string, req *BlobRequest) error {
func PushBlob(ctx context.Context, depotToken string, blob *BlobToPush) error {
var err error
var req *http.Request

pushRequest := struct {
RegistryHost string `json:"registryHost"`
RepositoryNamespace string `json:"repositoryNamespace"`
RegistryToken string `json:"registryToken"`
TokenScheme string `json:"tokenScheme"`
}{
RegistryHost: req.ParsedTag.Host,
RepositoryNamespace: req.ParsedTag.Path,
RegistryToken: req.RegistryToken.Token,
TokenScheme: req.RegistryToken.Scheme,
RegistryHost: blob.ParsedTag.Host,
RepositoryNamespace: blob.ParsedTag.Path,
RegistryToken: blob.RegistryToken.Token,
TokenScheme: blob.RegistryToken.Scheme,
}
buf, _ := json.MarshalIndent(pushRequest, "", " ")
url := fmt.Sprintf("https://blob.depot.dev/blobs/%s/%s", blob.BuildID, blob.Digest.String())

url := fmt.Sprintf("https://blob.depot.dev/blobs/%s/%s", req.BuildID, req.Digest.String())
pushReq, err := http.NewRequestWithContext(ctx, "POST", url, strings.NewReader(string(buf)))
if err != nil {
return err
}
pushReq.Header.Add("Authorization", "Bearer "+depotToken)
pushReq.Header.Set("Content-Type", "application/json")
resp, err := http.DefaultClient.Do(pushReq)
if err != nil {
return err
}
_ = resp.Body.Close()
if resp.StatusCode/100 != 2 {
body, _ := io.ReadAll(resp.Body)
err := fmt.Errorf("unexpected status code: %d %s", resp.StatusCode, string(body))
return err
attempts := 0
for {
attempts += 1

req, err = http.NewRequestWithContext(ctx, "POST", url, strings.NewReader(string(buf)))
if err != nil {
return err
}
req.Header.Add("Authorization", "Bearer "+depotToken)
req.Header.Set("Content-Type", "application/json")
resp, err := http.DefaultClient.Do(req)
if err != nil {
return err
}
_ = resp.Body.Close()

if resp.StatusCode/100 != 2 {
if resp.StatusCode >= 500 && attempts < 3 {
time.Sleep(5 * time.Second)
continue
}

body, _ := io.ReadAll(resp.Body)
err := fmt.Errorf("unexpected status code: %d %s", resp.StatusCode, string(body))
return err
}

return nil
}

return nil
}
4 changes: 2 additions & 2 deletions pkg/cmd/push/push.go
Original file line number Diff line number Diff line change
Expand Up @@ -167,13 +167,13 @@ func Push(ctx context.Context, progressFmt, buildID, target, tag, token string,
blob := blobs[i]
fin := logger(fmt.Sprintf("Pushing blob %s", blob.Digest.String()))

req := &BlobRequest{
blobToPush := &BlobToPush{
ParsedTag: parsedTag,
RegistryToken: registryToken,
BuildID: buildID,
Digest: blob.Digest,
}
err := PushBlob(blobCtx, token, req)
err := PushBlob(blobCtx, token, blobToPush)
fin()
return err
})
Expand Down

0 comments on commit f1c626c

Please sign in to comment.