You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a /tables view on each Tablet-Server which is an aggregated version of the /tablets view for tables on that server.
The aggregation should be something along the lines of GROUP BY table-id, state, with additional columns for on-disk size, number of leader/follower/read-replica/learner state. We can ignore the partition, tablet-id, and last status columns.
The text was updated successfully, but these errors were encountered:
Summary: This diff adds a `/tables` page to the tablet server ui, which is an aggregated version of the `/tablets` page. The "partition", "tablet id", and "last status" columns are ignored, and the rows are grouped by "table-id" and "state". The "Raft Config" column was changed to "Raft roles" which shows a count of the number of leaders, followers, learners, read-replicas, etc. for that table.
Test Plan:
Tested manually using a yb sample workload.
The following is an example of the `/tables` page followed by the corresponding `/tablets` page:
{F12410}
{F12411}
This is an example of what the ui looks like if some disk-sizes are not known:
{F12409}
Reviewers: hector, raju, kannan
Reviewed By: raju
Subscribers: amitanand, rao, ybase
Differential Revision: https://phabricator.dev.yugabyte.com/D6923
Add a
/tables
view on each Tablet-Server which is an aggregated version of the/tablets
view for tables on that server.The aggregation should be something along the lines of
GROUP BY table-id, state
, with additional columns for on-disk size, number of leader/follower/read-replica/learner state. We can ignore the partition, tablet-id, and last status columns.The text was updated successfully, but these errors were encountered: