shounakmk219 commented on code in PR #15891: URL: https://github.com/apache/pinot/pull/15891#discussion_r2123399794
########## pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/rebalance/tenant/TenantRebalancer.java: ########## @@ -18,6 +18,10 @@ */ package org.apache.pinot.controller.helix.core.rebalance.tenant; +import java.util.Set; + + public interface TenantRebalancer { TenantRebalanceResult rebalance(TenantRebalanceConfig config); + Set<String> getTenantTables(String tenantName); Review Comment: Thinking if this is a good interface method or can we just move this as an until to `TableConfigUtils` so that `PinotTenantRestletResource.getTablesServedFromServerTenant` can also reuse it? -- 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