Apache Hudi Timeline API

Hudi timeline and commit operations

Operations 2

GET /v1/hoodie/timeline/{tableName} Apache Hudi Get Timeline #
GET /v1/hoodie/timeline/{tableName}/commits/{commitTime} Apache Hudi Get Commit Metadata #

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-timeline-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-timeline-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Apache Hudi Server Tables Timeline 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: Timeline
  description: Hudi timeline and commit operations
paths:
  /v1/hoodie/timeline/{tableName}:
    get:
      operationId: getTimeline
      summary: Apache Hudi Get Timeline
      description: Get the complete timeline of instants for a Hudi table.
      tags:
      - Timeline
      parameters:
      - name: tableName
        in: path
        required: true
        schema:
          type: string
        description: Hudi table name
      responses:
        '200':
          description: Timeline retrieved
          content:
            application/json:
              schema:
                type: object
                properties:
                  instants:
                    type: array
                    items:
                      $ref: '#/components/schemas/TimelineInstant'
  /v1/hoodie/timeline/{tableName}/commits/{commitTime}:
    get:
      operationId: getCommitMetadata
      summary: Apache Hudi Get Commit Metadata
      description: Get metadata for a specific commit instant on the Hudi timeline.
      tags:
      - Timeline
      parameters:
      - name: tableName
        in: path
        required: true
        schema:
          type: string
      - name: commitTime
        in: path
        required: true
        schema:
          type: string
        description: Commit timestamp
      responses:
        '200':
          description: Commit metadata retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CommitMetadata'
        '404':
          description: Commit not found
components:
  schemas:
    CommitMetadata:
      type: object
      description: Metadata for a completed Hudi commit operation
      properties:
        commitTime:
          type: string
          description: Commit timestamp
          example: '20240101120000000'
        totalWriteBytes:
          type: integer
          format: int64
          description: Total bytes written
          example: 52428800
        totalRecordsWritten:
          type: integer
          format: int64
          description: Total records written
          example: 100000
        totalUpdateRecordsWritten:
          type: integer
          format: int64
          description: Records updated
          example: 30000
        totalInsertRecordsWritten:
          type: integer
          format: int64
          description: Records inserted
          example: 70000
        totalBytesWritten:
          type: integer
          format: int64
          description: Bytes written to storage
          example: 52428800
    TimelineInstant:
      type: object
      description: A single instant on the Hudi timeline representing a completed action
      properties:
        timestamp:
          type: string
          description: Instant timestamp (yyyyMMddHHmmssSSS format)
          example: '20240101120000000'
        action:
          type: string
          description: Action type (commit, deltacommit, compaction, clean, rollback)
          example: commit
        state:
          type: string
          description: Instant state (COMPLETED, INFLIGHT, REQUESTED)
          example: COMPLETED