RockteMQ-AI commented on issue #4171:
URL: 
https://github.com/apache/rocketmq-dashboard/issues/4171#issuecomment-5588189808

   **Issue Evaluation**
   
   Category: `bug` | Status: **Confirmed**
   
   The reported issue has been verified as a valid defect. The analysis is 
well-founded: applying a client-side filter on server-paginated data is 
inherently incorrect — the filtered subset, total count, and page navigation 
will disagree with what the server actually returns.
   
   **Root Cause:** `visibleConsumerGroups` filters `groups` (current page only) 
by `modeFilter` client-side, while the paginator uses the unfiltered 
`totalGroups` from the server response. The export path already does this 
correctly server-side, confirming the fix pattern.
   
   **Impact:** Users see incorrect totals, broken pagination, and data 
inconsistency between the table view and exports when filtering by subscription 
mode on instances with multiple pages of consumer groups.
   
   **Severity:** Medium — functional correctness issue for a filtered view; no 
data loss.
   
   Noted that a PR is incoming. The fix should:
   1. Pass `subscriptionMode` to `listConsumerGroupPage` so filtering happens 
server-side
   2. Reset page to 1 when the mode filter changes (consistent with search 
behavior)
   3. Ensure the export and list paths use the same filter parameter
   
   ---
   *Automated evaluation by RockteMQ-AI*


-- 
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]

Reply via email to