Apache Hudi Lakehouse logo

Apache Hudi Lakehouse

Organization
Kilo-Org
apache-hudi-lakehouse

Guides agents through Apache Hudi lakehouse design. Use when managing incremental upserts, record-level mutations, timeline behavior, compaction, and Hudi-based lakehouse tables.

Overview

PublisherKilo-Org
Repositorykilo-marketplace
Skill nameapache-hudi-lakehouse
Stars
179
Forks
168
Bundled files
Instructions only
LicenseApache-2.0
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by Kilo-Org on GitHub. Read the source before you install it.

Installation

Install the Apache Hudi Lakehouse AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/Kilo-Org/kilo-marketplace.git /tmp/kilo-marketplace
mkdir -p .claude/skills
cp -r /tmp/kilo-marketplace/skills/apache-hudi-lakehouse .claude/skills/apache-hudi-lakehouse
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Apache Hudi Lakehouse in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Apache Hudi Lakehouse on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Apache Hudi Lakehouse is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Apache Hudi Lakehouse

Overview

Use this skill when Apache Hudi is the primary table layer for incremental lakehouse workloads. It helps agents reason about mutation-heavy patterns, table type selection, compaction behavior, timeline safety, and consumer expectations across read-optimized and real-time query paths.

When to Use

  • choosing or operating Apache Hudi for lakehouse tables
  • building record-level upsert or delete pipelines
  • managing compaction, clustering, and incremental consumption
  • supporting lakehouse tables with heavy mutations (CDC sinks, slowly changing dimensions)
  • planning multi-engine access (Spark, Presto, Trino, Athena, Hive)

Do not use this when the workload is append-only with no mutation requirements and simpler formats like Parquet or Iceberg would suffice.

Workflow

  1. Define mutation patterns and read access expectations. Include:

    • primary record key and partition path
    • expected operations: inserts, upserts, deletes, or bulk replaces
    • read latency expectations: are readers okay with merge-on-read or do they need read-optimized snapshots?
    • query engines that must access the table
    • expected write throughput and record mutation rate
  2. Choose the right table type and indexing strategy.

    • Copy-on-Write (COW): best for read-heavy workloads, produces columnar snapshots on write
    • Merge-on-Read (MOR): best for write-heavy workloads, defers merge to read time or compaction
    • choose record index type: BLOOM, GLOBAL_BLOOM, SIMPLE, BUCKET, or RECORD_INDEX
    • index choice affects upsert performance and scaling behavior
    • document why the table type was chosen — revisiting later is expensive
  3. Plan compaction and clustering explicitly.

    • for MOR tables: compaction converts log files to columnar — it is not optional
    • define compaction strategy: synchronous (inline) or asynchronous (scheduled)
    • set compaction triggers: by number of commits, time, or log file size
    • clustering reorganizes data layout for query performance — plan separately from compaction
    • budget compute for compaction and clustering in cost planning
  4. Design incremental consumption and downstream contracts.

    • Hudi supports incremental queries by commit timeline
    • define the consumer contract: which commit instant do consumers start from?
    • plan for consumer resets and bootstrap reads
    • document how schema changes affect incremental consumers
    • test that consumers handle compaction and rollback instants correctly
  5. Handle schema evolution and timeline safety.

    • Hudi supports schema evolution but not all changes are safe across readers
    • column adds are generally safe; renames and type changes require care
    • define compatibility expectations per reader engine
    • rollback instants can confuse consumers — document rollback behavior
    • archive policy affects timeline visibility for late consumers
  6. Plan operations, monitoring, and recovery.

    • monitor timeline growth, pending compactions, and inflight commits
    • alert on compaction backlog and write failures
    • plan for rollback: Hudi supports instant-level rollback, but consumers must handle gaps
    • define retention and archival for the Hudi timeline
    • document backup and restore procedures for critical tables

Common Rationalizations

RationalizationReality
"Hudi handles upserts so we don't need to think about keys."Record key and partition path design determines correctness, performance, and scaling. Wrong keys cause silent data loss or duplication.
"MOR is always better because writes are faster."MOR defers work to compaction and read time. Without compaction planning, read performance degrades unboundedly.
"Compaction will just happen in the background."Compaction requires explicit scheduling, compute budget, and monitoring. Unmanaged compaction leads to reader degradation and timeline bloat.
"All query engines see the same data."COW and MOR tables expose different snapshots to different query types. Read-optimized queries on MOR tables see only compacted data.

Red Flags

  • record key chosen without understanding uniqueness guarantees
  • MOR table with no compaction schedule or monitoring
  • incremental consumers have no documented starting instant or reset procedure
  • schema changes deployed without testing across all reader engines
  • no monitoring of timeline growth, pending compactions, or inflight commits
  • clustering is never run despite increasing query scan ranges
  • rollback behavior is undocumented and consumers assume a linear timeline
  • index type is default without analysis of key cardinality and write patterns

Verification

  • Record key, partition path, and mutation semantics are explicitly documented
  • Table type choice (COW vs MOR) is justified with read/write trade-off analysis
  • Compaction is scheduled, monitored, and budgeted for compute cost
  • Incremental consumer contracts define starting instants and reset behavior
  • Schema evolution paths are tested across all target query engines
  • Timeline monitoring covers pending compactions, inflight commits, and archival
  • Rollback behavior is documented and consumers handle timeline gaps safely

Frequently asked questions

What does the Apache Hudi Lakehouse AI skill do?

Guides agents through Apache Hudi lakehouse design. Use when managing incremental upserts, record-level mutations, timeline behavior, compaction, and Hudi-based lakehouse tables.

Why use Apache Hudi Lakehouse on TypingMind?

Because you install it once and use it with any model. Apache Hudi Lakehouse is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Apache Hudi Lakehouse in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/Kilo-Org/kilo-marketplace/tree/main/skills/apache-hudi-lakehouse. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Apache Hudi Lakehouse?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Apache Hudi Lakehouse?

As many as you like. As long as a model supports skills, you can use Apache Hudi Lakehouse with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Apache Hudi Lakehouse AI skill free?

Yes. It is published on GitHub by Kilo-Org under the Apache-2.0 license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇