[DISCUSS] New Agentic lakehouse module & built-in AI agent gateway #19264
Replies: 6 comments 2 replies
-
|
Sharing a screenshot and the proposed user interaction diagram
|
Beta Was this translation helpful? Give feedback.
-
|
This is pretty awesome. Thanks @vinothchandar. +1 on the proposal. |
Beta Was this translation helpful? Give feedback.
-
|
This is a really exciting direction. The self-hostable, local-inference-first design is what stands out most to me — being able to deploy open-source LLM models (via Ollama out of the box, and vLLM for higher-throughput serving) means teams can bring agentic capabilities to their lakehouse without shipping data or queries off to a third-party API provider. That's a big deal for anyone with data-residency, privacy, or cost constraints. +1 on the direction. |
Beta Was this translation helpful? Give feedback.
-
|
+1 This is really cool and glad to see hudi evolving beyond the storage format and what its been focused on which more as a lakehouse platform offering compute, storage, and now integration with agents within this new AI era. I do have some questions though since I have been thinking about this "gateway" concept, and happy to discuss them in community sync or on the dev list if needed.
|
Beta Was this translation helpful? Give feedback.
-
|
+1, a nice move! |
Beta Was this translation helpful? Give feedback.
-
|
+1 on the direction — especially the self-hostable, local-inference-first approach. One concern is how we ensure reliable and governed table discovery and context selection. Maybe the gateway should avoid relying on the model to freely infer the target table or pull broad data into its context; instead, it should be grounded in catalog/table metadata and execute narrowly scoped, read-only queries. This is also important for access control and auditability as the scope expands from querying to table operations. |
Beta Was this translation helpful? Give feedback.


Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
(Also mirrored to dev ML)
Hi all,
I'd like to propose adding an optional, self-hostable AI serving layer to
Hudi — making every Hudi table something you can talk to, and over time,
something agents can help operate.
Concretely: a set of Helm charts deploying Trino + a new agent gateway
service that hosts an LLM agent loop with guarded read-only SQL tools over
the lakehouse, exposes the same tools to external agents via MCP, and ships
a small chat UI. Local inference (Ollama) is the out-of-box default; API
providers and vLLM are values-file choices. Nothing about existing Hudi
APIs, configs, or storage changes — it's all additive.
Why in the project rather than as external glue: the tools can be
engine-native (catalog introspection today; incremental queries and table
services operations next), the stack stays fully open and self-hostable, and
answer quality can build on Hudi-specific knowledge.
Would love feedback on the direction, the proposed breakdown, and interest
in contributing — especially from folks running Hudi with Trino, or with
opinions on inference deployment and agent tooling. If the direction lands
well here, we'll firm up designs on the individual sub-issues (and RFCs
if engine/format surfaces are touched).
The longer arc is:
Beta Was this translation helpful? Give feedback.
All reactions