mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-23 10:45:45 +01:00
Merge pull request #12755 from heww/expired-blob-size
fix(blob): make blob size in redis expired in 24 hours
This commit is contained in:
commit
e476286fdc
@ -17,6 +17,7 @@ package blob
|
|||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/docker/distribution"
|
"github.com/docker/distribution"
|
||||||
"github.com/goharbor/harbor/src/lib/errors"
|
"github.com/goharbor/harbor/src/lib/errors"
|
||||||
@ -93,11 +94,13 @@ type Controller interface {
|
|||||||
func NewController() Controller {
|
func NewController() Controller {
|
||||||
return &controller{
|
return &controller{
|
||||||
blobMgr: blob.Mgr,
|
blobMgr: blob.Mgr,
|
||||||
|
blobSizeExpiration: time.Hour * 24, // keep the size of blob in redis with 24 hours
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
type controller struct {
|
type controller struct {
|
||||||
blobMgr blob.Manager
|
blobMgr blob.Manager
|
||||||
|
blobSizeExpiration time.Duration
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *controller) AssociateWithArtifact(ctx context.Context, blobDigests []string, artifactDigest string) error {
|
func (c *controller) AssociateWithArtifact(ctx context.Context, blobDigests []string, artifactDigest string) error {
|
||||||
@ -297,14 +300,17 @@ func (c *controller) SetAcceptedBlobSize(sessionID string, size int64) error {
|
|||||||
conn := redislib.DefaultPool().Get()
|
conn := redislib.DefaultPool().Get()
|
||||||
defer conn.Close()
|
defer conn.Close()
|
||||||
|
|
||||||
key := fmt.Sprintf("upload:%s:size", sessionID)
|
key := blobSizeKey(sessionID)
|
||||||
reply, err := redis.String(conn.Do("SET", key, size))
|
reply, err := redis.String(conn.Do("SET", key, size, "EX", int64(c.blobSizeExpiration/time.Second)))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
log.Errorf("failed to set accepted blob size for session %s in redis, error: %v", sessionID, err)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
if reply != "OK" {
|
if reply != "OK" {
|
||||||
return fmt.Errorf("bad reply value")
|
err := fmt.Errorf("failed to set accepted blob size for session %s in redis, error: expected reply is 'OK' but actual it is '%s'", sessionID, reply)
|
||||||
|
log.Errorf("%s", err.Error())
|
||||||
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
@ -314,7 +320,7 @@ func (c *controller) GetAcceptedBlobSize(sessionID string) (int64, error) {
|
|||||||
conn := redislib.DefaultPool().Get()
|
conn := redislib.DefaultPool().Get()
|
||||||
defer conn.Close()
|
defer conn.Close()
|
||||||
|
|
||||||
key := fmt.Sprintf("upload:%s:size", sessionID)
|
key := blobSizeKey(sessionID)
|
||||||
size, err := redis.Int64(conn.Do("GET", key))
|
size, err := redis.Int64(conn.Do("GET", key))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if err == redis.ErrNil {
|
if err == redis.ErrNil {
|
||||||
@ -358,3 +364,7 @@ func (c *controller) Update(ctx context.Context, blob *blob.Blob) error {
|
|||||||
func (c *controller) Delete(ctx context.Context, id int64) error {
|
func (c *controller) Delete(ctx context.Context, id int64) error {
|
||||||
return c.blobMgr.Delete(ctx, id)
|
return c.blobMgr.Delete(ctx, id)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func blobSizeKey(sessionID string) string {
|
||||||
|
return fmt.Sprintf("upload:%s:size", sessionID)
|
||||||
|
}
|
||||||
|
@ -17,9 +17,11 @@ package blob
|
|||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"testing"
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/goharbor/harbor/src/lib/errors"
|
"github.com/goharbor/harbor/src/lib/errors"
|
||||||
"github.com/goharbor/harbor/src/pkg/blob/models"
|
"github.com/goharbor/harbor/src/pkg/blob/models"
|
||||||
"testing"
|
|
||||||
|
|
||||||
"github.com/docker/distribution/manifest/schema2"
|
"github.com/docker/distribution/manifest/schema2"
|
||||||
"github.com/goharbor/harbor/src/pkg/blob"
|
"github.com/goharbor/harbor/src/pkg/blob"
|
||||||
@ -258,6 +260,7 @@ func (suite *ControllerTestSuite) TestSync() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (suite *ControllerTestSuite) TestGetSetAcceptedBlobSize() {
|
func (suite *ControllerTestSuite) TestGetSetAcceptedBlobSize() {
|
||||||
|
{
|
||||||
sessionID := uuid.New().String()
|
sessionID := uuid.New().String()
|
||||||
|
|
||||||
size, err := Ctl.GetAcceptedBlobSize(sessionID)
|
size, err := Ctl.GetAcceptedBlobSize(sessionID)
|
||||||
@ -271,6 +274,30 @@ func (suite *ControllerTestSuite) TestGetSetAcceptedBlobSize() {
|
|||||||
suite.Equal(int64(100), size)
|
suite.Equal(int64(100), size)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
// test blob size expired
|
||||||
|
ctl := &controller{blobSizeExpiration: time.Second * 5}
|
||||||
|
|
||||||
|
sessionID := uuid.New().String()
|
||||||
|
|
||||||
|
size, err := ctl.GetAcceptedBlobSize(sessionID)
|
||||||
|
suite.Nil(err)
|
||||||
|
suite.Equal(int64(0), size)
|
||||||
|
|
||||||
|
suite.Nil(ctl.SetAcceptedBlobSize(sessionID, 100))
|
||||||
|
|
||||||
|
size, err = ctl.GetAcceptedBlobSize(sessionID)
|
||||||
|
suite.Nil(err)
|
||||||
|
suite.Equal(int64(100), size)
|
||||||
|
|
||||||
|
time.Sleep(time.Second * 10)
|
||||||
|
|
||||||
|
size, err = ctl.GetAcceptedBlobSize(sessionID)
|
||||||
|
suite.Nil(err)
|
||||||
|
suite.Equal(int64(0), size)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func (suite *ControllerTestSuite) TestTouch() {
|
func (suite *ControllerTestSuite) TestTouch() {
|
||||||
ctx := suite.Context()
|
ctx := suite.Context()
|
||||||
|
|
||||||
|
@ -45,7 +45,6 @@ const (
|
|||||||
dialWriteTimeout = 10 * time.Second
|
dialWriteTimeout = 10 * time.Second
|
||||||
blobPrefix = "blobs::*"
|
blobPrefix = "blobs::*"
|
||||||
repoPrefix = "repository::*"
|
repoPrefix = "repository::*"
|
||||||
uploadSizePattern = "upload:*:size"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// GarbageCollector is the struct to run registry's garbage collection
|
// GarbageCollector is the struct to run registry's garbage collection
|
||||||
@ -348,8 +347,7 @@ func (gc *GarbageCollector) cleanCache() error {
|
|||||||
// sample of keys in registry redis:
|
// sample of keys in registry redis:
|
||||||
// 1) "blobs::sha256:1a6fd470b9ce10849be79e99529a88371dff60c60aab424c077007f6979b4812"
|
// 1) "blobs::sha256:1a6fd470b9ce10849be79e99529a88371dff60c60aab424c077007f6979b4812"
|
||||||
// 2) "repository::library/hello-world::blobs::sha256:4ab4c602aa5eed5528a6620ff18a1dc4faef0e1ab3a5eddeddb410714478c67f"
|
// 2) "repository::library/hello-world::blobs::sha256:4ab4c602aa5eed5528a6620ff18a1dc4faef0e1ab3a5eddeddb410714478c67f"
|
||||||
// 3) "upload:fbd2e0a3-262d-40bb-abe4-2f43aa6f9cda:size"
|
patterns := []string{blobPrefix, repoPrefix}
|
||||||
patterns := []string{blobPrefix, repoPrefix, uploadSizePattern}
|
|
||||||
for _, pattern := range patterns {
|
for _, pattern := range patterns {
|
||||||
if err := delKeys(con, pattern); err != nil {
|
if err := delKeys(con, pattern); err != nil {
|
||||||
gc.logger.Errorf("failed to clean registry cache %v, pattern %s", err, pattern)
|
gc.logger.Errorf("failed to clean registry cache %v, pattern %s", err, pattern)
|
||||||
|
Loading…
Reference in New Issue
Block a user