Files
seaweedfs/weed/util/chunk_cache/chunk_cache.go

134 lines
3.1 KiB
Go
Raw Normal View History

2020-04-11 12:45:24 -07:00
package chunk_cache
import (
2020-04-11 21:12:41 -07:00
"sync"
2020-04-11 21:12:41 -07:00
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/storage/needle"
)
2020-08-17 20:20:08 -07:00
type ChunkCache interface {
GetChunk(fileId string, minSize uint64) (data []byte)
SetChunk(fileId string, data []byte)
}
// a global cache for recently accessed file chunks
2020-08-17 20:15:53 -07:00
type TieredChunkCache struct {
memCache *ChunkCacheInMemory
diskCaches []*OnDiskCacheLayer
2020-04-11 21:12:41 -07:00
sync.RWMutex
2020-09-27 10:41:29 -07:00
onDiskCacheSizeLimit0 uint64
onDiskCacheSizeLimit1 uint64
2020-09-27 11:58:48 -07:00
onDiskCacheSizeLimit2 uint64
}
2020-09-27 10:41:29 -07:00
func NewTieredChunkCache(maxEntries int64, dir string, diskSizeInUnit int64, unitSize int64) *TieredChunkCache {
2020-04-11 21:12:41 -07:00
2020-08-17 20:15:53 -07:00
c := &TieredChunkCache{
memCache: NewChunkCacheInMemory(maxEntries),
}
c.diskCaches = make([]*OnDiskCacheLayer, 3)
2020-09-27 10:41:29 -07:00
c.onDiskCacheSizeLimit0 = uint64(unitSize)
c.onDiskCacheSizeLimit1 = 4 * c.onDiskCacheSizeLimit0
2020-09-27 11:58:48 -07:00
c.onDiskCacheSizeLimit2 = 2 * c.onDiskCacheSizeLimit1
2020-09-27 11:42:51 -07:00
c.diskCaches[0] = NewOnDiskCacheLayer(dir, "c0_2", diskSizeInUnit*unitSize/8, 2)
c.diskCaches[1] = NewOnDiskCacheLayer(dir, "c1_3", diskSizeInUnit*unitSize/4+diskSizeInUnit*unitSize/8, 3)
c.diskCaches[2] = NewOnDiskCacheLayer(dir, "c2_2", diskSizeInUnit*unitSize/2, 2)
2020-04-11 21:12:41 -07:00
return c
}
2020-08-17 20:15:53 -07:00
func (c *TieredChunkCache) GetChunk(fileId string, minSize uint64) (data []byte) {
2020-04-12 01:00:12 -07:00
if c == nil {
return
}
2020-04-11 21:12:41 -07:00
c.RLock()
defer c.RUnlock()
2020-08-17 16:05:13 -07:00
return c.doGetChunk(fileId, minSize)
}
2020-08-17 20:15:53 -07:00
func (c *TieredChunkCache) doGetChunk(fileId string, minSize uint64) (data []byte) {
2020-04-13 21:58:10 -07:00
2020-09-27 11:42:51 -07:00
if minSize <= c.onDiskCacheSizeLimit0 {
data = c.memCache.GetChunk(fileId)
2020-08-17 16:05:13 -07:00
if len(data) >= int(minSize) {
return data
}
2020-04-11 21:12:41 -07:00
}
fid, err := needle.ParseFileIdFromString(fileId)
if err != nil {
glog.Errorf("failed to parse file id %s", fileId)
return nil
}
2020-04-13 21:58:10 -07:00
2020-09-27 11:42:51 -07:00
if minSize <= c.onDiskCacheSizeLimit0 {
data = c.diskCaches[0].getChunk(fid.Key)
2020-08-17 16:05:13 -07:00
if len(data) >= int(minSize) {
return data
}
}
2020-09-27 11:42:51 -07:00
if minSize <= c.onDiskCacheSizeLimit1 {
data = c.diskCaches[1].getChunk(fid.Key)
2020-08-17 16:05:13 -07:00
if len(data) >= int(minSize) {
return data
}
}
2020-09-27 11:58:48 -07:00
if minSize <= c.onDiskCacheSizeLimit2 {
data = c.diskCaches[2].getChunk(fid.Key)
2020-08-17 16:05:13 -07:00
if len(data) >= int(minSize) {
return data
}
}
return nil
2020-04-13 21:58:10 -07:00
}
2020-08-17 20:15:53 -07:00
func (c *TieredChunkCache) SetChunk(fileId string, data []byte) {
2020-04-12 01:00:12 -07:00
if c == nil {
return
}
2020-04-11 21:12:41 -07:00
c.Lock()
defer c.Unlock()
2020-08-30 20:12:04 -07:00
glog.V(4).Infof("SetChunk %s size %d\n", fileId, len(data))
2020-06-26 10:01:55 -07:00
c.doSetChunk(fileId, data)
}
2020-08-17 20:15:53 -07:00
func (c *TieredChunkCache) doSetChunk(fileId string, data []byte) {
2020-09-27 11:42:51 -07:00
if len(data) <= int(c.onDiskCacheSizeLimit0) {
2020-04-13 21:58:10 -07:00
c.memCache.SetChunk(fileId, data)
2020-04-11 21:12:41 -07:00
}
fid, err := needle.ParseFileIdFromString(fileId)
if err != nil {
glog.Errorf("failed to parse file id %s", fileId)
return
}
2020-04-13 21:58:10 -07:00
2020-09-27 11:42:51 -07:00
if len(data) <= int(c.onDiskCacheSizeLimit0) {
c.diskCaches[0].setChunk(fid.Key, data)
2020-09-27 11:42:51 -07:00
} else if len(data) <= int(c.onDiskCacheSizeLimit1) {
c.diskCaches[1].setChunk(fid.Key, data)
2020-09-27 11:58:48 -07:00
} else if len(data) <= int(c.onDiskCacheSizeLimit2) {
c.diskCaches[2].setChunk(fid.Key, data)
}
2020-04-11 21:12:41 -07:00
}
2020-04-11 21:12:41 -07:00
2020-08-17 20:15:53 -07:00
func (c *TieredChunkCache) Shutdown() {
2020-04-12 01:00:12 -07:00
if c == nil {
return
}
2020-04-11 21:12:41 -07:00
c.Lock()
defer c.Unlock()
for _, diskCache := range c.diskCaches {
diskCache.shutdown()
}
2020-04-12 21:00:55 -07:00
}