表管理器不清除loki 2.4中的chunk



我想删除31天以上的区块数据,所以我做了这样的配置

schema_config:
configs:
- from: 2020-10-24
store: boltdb-shipper
object_store: filesystem
schema: v11
index:
prefix: index_
period: 24h
storage_config:
boltdb_shipper:
active_index_directory: "/var/lib/loki/boltdb-shipper-active"
cache_location: "/var/lib/loki/boltdb-shipper-cache"
cache_ttl: 24h 
shared_store: filesystem
filesystem:
directory: /var/lib/loki/chunks
chunk_store_config:
max_look_back_period: 0s
table_manager:
retention_deletes_enabled: true
retention_period: 31d

但实际上删除从未发生过。

我是不是忘了配置中的什么?

loki版本:2.4.1

Grafana Loki中的保留是通过表管理器压实机实现的。在您的案例中,boltdb发货人用于索引和块。在本地存储方面,表管理器不是一个很好的选择。

压实机保留将成为默认设置,并得到长期支持。它支持针对每个租户和每个流的用例的更细粒度的保留策略。

请在这里查看指南

compactor:
retention_enabled: true
retention_delete_delay: 2h <amount of hours to delay the retention period>
retention_delete_worker_count: 150
limits_config:
retention_period: [30d]

我不确定这是你的情况,但从Loki 2.4.0开始,单个二进制文件不再运行表管理器,这会影响以下场景中的任何人:

  1. 使用除boltdb发货人或boltdb之外的任何索引类型运行单个二进制Loki
  2. 依靠配置retention_deletes_enabled和retention\period的保留

请参阅Loki升级指南中的更多信息以及如何解决此问题。

我在使用Loki版本2.4.1时遇到了同样的问题。压缩程序没有删除/data/loki/cochunks目录中的chunks。尝试了我在互联网上能找到的所有配置变量,结果发现问题是这个版本的Loki中的一些错误。升级到2.5.0解决了我的问题,现在我看到块正在被删除,在达到保留期后,卷不再增长。

相关内容

  • 没有找到相关文章

最新更新