Implement a VolumeEcStatus() RPC for volume servers. (#8006)

Just like `VolumeStatus()`, this call allows inspecting details for
a given EC volume - including number of files and their total size.
This commit is contained in:
Lisandro Pin
2026-02-09 20:52:08 +01:00
committed by GitHub
parent 818a1ff8b1
commit 1a5679a5eb
7 changed files with 104 additions and 29 deletions

View File

@@ -498,6 +498,9 @@ message VolumeEcShardsInfoRequest {
}
message VolumeEcShardsInfoResponse {
repeated EcShardInfo ec_shard_infos = 1;
uint64 volume_size = 2;
uint64 file_count = 3;
uint64 file_deleted_count = 4;
}
message EcShardInfo {