saurabhd336 commented on code in PR #11576: URL: https://github.com/apache/pinot/pull/11576#discussion_r1328233279
########## pinot-server/src/main/java/org/apache/pinot/server/api/resources/TablesResource.java: ########## @@ -285,6 +289,51 @@ public String getSegmentMetadata( return ResourceUtils.convertToJsonString(tableMetadataInfo); } + @GET + @Encoded + @Path("/tables/{tableName}/indexes") + @Produces(MediaType.APPLICATION_JSON) + @ApiOperation(value = "Provide index metadata", notes = "Provide index details for the table") + @ApiResponses(value = { + @ApiResponse(code = 200, message = "Success"), @ApiResponse(code = 500, message = "Internal server error", + response = ErrorInfo.class), @ApiResponse(code = 404, message = "Table or segment not found", response = + ErrorInfo.class) + }) + public String getTableIndexes( + @ApiParam(value = "Table name including type", required = true, example = "myTable_OFFLINE") + @PathParam("tableName") String tableName) + throws Exception { + TableDataManager tableDataManager = ServerResourceUtils.checkGetTableDataManager(_serverInstance, tableName); + List<SegmentDataManager> allSegments = tableDataManager.acquireAllSegments(); + try { + long totalSegmentCount = 0; + Map<String, Map<String, Long>> columnToIndexesCount = new HashMap<>(); + for (SegmentDataManager segmentDataManager : allSegments) { + if (segmentDataManager instanceof RealtimeSegmentDataManager) { Review Comment: Ack ########## pinot-server/src/main/java/org/apache/pinot/server/api/resources/TablesResource.java: ########## @@ -285,6 +289,51 @@ public String getSegmentMetadata( return ResourceUtils.convertToJsonString(tableMetadataInfo); } + @GET + @Encoded + @Path("/tables/{tableName}/indexes") + @Produces(MediaType.APPLICATION_JSON) + @ApiOperation(value = "Provide index metadata", notes = "Provide index details for the table") + @ApiResponses(value = { + @ApiResponse(code = 200, message = "Success"), @ApiResponse(code = 500, message = "Internal server error", + response = ErrorInfo.class), @ApiResponse(code = 404, message = "Table or segment not found", response = + ErrorInfo.class) + }) + public String getTableIndexes( + @ApiParam(value = "Table name including type", required = true, example = "myTable_OFFLINE") + @PathParam("tableName") String tableName) + throws Exception { + TableDataManager tableDataManager = ServerResourceUtils.checkGetTableDataManager(_serverInstance, tableName); + List<SegmentDataManager> allSegments = tableDataManager.acquireAllSegments(); + try { + long totalSegmentCount = 0; Review Comment: Ack -- 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