Apache Hudi Tables API

Hudi table management operations

Operations 3

POST /v1/hoodie/table Apache Hudi Create Table #
GET /v1/hoodie/table/{tableName} Apache Hudi Get Table #
POST /v1/hoodie/table/{tableName}/clean Apache Hudi Run Cleaning #

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/apache-hudi-tables-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

apache-hudi-tables-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Apache Hudi Timeline Server Tables API
  version: 0.15.0
  description: REST API for the Apache Hudi Timeline Server providing table timeline, commit metadata, and table management operations for Hudi data lake tables.
  contact:
    email: dev@hudi.apache.org
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: http://localhost:9090
  description: Hudi Timeline Server
tags:
- name: Tables
  description: Hudi table management operations
paths:
  /v1/hoodie/table:
    post:
      operationId: createTable
      summary: Apache Hudi Create Table
      description: Create a new Hudi table with the provided configuration.
      tags:
      - Tables
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HudiTable'
      responses:
        '201':
          description: Table created
        '400':
          description: Invalid configuration
  /v1/hoodie/table/{tableName}:
    get:
      operationId: getTable
      summary: Apache Hudi Get Table
      description: Get configuration and metadata for a Hudi table.
      tags:
      - Tables
      parameters:
      - name: tableName
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Table retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HudiTable'
        '404':
          description: Table not found
  /v1/hoodie/table/{tableName}/clean:
    post:
      operationId: runCleaning
      summary: Apache Hudi Run Cleaning
      description: Trigger a cleaning operation on a Hudi table to remove old file versions.
      tags:
      - Tables
      parameters:
      - name: tableName
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CleanConfig'
      responses:
        '200':
          description: Cleaning completed
components:
  schemas:
    HudiTable:
      type: object
      description: Apache Hudi table metadata and configuration
      properties:
        tableName:
          type: string
          description: Hudi table name
          example: orders
        basePath:
          type: string
          description: HDFS or S3 base path for the table
          example: s3://my-bucket/hudi/orders
        tableType:
          type: string
          description: Table type (COPY_ON_WRITE or MERGE_ON_READ)
          example: COPY_ON_WRITE
        schema:
          type: string
          description: Avro schema string for the table
          example: '{}'
        preCombineField:
          type: string
          description: Field used for deduplication ordering
          example: ts
        recordKeyField:
          type: string
          description: Field used as record key
          example: order_id
        partitionPathField:
          type: string
          description: Field used for partitioning
          example: order_date
    CleanConfig:
      type: object
      description: Hudi table cleaning configuration for managing old file versions
      properties:
        policy:
          type: string
          description: Cleaning policy (KEEP_LATEST_COMMITS or KEEP_LATEST_FILE_VERSIONS)
          example: KEEP_LATEST_COMMITS
        retainCommits:
          type: integer
          description: Number of commits to retain (for KEEP_LATEST_COMMITS)
          example: 10
        retainFileVersions:
          type: integer
          description: Number of file versions to retain (for KEEP_LATEST_FILE_VERSIONS)
          example: 3
        triggerStrategy:
          type: string
          description: When to trigger cleaning (NUM_COMMITS or TIME_ELAPSED_SECONDS)
          example: NUM_COMMITS