2021-01-05 09:47:59 +00:00
|
|
|
//+build rocksdb
|
|
|
|
|
|
|
|
package rocksdb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
2021-10-01 03:16:03 +00:00
|
|
|
gorocksdb "github.com/linxGnu/grocksdb"
|
2021-01-05 09:47:59 +00:00
|
|
|
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer"
|
|
|
|
)
|
|
|
|
|
|
|
|
type TTLFilter struct {
|
|
|
|
skipLevel0 bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewTTLFilter() gorocksdb.CompactionFilter {
|
|
|
|
return &TTLFilter{
|
|
|
|
skipLevel0: true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *TTLFilter) Filter(level int, key, val []byte) (remove bool, newVal []byte) {
|
|
|
|
// decode could be slow, causing write stall
|
|
|
|
// level >0 sst can run compaction in parallel
|
2021-01-06 09:42:43 +00:00
|
|
|
if !t.skipLevel0 || level > 0 {
|
|
|
|
entry := filer.Entry{}
|
|
|
|
if err := entry.DecodeAttributesAndChunks(val); err == nil {
|
|
|
|
if entry.TtlSec > 0 &&
|
|
|
|
entry.Crtime.Add(time.Duration(entry.TtlSec)*time.Second).Before(time.Now()) {
|
|
|
|
return true, nil
|
|
|
|
}
|
2021-01-05 09:47:59 +00:00
|
|
|
}
|
|
|
|
}
|
2021-01-06 09:42:43 +00:00
|
|
|
return false, val
|
2021-01-05 09:47:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *TTLFilter) Name() string {
|
|
|
|
return "TTLFilter"
|
|
|
|
}
|
2021-10-01 03:16:03 +00:00
|
|
|
func (t *TTLFilter) SetIgnoreSnapshots(value bool) {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *TTLFilter) Destroy() {
|
|
|
|
}
|