2020-04-11 19:45:24 +00:00
|
|
|
package chunk_cache
|
2020-03-28 20:43:31 +00:00
|
|
|
|
|
|
|
import (
|
2020-04-12 04:12:41 +00:00
|
|
|
"sync"
|
2020-03-28 20:43:31 +00:00
|
|
|
|
2020-04-12 04:12:41 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage/needle"
|
2020-03-28 20:43:31 +00:00
|
|
|
)
|
|
|
|
|
2020-04-14 04:58:10 +00:00
|
|
|
const (
|
2020-04-14 05:19:27 +00:00
|
|
|
memCacheSizeLimit = 1024 * 1024
|
|
|
|
onDiskCacheSizeLimit0 = memCacheSizeLimit
|
|
|
|
onDiskCacheSizeLimit1 = 4 * memCacheSizeLimit
|
2020-04-14 04:58:10 +00:00
|
|
|
)
|
|
|
|
|
2020-03-28 20:43:31 +00:00
|
|
|
// a global cache for recently accessed file chunks
|
|
|
|
type ChunkCache struct {
|
2020-04-14 05:19:27 +00:00
|
|
|
memCache *ChunkCacheInMemory
|
|
|
|
diskCaches []*OnDiskCacheLayer
|
2020-04-12 04:12:41 +00:00
|
|
|
sync.RWMutex
|
2020-03-28 20:43:31 +00:00
|
|
|
}
|
|
|
|
|
2020-04-14 05:19:27 +00:00
|
|
|
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{
|
2020-04-14 05:19:27 +00:00
|
|
|
memCache: NewChunkCacheInMemory(maxEntries),
|
2020-03-28 20:43:31 +00:00
|
|
|
}
|
2020-04-14 05:19:27 +00:00
|
|
|
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-03-28 20:43:31 +00:00
|
|
|
}
|
|
|
|
|
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-12 08:06:50 +00:00
|
|
|
}
|
|
|
|
|
2020-04-14 04:58:10 +00:00
|
|
|
func (c *ChunkCache) doGetChunk(fileId string, chunkSize uint64) (data []byte) {
|
|
|
|
|
2020-06-27 19:51:04 +00:00
|
|
|
if chunkSize < memCacheSizeLimit {
|
|
|
|
data = c.memCache.GetChunk(fileId)
|
|
|
|
if len(data) >= int(chunkSize) {
|
|
|
|
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)
|
2020-03-28 20:43:31 +00:00
|
|
|
return nil
|
|
|
|
}
|
2020-04-14 04:58:10 +00:00
|
|
|
|
2020-06-27 19:51:04 +00:00
|
|
|
if chunkSize < onDiskCacheSizeLimit0 {
|
|
|
|
data = c.diskCaches[0].getChunk(fid.Key)
|
|
|
|
if len(data) >= int(chunkSize) {
|
|
|
|
return data
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if chunkSize < onDiskCacheSizeLimit1 {
|
|
|
|
data = c.diskCaches[1].getChunk(fid.Key)
|
|
|
|
if len(data) >= int(chunkSize) {
|
|
|
|
return data
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
|
|
data = c.diskCaches[2].getChunk(fid.Key)
|
|
|
|
if len(data) >= int(chunkSize) {
|
2020-04-14 05:19:27 +00:00
|
|
|
return data
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2020-04-14 04:58:10 +00:00
|
|
|
|
2020-03-28 20:43:31 +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()
|
|
|
|
|
2020-06-26 17:01:55 +00:00
|
|
|
glog.V(4).Infof("SetChunk %s size %d\n", fileId, len(data))
|
|
|
|
|
2020-04-12 10:34:36 +00:00
|
|
|
c.doSetChunk(fileId, data)
|
2020-04-12 08:06:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
2020-04-14 05:19:27 +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-03-28 20:43:31 +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()
|
2020-04-14 05:19:27 +00:00
|
|
|
for _, diskCache := range c.diskCaches {
|
|
|
|
diskCache.shutdown()
|
|
|
|
}
|
2020-04-13 04:00:55 +00:00
|
|
|
}
|