Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将电报插件中的数据收集到 influxDB 中。数据从一开始就报告为整数,但有一天它开始报告为浮点数,现在我在日志中看到以下错误:
字段类型冲突:测量“procstat_lookup”上的输入字段“pid_count”为浮点类型,已作为整数类型存在 drop=416;丢弃点
在阅读了 github 上的一些线程后,我知道字段的类型是在分片级别完成的,因此每个分片可以有不同的类型。
我如何识别那些具有浮点类型数据的分片,以便我可以删除它们并且可以重新开始数据加载。