|
@@ -1181,66 +1181,45 @@ func uploadBlobChunked(ctx context.Context, mp ModelPath, url string, layer *Lay
|
|
}
|
|
}
|
|
defer f.Close()
|
|
defer f.Close()
|
|
|
|
|
|
- completed := 0
|
|
|
|
|
|
+ var completed int64
|
|
chunkSize := 10 * 1024 * 1024
|
|
chunkSize := 10 * 1024 * 1024
|
|
|
|
|
|
for {
|
|
for {
|
|
- r, w := io.Pipe()
|
|
|
|
- defer r.Close()
|
|
|
|
-
|
|
|
|
- limit := completed + chunkSize
|
|
|
|
- if chunkSize >= layer.Size-completed {
|
|
|
|
- limit = layer.Size
|
|
|
|
- chunkSize = layer.Size - completed
|
|
|
|
|
|
+ chunk := int64(layer.Size) - completed
|
|
|
|
+ if chunk > int64(chunkSize) {
|
|
|
|
+ chunk = int64(chunkSize)
|
|
}
|
|
}
|
|
|
|
|
|
- go func() {
|
|
|
|
- defer w.Close()
|
|
|
|
- for {
|
|
|
|
- n, err := io.CopyN(w, f, 1024*1024)
|
|
|
|
- if err != nil && !errors.Is(err, io.EOF) {
|
|
|
|
- fn(api.ProgressResponse{
|
|
|
|
- Status: fmt.Sprintf("error copying pipe: %v", err),
|
|
|
|
- Digest: layer.Digest,
|
|
|
|
- Total: layer.Size,
|
|
|
|
- Completed: completed,
|
|
|
|
- })
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- completed += int(n)
|
|
|
|
-
|
|
|
|
- fn(api.ProgressResponse{
|
|
|
|
- Status: fmt.Sprintf("uploading %s", layer.Digest),
|
|
|
|
- Digest: layer.Digest,
|
|
|
|
- Total: layer.Size,
|
|
|
|
- Completed: completed,
|
|
|
|
- })
|
|
|
|
-
|
|
|
|
- if completed >= limit {
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }()
|
|
|
|
|
|
+ sectionReader := io.NewSectionReader(f, int64(completed), chunk)
|
|
|
|
|
|
headers := make(map[string]string)
|
|
headers := make(map[string]string)
|
|
headers["Content-Type"] = "application/octet-stream"
|
|
headers["Content-Type"] = "application/octet-stream"
|
|
- headers["Content-Length"] = strconv.Itoa(chunkSize)
|
|
|
|
- headers["Content-Range"] = fmt.Sprintf("%d-%d", completed, limit-1)
|
|
|
|
|
|
+ headers["Content-Length"] = strconv.Itoa(int(chunk))
|
|
|
|
+ headers["Content-Range"] = fmt.Sprintf("%d-%d", completed, completed+sectionReader.Size()-1)
|
|
|
|
+
|
|
|
|
+ resp, err := makeRequestWithRetry(ctx, "PATCH", url, headers, sectionReader, regOpts)
|
|
|
|
+ if err != nil && !errors.Is(err, io.EOF) {
|
|
|
|
+ fn(api.ProgressResponse{
|
|
|
|
+ Status: fmt.Sprintf("error uploading chunk: %v", err),
|
|
|
|
+ Digest: layer.Digest,
|
|
|
|
+ Total: layer.Size,
|
|
|
|
+ Completed: int(completed),
|
|
|
|
+ })
|
|
|
|
|
|
- resp, err := makeRequest(ctx, "PATCH", url, headers, r, regOpts)
|
|
|
|
- if err != nil {
|
|
|
|
return err
|
|
return err
|
|
}
|
|
}
|
|
defer resp.Body.Close()
|
|
defer resp.Body.Close()
|
|
|
|
|
|
- if resp.StatusCode != http.StatusAccepted {
|
|
|
|
- body, _ := io.ReadAll(resp.Body)
|
|
|
|
- return fmt.Errorf("on finish upload registry responded with code %d: %v", resp.StatusCode, string(body))
|
|
|
|
- }
|
|
|
|
|
|
+ completed += sectionReader.Size()
|
|
|
|
+ fn(api.ProgressResponse{
|
|
|
|
+ Status: fmt.Sprintf("uploading %s", layer.Digest),
|
|
|
|
+ Digest: layer.Digest,
|
|
|
|
+ Total: layer.Size,
|
|
|
|
+ Completed: int(completed),
|
|
|
|
+ })
|
|
|
|
|
|
url = resp.Header.Get("Location")
|
|
url = resp.Header.Get("Location")
|
|
- if completed >= layer.Size {
|
|
|
|
|
|
+ if completed >= int64(layer.Size) {
|
|
break
|
|
break
|
|
}
|
|
}
|
|
}
|
|
}
|