Class TableTierResource
- java.lang.Object
-
- org.apache.pinot.server.api.resources.TableTierResource
-
@Path("/") public class TableTierResource extends ObjectA server-side API to get the storage tiers of immutable segments of the given table from the server being requested.
-
-
Constructor Summary
Constructors Constructor Description TableTierResource()
-
Method Summary
Modifier and Type Method Description StringgetTableSegmentTiers(String tableNameWithType, String segmentName)StringgetTableTiers(String tableNameWithType)
-
-
-
Method Detail
-
getTableTiers
@GET @Produces("application/json") @Path("/tables/{tableNameWithType}/tiers") public String getTableTiers(@PathParam("tableNameWithType") String tableNameWithType) throws javax.ws.rs.WebApplicationException- Throws:
javax.ws.rs.WebApplicationException
-
getTableSegmentTiers
@GET @Produces("application/json") @Path("/segments/{tableNameWithType}/{segmentName}/tiers") public String getTableSegmentTiers(@PathParam("tableNameWithType") String tableNameWithType, @PathParam("segmentName") @Encoded String segmentName) throws javax.ws.rs.WebApplicationException- Throws:
javax.ws.rs.WebApplicationException
-
-