We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
问题: Prometheus 首次推送数据时,日志会显示“TSDB not ready”;
原因: 数据首次被推送至 Ingester 时,TSDB 目录没创建,未进行相关初始化,第一次remote-write 写失败,第二次推送时TSDB 初始化完成,写入正常;
解决方式: A、在租户创建并与ingester 绑定完成后,内置一条模拟该租户的预写数据,发给 Router,写数据触发对应 Ingester 中TSDB 初始化; B、 通过Ingester 的 StoreAPI 实现(待详细调研实现);
严重性: 低,仅首次接入时 Prometheus 日志会显示报错,不影响功能;
The text was updated successfully, but these errors were encountered:
frezes
No branches or pull requests
问题: Prometheus 首次推送数据时,日志会显示“TSDB not ready”;
原因: 数据首次被推送至 Ingester 时,TSDB 目录没创建,未进行相关初始化,第一次remote-write 写失败,第二次推送时TSDB 初始化完成,写入正常;
解决方式:
A、在租户创建并与ingester 绑定完成后,内置一条模拟该租户的预写数据,发给 Router,写数据触发对应 Ingester 中TSDB 初始化;
B、 通过Ingester 的 StoreAPI 实现(待详细调研实现);
严重性: 低,仅首次接入时 Prometheus 日志会显示报错,不影响功能;
The text was updated successfully, but these errors were encountered: