seaweedfs/weed/util/chunk_cache/chunk_cache.go

114 lines
2.3 KiB
Go
Raw Normal View History

2020-04-11 19:45:24 +00:00
package chunk_cache
import (
2020-04-12 04:12:41 +00:00
"sync"
2020-04-12 04:12:41 +00:00
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/storage/needle"
)
2020-04-14 04:58:10 +00:00
const (
memCacheSizeLimit = 1024 * 1024
onDiskCacheSizeLimit0 = memCacheSizeLimit
onDiskCacheSizeLimit1 = 4 * memCacheSizeLimit
2020-04-14 04:58:10 +00:00
)
// a global cache for recently accessed file chunks
type ChunkCache struct {
memCache *ChunkCacheInMemory
diskCaches []*OnDiskCacheLayer
2020-04-12 04:12:41 +00:00
sync.RWMutex
}
func NewChunkCache(maxEntries int64, dir string, diskSizeMB int64) *ChunkCache {
2020-04-12 04:12:41 +00:00
2020-04-14 04:58:10 +00:00
c := &ChunkCache{
memCache: NewChunkCacheInMemory(maxEntries),
}
c.diskCaches = make([]*OnDiskCacheLayer, 3)
c.diskCaches[0] = NewOnDiskCacheLayer(dir, "c0_1", diskSizeMB/4, 4)
c.diskCaches[1] = NewOnDiskCacheLayer(dir, "c1_4", diskSizeMB/4, 4)
c.diskCaches[2] = NewOnDiskCacheLayer(dir, "cache", diskSizeMB/2, 4)
2020-04-12 04:12:41 +00:00
return c
}
2020-04-14 04:58:10 +00:00
func (c *ChunkCache) GetChunk(fileId string, chunkSize uint64) (data []byte) {
2020-04-12 08:00:12 +00:00
if c == nil {
return
}
2020-04-12 04:12:41 +00:00
c.RLock()
defer c.RUnlock()
2020-04-14 04:58:10 +00:00
return c.doGetChunk(fileId, chunkSize)
}
2020-04-14 04:58:10 +00:00
func (c *ChunkCache) doGetChunk(fileId string, chunkSize uint64) (data []byte) {
if chunkSize < memCacheSizeLimit {
if data = c.memCache.GetChunk(fileId); data != nil {
return data
}
2020-04-12 04:12:41 +00:00
}
fid, err := needle.ParseFileIdFromString(fileId)
if err != nil {
glog.Errorf("failed to parse file id %s", fileId)
return nil
}
2020-04-14 04:58:10 +00:00
for _, diskCache := range c.diskCaches {
data := diskCache.getChunk(fid.Key)
if len(data) != 0 {
return data
}
}
return nil
2020-04-14 04:58:10 +00:00
}
func (c *ChunkCache) SetChunk(fileId string, data []byte) {
2020-04-12 08:00:12 +00:00
if c == nil {
return
}
2020-04-12 04:12:41 +00:00
c.Lock()
defer c.Unlock()
c.doSetChunk(fileId, data)
}
func (c *ChunkCache) doSetChunk(fileId string, data []byte) {
2020-04-14 04:58:10 +00:00
if len(data) < memCacheSizeLimit {
c.memCache.SetChunk(fileId, data)
2020-04-12 04:12:41 +00:00
}
fid, err := needle.ParseFileIdFromString(fileId)
if err != nil {
glog.Errorf("failed to parse file id %s", fileId)
return
}
2020-04-14 04:58:10 +00:00
if len(data) < onDiskCacheSizeLimit0 {
c.diskCaches[0].setChunk(fid.Key, data)
} else if len(data) < onDiskCacheSizeLimit1 {
c.diskCaches[1].setChunk(fid.Key, data)
} else {
c.diskCaches[2].setChunk(fid.Key, data)
}
2020-04-12 04:12:41 +00:00
}
2020-04-12 04:12:41 +00:00
func (c *ChunkCache) Shutdown() {
2020-04-12 08:00:12 +00:00
if c == nil {
return
}
2020-04-12 04:12:41 +00:00
c.Lock()
defer c.Unlock()
for _, diskCache := range c.diskCaches {
diskCache.shutdown()
}
2020-04-13 04:00:55 +00:00
}