Class TableSizeResource
- java.lang.Object
-
- org.apache.pinot.server.api.resources.TableSizeResource
-
@Path("/") public class TableSizeResource extends ObjectAPI to provide table sizes
-
-
Constructor Summary
Constructors Constructor Description TableSizeResource()
-
Method Summary
Modifier and Type Method Description StringgetTableSize(String tableName, boolean detailed)StringgetTableSizeOld(String tableName, boolean detailed)Deprecated.
-
-
-
Method Detail
-
getTableSize
@GET @Produces("application/json") @Path("/tables/{tableName}/size") public String getTableSize(@PathParam("tableName") String tableName, @DefaultValue("true") @QueryParam("detailed") boolean detailed) throws javax.ws.rs.WebApplicationException- Throws:
javax.ws.rs.WebApplicationException
-
getTableSizeOld
@GET @Produces("application/json") @Path("/table/{tableName}/size") @Deprecated public String getTableSizeOld(@PathParam("tableName") String tableName, @DefaultValue("true") @QueryParam("detailed") boolean detailed) throws javax.ws.rs.WebApplicationExceptionDeprecated.- Throws:
javax.ws.rs.WebApplicationException
-
-