somandal opened a new pull request, #15266:
URL: https://github.com/apache/pinot/pull/15266

   This PR enhances the Table Rebalance progress stats.
   
   It adds the following to the existing progress stats:
   
   ```
     "rebalanceProgressStatsOverall" : {
       "_totalSegmentsToBeAdded" : 93,
       "_totalSegmentsToBeDeleted" : 93,
       "_totalRemainingSegmentsToBeAdded" : 31,
       "_totalRemainingSegmentsToBeDeleted" : 31,
       "_percentageTotalSegmentsAddsRemaining" : 33.33333333333333,
       "_percentageTotalSegmentDeletesRemaining" : 33.33333333333333,
       "_estimatedTimeToCompleteAdds" : 0,
       "_estimatedTimeToCompleteDeletes" : 0,
       "_averageSegmentSizeInBytes" : 153608,
       "_totalEstimatedDataToBeMovedInBytes" : 14285544
     },
     "rebalanceProgressStatsCurrentStep" : {
       "_totalSegmentsToBeAdded" : 31,
       "_totalSegmentsToBeDeleted" : 31,
       "_totalRemainingSegmentsToBeAdded" : 0,
       "_totalRemainingSegmentsToBeDeleted" : 0,
       "_percentageTotalSegmentsAddsRemaining" : 0.0,
       "_percentageTotalSegmentDeletesRemaining" : 0.0,
       "_estimatedTimeToCompleteAdds" : -1,
       "_estimatedTimeToCompleteDeletes" : -1,
       "_averageSegmentSizeInBytes" : 153608,
       "_totalEstimatedDataToBeMovedInBytes" : 4761848
     },
   ```
   
   The overall stats above are upadate at each step as well to capture the 
progress during IS-EV convergence as well
   
   It also renames some of the existing stats to make them clearer


-- 
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: commits-unsubscr...@pinot.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org
For additional commands, e-mail: commits-h...@pinot.apache.org

Reply via email to