3 comments (3 comments)0 reactions (0 reactions)1 assignee (1 assignee)C1,003 forks (1,003 forks)batch import
area/docdbgood first issuekind/enhancementpriority/medium
Repository metrics
- Stars
- 8,229 stars (8,229 stars)
- PR merge metrics
- Avg merge 17d 21h (Avg merge 17d 21h)92 merged PRs in 30d (92 merged PRs in 30d)
Description
Jira Link: DB-14963
Description
We should show the current ysql operation lease status of all tservers in the cluster in the tablet servers page served by the master leader.
Issue Type
kind/new-feature
Warning: Please confirm that this issue does not contain any sensitive information
Contributor guide
- Research direction
- Investigate the existing tablet servers HTML status page in the master server code (likely in src/yb/master/). Identify where other lease or operation statuses are displayed. The YSQL operation lease information can be fetched from the tserver's lease manager (e.g., YsqlOperationLease). Add a new column or section to the HTML page to display the lease status for each tserver. Ensure the data is propagated from tserver to master leader via heartbeats or RPC. Refer to similar implementations for other status fields.
- Tech stack
- ccpp
- Domain
- backenddatabaseobservability
- Issue type
- Feature
- Prerequisites
- Knowledge of YSQL lease mechanismFamiliarity with master server status pageC++ development