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
Please answer these questions before submitting your issue. Thanks!
They both called getFsStats(). And but get the different result. I think the problem in pd.rs handle_store_heartbeat:
getFsStats()
handle_store_heartbeat
let capacity = store_stats.fs_stats.capacity_size; let available = store_stats.fs_stats.avail_size; stats.set_used_size(store_stats.fs_stats.used_size); stats.set_capacity(capacity); let used_size = self.snap_mgr.get_total_snap_size().unwrap() + store_info .kv_engine .get_engine_used_size() .expect("kv engine used size") + store_info .raft_engine .get_engine_size() .expect("raft engine used size"); stats.set_used_size(used_size);
The below set_used_size replace the origin one.
The text was updated successfully, but these errors were encountered:
update TiFlash proxy (#4907)
1c08068
close #4906
CalvinNeo
Successfully merging a pull request may close this issue.
Bug Report
Please answer these questions before submitting your issue. Thanks!
1. Minimal reproduce step (Required)
They both called
getFsStats()
. And but get the different result.I think the problem in pd.rs
handle_store_heartbeat
:The below set_used_size replace the origin one.
2. What did you expect to see? (Required)
3. What did you see instead (Required)
4. What is your TiFlash version? (Required)
The text was updated successfully, but these errors were encountered: