s3 优化缓存逻辑,添加缓存自清理逻辑
This commit is contained in:
parent
509b829c5b
commit
5dfe6d6356
@ -19,10 +19,11 @@ import (
|
|||||||
"go.opentelemetry.io/otel/codes"
|
"go.opentelemetry.io/otel/codes"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var s3Cache sync.Map
|
||||||
|
|
||||||
type S3Adapter struct {
|
type S3Adapter struct {
|
||||||
StorageConfig config.StorageConfig
|
StorageConfig config.StorageConfig
|
||||||
s3Client *s3.Client
|
s3Client *s3.Client
|
||||||
cache sync.Map
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *S3Adapter) getClient() (*s3.Client, error) {
|
func (s *S3Adapter) getClient() (*s3.Client, error) {
|
||||||
@ -53,39 +54,43 @@ func (s *S3Adapter) GetFileList(ctx context.Context, dirPath string, relDt time.
|
|||||||
|
|
||||||
span.SetAttributes(attribute.String("path", dirPath))
|
span.SetAttributes(attribute.String("path", dirPath))
|
||||||
span.SetAttributes(attribute.String("relativeDate", relDt.Format("2006-01-02")))
|
span.SetAttributes(attribute.String("relativeDate", relDt.Format("2006-01-02")))
|
||||||
|
if s.StorageConfig.S3.Bucket == "" {
|
||||||
|
span.SetAttributes(attribute.String("error", "未配置S3存储桶"))
|
||||||
|
span.SetStatus(codes.Error, "未配置S3存储桶")
|
||||||
|
return nil, fmt.Errorf("未配置S3存储桶")
|
||||||
|
}
|
||||||
|
|
||||||
cacheKey := fmt.Sprintf("%s_%s", dirPath, relDt.Format("2006-01-02"))
|
cacheKey := fmt.Sprintf("%s_%s", dirPath, relDt.Format("2006-01-02"))
|
||||||
if cachedInterface, ok := s.cache.Load(cacheKey); ok {
|
if cachedInterface, ok := s3Cache.Load(cacheKey); ok {
|
||||||
cachedItem := cachedInterface.(cacheItem)
|
cachedItem := cachedInterface.(cacheItem)
|
||||||
|
log.Println("缓存过期时间", cachedItem.expires.Sub(time.Now()))
|
||||||
if time.Now().Before(cachedItem.expires) {
|
if time.Now().Before(cachedItem.expires) {
|
||||||
|
log.Println("获取已缓存列表", cacheKey)
|
||||||
span.SetAttributes(attribute.Bool("cache.hit", true))
|
span.SetAttributes(attribute.Bool("cache.hit", true))
|
||||||
return cachedItem.data, nil
|
return cachedItem.data, nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mutexKey := fmt.Sprintf("lock_%s", cacheKey)
|
mutexKey := fmt.Sprintf("lock_%s", cacheKey)
|
||||||
mutex, _ := s.cache.LoadOrStore(mutexKey, &sync.Mutex{})
|
mutex, _ := s3Cache.LoadOrStore(mutexKey, &sync.Mutex{})
|
||||||
lock := mutex.(*sync.Mutex)
|
lock := mutex.(*sync.Mutex)
|
||||||
defer func() {
|
defer func() {
|
||||||
// 解锁后删除锁(避免内存泄漏)
|
// 解锁后删除锁(避免内存泄漏)
|
||||||
s.cache.Delete(mutexKey)
|
s3Cache.Delete(mutexKey)
|
||||||
lock.Unlock()
|
lock.Unlock()
|
||||||
}()
|
}()
|
||||||
lock.Lock()
|
lock.Lock()
|
||||||
|
|
||||||
if cachedInterface, ok := s.cache.Load(cacheKey); ok {
|
if cachedInterface, ok := s3Cache.Load(cacheKey); ok {
|
||||||
cachedItem := cachedInterface.(cacheItem)
|
cachedItem := cachedInterface.(cacheItem)
|
||||||
|
log.Println("缓存过期时间", cachedItem.expires.Sub(time.Now()))
|
||||||
if time.Now().Before(cachedItem.expires) {
|
if time.Now().Before(cachedItem.expires) {
|
||||||
span.SetAttributes(attribute.Bool("cache.hit", true))
|
log.Println("过锁后获取已缓存列表", cacheKey)
|
||||||
|
span.SetAttributes(attribute.Bool("s3Cache.hit", true))
|
||||||
return cachedItem.data, nil
|
return cachedItem.data, nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if s.StorageConfig.S3.Bucket == "" {
|
|
||||||
span.SetAttributes(attribute.String("error", "未配置S3存储桶"))
|
|
||||||
span.SetStatus(codes.Error, "未配置S3存储桶")
|
|
||||||
return nil, fmt.Errorf("未配置S3存储桶")
|
|
||||||
}
|
|
||||||
|
|
||||||
listObjectsInput := &s3.ListObjectsV2Input{
|
listObjectsInput := &s3.ListObjectsV2Input{
|
||||||
Bucket: aws.String(s.StorageConfig.S3.Bucket),
|
Bucket: aws.String(s.StorageConfig.S3.Bucket),
|
||||||
Prefix: aws.String(path.Join(s.StorageConfig.S3.Prefix, dirPath)),
|
Prefix: aws.String(path.Join(s.StorageConfig.S3.Prefix, dirPath)),
|
||||||
@ -168,7 +173,8 @@ func (s *S3Adapter) GetFileList(ctx context.Context, dirPath string, relDt time.
|
|||||||
data: fileList,
|
data: fileList,
|
||||||
expires: time.Now().Add(10 * time.Second),
|
expires: time.Now().Add(10 * time.Second),
|
||||||
}
|
}
|
||||||
s.cache.Store(cacheKey, cacheItem)
|
s3Cache.Store(cacheKey, cacheItem)
|
||||||
|
log.Println("缓存文件列表", cacheKey)
|
||||||
|
|
||||||
return fileList, nil
|
return fileList, nil
|
||||||
}
|
}
|
||||||
@ -177,3 +183,32 @@ type cacheItem struct {
|
|||||||
data []dto.File
|
data []dto.File
|
||||||
expires time.Time
|
expires time.Time
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 添加定时清理缓存的初始化函数
|
||||||
|
func init() {
|
||||||
|
go func() {
|
||||||
|
ticker := time.NewTicker(1 * time.Minute)
|
||||||
|
defer ticker.Stop()
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case <-ticker.C:
|
||||||
|
cleanupCache()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
}
|
||||||
|
|
||||||
|
// 添加缓存清理函数
|
||||||
|
func cleanupCache() {
|
||||||
|
var keysToDelete []interface{}
|
||||||
|
s3Cache.Range(func(key, value interface{}) bool {
|
||||||
|
item := value.(cacheItem)
|
||||||
|
if time.Now().After(item.expires) {
|
||||||
|
keysToDelete = append(keysToDelete, key)
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
})
|
||||||
|
for _, key := range keysToDelete {
|
||||||
|
s3Cache.Delete(key)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user