缓存驱逐
自动驱逐
策略
驱逐对象
# 使用 LFU 替代默认的 LRU
alluxio.worker.page.store.evictor.type=LFU异步驱逐
alluxio.worker.page.store.async.eviction.enabled=true
# 缓存使用率超过此阈值时开始驱逐(默认:0.9)
alluxio.worker.page.store.async.eviction.high.watermark=0.85
# 缓存使用率降至此阈值时停止驱逐(默认:0.8)
alluxio.worker.page.store.async.eviction.low.watermark=0.75
# 检查缓存使用情况的间隔(默认:1min)
alluxio.worker.page.store.async.eviction.check.interval=30s手动驱逐:free 作业
提交与监控
停止正在运行的 Free 作业
版本更新模式
过时缓存清理
触发过时清理
Last updated