mirror of
https://github.com/minio/minio.git
synced 2025-02-04 10:26:01 -05:00
Merge pull request #532 from fkautz/pr_out_adding_expiration
This commit is contained in:
commit
8689ec9a54
@ -62,7 +62,7 @@ var _ = Suite(&MySuite{
|
|||||||
|
|
||||||
var _ = Suite(&MySuite{
|
var _ = Suite(&MySuite{
|
||||||
initDriver: func() (drivers.Driver, string) {
|
initDriver: func() (drivers.Driver, string) {
|
||||||
_, _, driver := memory.Start(1000)
|
_, _, driver := memory.Start(1000, 3*time.Hour)
|
||||||
return driver, ""
|
return driver, ""
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
@ -27,6 +27,7 @@ import (
|
|||||||
"github.com/minio-io/minio/pkg/storage/drivers/memory"
|
"github.com/minio-io/minio/pkg/storage/drivers/memory"
|
||||||
"github.com/minio-io/minio/pkg/utils/log"
|
"github.com/minio-io/minio/pkg/utils/log"
|
||||||
"reflect"
|
"reflect"
|
||||||
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
// MemoryFactory is used to build memory api servers
|
// MemoryFactory is used to build memory api servers
|
||||||
@ -38,7 +39,7 @@ type MemoryFactory struct {
|
|||||||
// GetStartServerFunc builds memory api servers
|
// GetStartServerFunc builds memory api servers
|
||||||
func (f MemoryFactory) GetStartServerFunc() StartServerFunc {
|
func (f MemoryFactory) GetStartServerFunc() StartServerFunc {
|
||||||
return func() (chan<- string, <-chan error) {
|
return func() (chan<- string, <-chan error) {
|
||||||
_, _, driver := memory.Start(f.MaxMemory)
|
_, _, driver := memory.Start(f.MaxMemory, 3*time.Hour)
|
||||||
ctrl, status, _ := httpserver.Start(api.HTTPHandler(f.Domain, driver), f.Config)
|
ctrl, status, _ := httpserver.Start(api.HTTPHandler(f.Domain, driver), f.Config)
|
||||||
return ctrl, status
|
return ctrl, status
|
||||||
}
|
}
|
||||||
|
@ -48,6 +48,8 @@ type memoryDriver struct {
|
|||||||
lock *sync.RWMutex
|
lock *sync.RWMutex
|
||||||
totalSize uint64
|
totalSize uint64
|
||||||
maxSize uint64
|
maxSize uint64
|
||||||
|
expiration time.Duration
|
||||||
|
shutdown bool
|
||||||
}
|
}
|
||||||
|
|
||||||
type storedBucket struct {
|
type storedBucket struct {
|
||||||
@ -65,7 +67,7 @@ const (
|
|||||||
)
|
)
|
||||||
|
|
||||||
// Start memory object server
|
// Start memory object server
|
||||||
func Start(maxSize uint64) (chan<- string, <-chan error, drivers.Driver) {
|
func Start(maxSize uint64, expiration time.Duration) (chan<- string, <-chan error, drivers.Driver) {
|
||||||
ctrlChannel := make(chan string)
|
ctrlChannel := make(chan string)
|
||||||
errorChannel := make(chan error)
|
errorChannel := make(chan error)
|
||||||
|
|
||||||
@ -75,6 +77,8 @@ func Start(maxSize uint64) (chan<- string, <-chan error, drivers.Driver) {
|
|||||||
memory.objectMetadata = make(map[string]storedObject)
|
memory.objectMetadata = make(map[string]storedObject)
|
||||||
memory.objects = lru.New(0)
|
memory.objects = lru.New(0)
|
||||||
memory.lock = new(sync.RWMutex)
|
memory.lock = new(sync.RWMutex)
|
||||||
|
memory.expiration = expiration
|
||||||
|
memory.shutdown = false
|
||||||
|
|
||||||
switch {
|
switch {
|
||||||
case maxSize == 0:
|
case maxSize == 0:
|
||||||
@ -87,6 +91,9 @@ func Start(maxSize uint64) (chan<- string, <-chan error, drivers.Driver) {
|
|||||||
|
|
||||||
memory.objects.OnEvicted = memory.evictObject
|
memory.objects.OnEvicted = memory.evictObject
|
||||||
|
|
||||||
|
// set up memory expiration
|
||||||
|
go memory.expireObjects()
|
||||||
|
|
||||||
go start(ctrlChannel, errorChannel)
|
go start(ctrlChannel, errorChannel)
|
||||||
return ctrlChannel, errorChannel, memory
|
return ctrlChannel, errorChannel, memory
|
||||||
}
|
}
|
||||||
@ -470,3 +477,41 @@ func (memory *memoryDriver) evictObject(key lru.Key, value interface{}) {
|
|||||||
log.Println("evicting:", k)
|
log.Println("evicting:", k)
|
||||||
delete(memory.objectMetadata, k)
|
delete(memory.objectMetadata, k)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (memory *memoryDriver) expireObjects() {
|
||||||
|
for {
|
||||||
|
if memory.shutdown {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
var keysToRemove []string
|
||||||
|
memory.lock.RLock()
|
||||||
|
var earliest time.Time
|
||||||
|
empty := true
|
||||||
|
for key, object := range memory.objectMetadata {
|
||||||
|
if empty {
|
||||||
|
empty = false
|
||||||
|
}
|
||||||
|
if time.Now().Add(-memory.expiration).After(object.metadata.Created) {
|
||||||
|
keysToRemove = append(keysToRemove, key)
|
||||||
|
} else {
|
||||||
|
if object.metadata.Created.Before(earliest) {
|
||||||
|
earliest = object.metadata.Created
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
memory.lock.RUnlock()
|
||||||
|
memory.lock.Lock()
|
||||||
|
for _, key := range keysToRemove {
|
||||||
|
memory.objects.Remove(key)
|
||||||
|
}
|
||||||
|
memory.lock.Unlock()
|
||||||
|
if empty {
|
||||||
|
time.Sleep(memory.expiration)
|
||||||
|
} else {
|
||||||
|
sleepFor := earliest.Sub(time.Now())
|
||||||
|
if sleepFor > 0 {
|
||||||
|
time.Sleep(sleepFor)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -21,6 +21,7 @@ import (
|
|||||||
|
|
||||||
. "github.com/minio-io/check"
|
. "github.com/minio-io/check"
|
||||||
"github.com/minio-io/minio/pkg/storage/drivers"
|
"github.com/minio-io/minio/pkg/storage/drivers"
|
||||||
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Test(t *testing.T) { TestingT(t) }
|
func Test(t *testing.T) { TestingT(t) }
|
||||||
@ -31,7 +32,7 @@ var _ = Suite(&MySuite{})
|
|||||||
|
|
||||||
func (s *MySuite) TestAPISuite(c *C) {
|
func (s *MySuite) TestAPISuite(c *C) {
|
||||||
create := func() drivers.Driver {
|
create := func() drivers.Driver {
|
||||||
_, _, store := Start(1000)
|
_, _, store := Start(1000, 3*time.Hour)
|
||||||
return store
|
return store
|
||||||
}
|
}
|
||||||
drivers.APITestSuite(c, create)
|
drivers.APITestSuite(c, create)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user