Apache Hadoop YARN Applications API

Application listing, submission, and lifecycle.

Operations 8

GET /ws/v1/cluster/apps List applications #
POST /ws/v1/cluster/apps Submit a new application #
GET /ws/v1/cluster/apps/{appid} Application details #
PUT /ws/v1/cluster/apps/{appid}/state Update application state #
PUT /ws/v1/cluster/apps/{appid}/queue Move application to a different queue #
PUT /ws/v1/cluster/apps/{appid}/priority Update application priority #
GET /ws/v1/cluster/apps/{appid}/appattempts List application attempts #
GET /ws/v1/cluster/appstatistics Application statistics #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/hadoop-yarn-applications-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

hadoop-yarn-applications-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Apache Hadoop REST APIs WebHDFS YARN Applications API
  description: Aggregated OpenAPI definition for the public REST APIs exposed by Apache Hadoop. Includes WebHDFS for filesystem operations and the YARN ResourceManager for cluster, application, and node management.
  version: stable
  contact:
    name: Apache Hadoop
    url: https://hadoop.apache.org/
  license:
    name: Apache License 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: http://{host}:{port}
  description: Hadoop service host
  variables:
    host:
      default: localhost
    port:
      default: '50070'
tags:
- name: YARN Applications
  description: Application listing, submission, and lifecycle.
paths:
  /ws/v1/cluster/apps:
    get:
      summary: List applications
      operationId: listApps
      tags:
      - YARN Applications
      parameters:
      - name: state
        in: query
        schema:
          type: string
      - name: user
        in: query
        schema:
          type: string
      - name: queue
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Applications list
    post:
      summary: Submit a new application
      operationId: submitApp
      tags:
      - YARN Applications
      responses:
        '202':
          description: Submitted
  /ws/v1/cluster/apps/{appid}:
    get:
      summary: Application details
      operationId: getApp
      tags:
      - YARN Applications
      parameters:
      - name: appid
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Application details
  /ws/v1/cluster/apps/{appid}/state:
    put:
      summary: Update application state
      operationId: updateAppState
      tags:
      - YARN Applications
      parameters:
      - name: appid
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: State updated
  /ws/v1/cluster/apps/{appid}/queue:
    put:
      summary: Move application to a different queue
      operationId: updateAppQueue
      tags:
      - YARN Applications
      parameters:
      - name: appid
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Queue updated
  /ws/v1/cluster/apps/{appid}/priority:
    put:
      summary: Update application priority
      operationId: updateAppPriority
      tags:
      - YARN Applications
      parameters:
      - name: appid
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Priority updated
  /ws/v1/cluster/apps/{appid}/appattempts:
    get:
      summary: List application attempts
      operationId: listAppAttempts
      tags:
      - YARN Applications
      parameters:
      - name: appid
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Application attempts
  /ws/v1/cluster/appstatistics:
    get:
      summary: Application statistics
      operationId: getAppStatistics
      tags:
      - YARN Applications
      responses:
        '200':
          description: Application statistics by type and state