mirror of https://github.com/minio/minio.git
Adding expiration
This commit is contained in:
parent
2ab8988a41
commit
5cc9418ca7
|
@ -62,7 +62,7 @@ var _ = Suite(&MySuite{
|
|||
|
||||
var _ = Suite(&MySuite{
|
||||
initDriver: func() (drivers.Driver, string) {
|
||||
_, _, driver := memory.Start(1000)
|
||||
_, _, driver := memory.Start(1000, 3*time.Hour)
|
||||
return driver, ""
|
||||
},
|
||||
})
|
||||
|
|
|
@ -27,6 +27,7 @@ import (
|
|||
"github.com/minio-io/minio/pkg/storage/drivers/memory"
|
||||
"github.com/minio-io/minio/pkg/utils/log"
|
||||
"reflect"
|
||||
"time"
|
||||
)
|
||||
|
||||
// MemoryFactory is used to build memory api servers
|
||||
|
@ -38,7 +39,7 @@ type MemoryFactory struct {
|
|||
// GetStartServerFunc builds memory api servers
|
||||
func (f MemoryFactory) GetStartServerFunc() StartServerFunc {
|
||||
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)
|
||||
return ctrl, status
|
||||
}
|
||||
|
|
|
@ -48,6 +48,8 @@ type memoryDriver struct {
|
|||
lock *sync.RWMutex
|
||||
totalSize uint64
|
||||
maxSize uint64
|
||||
expiration time.Duration
|
||||
shutdown bool
|
||||
}
|
||||
|
||||
type storedBucket struct {
|
||||
|
@ -65,7 +67,7 @@ const (
|
|||
)
|
||||
|
||||
// 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)
|
||||
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.objects = lru.New(0)
|
||||
memory.lock = new(sync.RWMutex)
|
||||
memory.expiration = expiration
|
||||
memory.shutdown = false
|
||||
|
||||
switch {
|
||||
case maxSize == 0:
|
||||
|
@ -87,6 +91,9 @@ func Start(maxSize uint64) (chan<- string, <-chan error, drivers.Driver) {
|
|||
|
||||
memory.objects.OnEvicted = memory.evictObject
|
||||
|
||||
// set up memory expiration
|
||||
go memory.expireObjects()
|
||||
|
||||
go start(ctrlChannel, errorChannel)
|
||||
return ctrlChannel, errorChannel, memory
|
||||
}
|
||||
|
@ -470,3 +477,41 @@ func (memory *memoryDriver) evictObject(key lru.Key, value interface{}) {
|
|||
log.Println("evicting:", 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/minio/pkg/storage/drivers"
|
||||
"time"
|
||||
)
|
||||
|
||||
func Test(t *testing.T) { TestingT(t) }
|
||||
|
@ -31,7 +32,7 @@ var _ = Suite(&MySuite{})
|
|||
|
||||
func (s *MySuite) TestAPISuite(c *C) {
|
||||
create := func() drivers.Driver {
|
||||
_, _, store := Start(1000)
|
||||
_, _, store := Start(1000, 3*time.Hour)
|
||||
return store
|
||||
}
|
||||
drivers.APITestSuite(c, create)
|
||||
|
|
Loading…
Reference in New Issue