aboutsummaryrefslogtreecommitdiff
path: root/weed
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2020-04-13 22:19:27 -0700
committerChris Lu <chris.lu@gmail.com>2020-04-13 22:19:27 -0700
commit2b5c4fbbf37e25adfa19b081c4adf5458b05b66c (patch)
tree6175ca938f6430ca78d04b0b12ce58b8a20f5886 /weed
parentf282ed444baf6676c22df1b7c35964dd73d2c04a (diff)
downloadseaweedfs-2b5c4fbbf37e25adfa19b081c4adf5458b05b66c.tar.xz
seaweedfs-2b5c4fbbf37e25adfa19b081c4adf5458b05b66c.zip
tiered caching
1/4 for small less than 1MB files. 1/4 for 1~4MB files, 1/2 for bigger than 4MB files
Diffstat (limited to 'weed')
-rw-r--r--weed/filesys/wfs.go2
-rw-r--r--weed/server/webdav_server.go2
-rw-r--r--weed/util/chunk_cache/chunk_cache.go43
-rw-r--r--weed/util/chunk_cache/chunk_cache_on_disk_test.go7
-rw-r--r--weed/util/chunk_cache/on_disk_cache_layer.go8
5 files changed, 41 insertions, 21 deletions
diff --git a/weed/filesys/wfs.go b/weed/filesys/wfs.go
index 64c5d5aa6..b3772d683 100644
--- a/weed/filesys/wfs.go
+++ b/weed/filesys/wfs.go
@@ -84,7 +84,7 @@ func NewSeaweedFileSystem(option *Option) *WFS {
},
}
if option.CacheSizeMB > 0 {
- wfs.chunkCache = chunk_cache.NewChunkCache(256, option.CacheDir, option.CacheSizeMB, 4)
+ wfs.chunkCache = chunk_cache.NewChunkCache(256, option.CacheDir, option.CacheSizeMB)
util.OnInterrupt(func() {
wfs.chunkCache.Shutdown()
})
diff --git a/weed/server/webdav_server.go b/weed/server/webdav_server.go
index affc953bc..445cc7b4d 100644
--- a/weed/server/webdav_server.go
+++ b/weed/server/webdav_server.go
@@ -99,7 +99,7 @@ type WebDavFile struct {
func NewWebDavFileSystem(option *WebDavOption) (webdav.FileSystem, error) {
- chunkCache := chunk_cache.NewChunkCache(256, option.CacheDir, option.CacheSizeMB, 4)
+ chunkCache := chunk_cache.NewChunkCache(256, option.CacheDir, option.CacheSizeMB)
util.OnInterrupt(func() {
chunkCache.Shutdown()
})
diff --git a/weed/util/chunk_cache/chunk_cache.go b/weed/util/chunk_cache/chunk_cache.go
index 232e57a55..e1d4b639f 100644
--- a/weed/util/chunk_cache/chunk_cache.go
+++ b/weed/util/chunk_cache/chunk_cache.go
@@ -8,27 +8,27 @@ import (
)
const (
- memCacheSizeLimit = 1024 * 1024
+ memCacheSizeLimit = 1024 * 1024
+ onDiskCacheSizeLimit0 = memCacheSizeLimit
+ onDiskCacheSizeLimit1 = 4 * memCacheSizeLimit
)
// a global cache for recently accessed file chunks
type ChunkCache struct {
- memCache *ChunkCacheInMemory
- diskCache *OnDiskCacheLayer
+ memCache *ChunkCacheInMemory
+ diskCaches []*OnDiskCacheLayer
sync.RWMutex
}
-func NewChunkCache(maxEntries int64, dir string, diskSizeMB int64, segmentCount int) *ChunkCache {
-
- volumeCount, volumeSize := int(diskSizeMB/30000), int64(30000)
- if volumeCount < segmentCount {
- volumeCount, volumeSize = segmentCount, diskSizeMB/int64(segmentCount)
- }
+func NewChunkCache(maxEntries int64, dir string, diskSizeMB int64) *ChunkCache {
c := &ChunkCache{
- memCache: NewChunkCacheInMemory(maxEntries),
- diskCache: NewOnDiskCacheLayer(dir, "cache", volumeCount, volumeSize),
+ 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)
return c
}
@@ -58,7 +58,14 @@ func (c *ChunkCache) doGetChunk(fileId string, chunkSize uint64) (data []byte) {
return nil
}
- return c.diskCache.getChunk(fid.Key)
+ for _, diskCache := range c.diskCaches {
+ data := diskCache.getChunk(fid.Key)
+ if len(data) != 0 {
+ return data
+ }
+ }
+
+ return nil
}
@@ -84,7 +91,13 @@ func (c *ChunkCache) doSetChunk(fileId string, data []byte) {
return
}
- c.diskCache.setChunk(fid.Key, data)
+ 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)
+ }
}
@@ -94,5 +107,7 @@ func (c *ChunkCache) Shutdown() {
}
c.Lock()
defer c.Unlock()
- c.diskCache.shutdown()
+ for _, diskCache := range c.diskCaches {
+ diskCache.shutdown()
+ }
}
diff --git a/weed/util/chunk_cache/chunk_cache_on_disk_test.go b/weed/util/chunk_cache/chunk_cache_on_disk_test.go
index 63bcba2be..f061f2ba2 100644
--- a/weed/util/chunk_cache/chunk_cache_on_disk_test.go
+++ b/weed/util/chunk_cache/chunk_cache_on_disk_test.go
@@ -14,10 +14,9 @@ func TestOnDisk(t *testing.T) {
tmpDir, _ := ioutil.TempDir("", "c")
defer os.RemoveAll(tmpDir)
- totalDiskSizeMb := int64(6)
- segmentCount := 2
+ totalDiskSizeMb := int64(32)
- cache := NewChunkCache(0, tmpDir, totalDiskSizeMb, segmentCount)
+ cache := NewChunkCache(0, tmpDir, totalDiskSizeMb)
writeCount := 5
type test_data struct {
@@ -46,7 +45,7 @@ func TestOnDisk(t *testing.T) {
cache.Shutdown()
- cache = NewChunkCache(0, tmpDir, totalDiskSizeMb, segmentCount)
+ cache = NewChunkCache(0, tmpDir, totalDiskSizeMb)
for i := 0; i < writeCount; i++ {
data := cache.GetChunk(testData[i].fileId, testData[i].size)
diff --git a/weed/util/chunk_cache/on_disk_cache_layer.go b/weed/util/chunk_cache/on_disk_cache_layer.go
index 065188ac3..9bd9c2b44 100644
--- a/weed/util/chunk_cache/on_disk_cache_layer.go
+++ b/weed/util/chunk_cache/on_disk_cache_layer.go
@@ -14,7 +14,13 @@ type OnDiskCacheLayer struct {
diskCaches []*ChunkCacheVolume
}
-func NewOnDiskCacheLayer(dir, namePrefix string, volumeCount int, volumeSize int64) *OnDiskCacheLayer{
+func NewOnDiskCacheLayer(dir, namePrefix string, diskSizeMB int64, segmentCount int) *OnDiskCacheLayer{
+
+ volumeCount, volumeSize := int(diskSizeMB/30000), int64(30000)
+ if volumeCount < segmentCount {
+ volumeCount, volumeSize = segmentCount, diskSizeMB/int64(segmentCount)
+ }
+
c := &OnDiskCacheLayer{}
for i := 0; i < volumeCount; i++ {
fileName := path.Join(dir, fmt.Sprintf("%s_%d", namePrefix, i))