org.apache.hadoop.yarn.server.webapp.dao.AppsInfo Java Examples

The following examples show how to use org.apache.hadoop.yarn.server.webapp.dao.AppsInfo. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AHSWebServices.java    From hadoop with Apache License 2.0 6 votes vote down vote up
@GET
@Path("/apps")
@Produces({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML })
@Override
public AppsInfo getApps(@Context HttpServletRequest req,
    @Context HttpServletResponse res, @QueryParam("state") String stateQuery,
    @QueryParam("states") Set<String> statesQuery,
    @QueryParam("finalStatus") String finalStatusQuery,
    @QueryParam("user") String userQuery,
    @QueryParam("queue") String queueQuery,
    @QueryParam("limit") String count,
    @QueryParam("startedTimeBegin") String startedBegin,
    @QueryParam("startedTimeEnd") String startedEnd,
    @QueryParam("finishedTimeBegin") String finishBegin,
    @QueryParam("finishedTimeEnd") String finishEnd,
    @QueryParam("applicationTypes") Set<String> applicationTypes) {
  init(res);
  validateStates(stateQuery, statesQuery);
  return super.getApps(req, res, stateQuery, statesQuery, finalStatusQuery,
    userQuery, queueQuery, count, startedBegin, startedEnd, finishBegin,
    finishEnd, applicationTypes);
}
 
Example #2
Source File: AHSWebServices.java    From big-c with Apache License 2.0 6 votes vote down vote up
@GET
@Path("/apps")
@Produces({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML })
@Override
public AppsInfo getApps(@Context HttpServletRequest req,
    @Context HttpServletResponse res, @QueryParam("state") String stateQuery,
    @QueryParam("states") Set<String> statesQuery,
    @QueryParam("finalStatus") String finalStatusQuery,
    @QueryParam("user") String userQuery,
    @QueryParam("queue") String queueQuery,
    @QueryParam("limit") String count,
    @QueryParam("startedTimeBegin") String startedBegin,
    @QueryParam("startedTimeEnd") String startedEnd,
    @QueryParam("finishedTimeBegin") String finishBegin,
    @QueryParam("finishedTimeEnd") String finishEnd,
    @QueryParam("applicationTypes") Set<String> applicationTypes) {
  init(res);
  validateStates(stateQuery, statesQuery);
  return super.getApps(req, res, stateQuery, statesQuery, finalStatusQuery,
    userQuery, queueQuery, count, startedBegin, startedEnd, finishBegin,
    finishEnd, applicationTypes);
}
 
Example #3
Source File: AHSWebServices.java    From hadoop with Apache License 2.0 5 votes vote down vote up
@GET
@Produces({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML })
public AppsInfo get(@Context HttpServletRequest req,
    @Context HttpServletResponse res) {
  return getApps(req, res, null, Collections.<String> emptySet(), null, null,
    null, null, null, null, null, null, Collections.<String> emptySet());
}
 
Example #4
Source File: AHSWebServices.java    From big-c with Apache License 2.0 5 votes vote down vote up
@GET
@Produces({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML })
public AppsInfo get(@Context HttpServletRequest req,
    @Context HttpServletResponse res) {
  return getApps(req, res, null, Collections.<String> emptySet(), null, null,
    null, null, null, null, null, null, Collections.<String> emptySet());
}