bitflicker64 commented on issue #3002: URL: https://github.com/apache/hugegraph/issues/3002#issuecomment-4275384267
> [@bitflicker64](https://github.com/bitflicker64) I can confirm this bug. Looking at the `IndexAPI` class, the `index()` method populates `leader`, `state`, `storeSize`, `graphSize`, and `partitionSize` on the `BriefStatistics` object but never sets `memberSize` [[1]](https://github.com/apache/hugegraph/blob/9126c80e414c073b60fc074361b211cfb409e0eb/hugegraph-pd/hg-pd-service/src/main/java/org/apache/hugegraph/pd/rest/IndexAPI.java#L66-L72). > > Meanwhile, the `cluster()` method correctly does `statistics.memberSize = pdList.size()` [[2]](https://github.com/apache/hugegraph/blob/9126c80e414c073b60fc074361b211cfb409e0eb/hugegraph-pd/hg-pd-service/src/main/java/org/apache/hugegraph/pd/rest/IndexAPI.java#L110). > > One nuance worth noting: `index()` uses `BriefStatistics` [[3]](https://github.com/apache/hugegraph/blob/9126c80e414c073b60fc074361b211cfb409e0eb/hugegraph-pd/hg-pd-service/src/main/java/org/apache/hugegraph/pd/rest/IndexAPI.java#L157-L165) while `cluster()` uses a separate `Statistics` class [[4]](https://github.com/apache/hugegraph/blob/9126c80e414c073b60fc074361b211cfb409e0eb/hugegraph-pd/hg-pd-service/src/main/java/org/apache/hugegraph/pd/rest/IndexAPI.java#L222-L281). The `BriefStatistics` class itself may not even have the `memberSize` field, so the fix would likely involve both adding the field to `BriefStatistics` and setting it in `index()` — not just adding the assignment line. > > _To reply, just mention [@dosu](https://go.dosu.dev/dosubot?utm_source=github&utm_medium=bot-comment&utm_campaign=github-comment-footer-20260415&utm_content=reply-with-mention&utm_term=apache%2Fhugegraph)._ > > Docs are dead. Just use [Dosu](https://dosu.dev?utm_source=github&utm_medium=bot-comment&utm_campaign=github-comment-footer-20260415&utm_content=static-docs-tagline&utm_term=apache%2Fhugegraph). > > [](https://app.dosu.dev/response-feedback?utm_source=github&utm_medium=bot-comment&utm_campaign=github-comment-footer-20260415&utm_content=static-docs-feedback&utm_term=apache%2Fhugegraph#message_id=aeeb5202-d805-4148-a1d9-45e62315d11f) [](https://github.dosu.com/apache/hugegraph?utm_source=github&utm_medium=bot-comment&utm_campaign=github-comment-footer-20260415&utm_content=static-docs-ask-repo&utm_term=apache%2Fhugegraph) [](https://app.dosu.dev/signup?referrer=openSource&source=github-footer&utm_source=github&utm_medium=bot-comment&utm_campaign=github-comment-footer-20260415&utm_content=static-docs-share-team&utm_term=apache%2Fhugegraph) Thanks for confirming. One correction though , BriefStatistics already has the memberSize field defined, it just never gets assigned in index(). So the fix is purely adding the assignment line: javastatistics.memberSize = RaftEngine.getInstance().getMembers().size(); No changes needed to the BriefStatistics class itself. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
