René's URL Explorer Experiment


Title: Feast Control Plane UI · Issue #6192 · feast-dev/feast · GitHub

Open Graph Title: Feast Control Plane UI · Issue #6192 · feast-dev/feast

X Title: Feast Control Plane UI · Issue #6192 · feast-dev/feast

Description: Summary Feast has a read-only UI that visualizes registry state. This proposal outlines evolving it into an interactive control plane where users can browse, edit, validate, and apply changes visually — and where AI agents can propose ch...

Open Graph Description: Summary Feast has a read-only UI that visualizes registry state. This proposal outlines evolving it into an interactive control plane where users can browse, edit, validate, and apply changes visua...

X Description: Summary Feast has a read-only UI that visualizes registry state. This proposal outlines evolving it into an interactive control plane where users can browse, edit, validate, and apply changes visua...

Opengraph URL: https://github.com/feast-dev/feast/issues/6192

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Feast Control Plane UI","articleBody":"## Summary\n\nFeast has a read-only UI that visualizes registry state. This proposal outlines evolving it into an interactive control plane where users can browse, edit, validate, and apply changes visually — and where AI agents can propose changes that humans verify on screen before applying.\n\nThis builds on the Feast UI (#2353), the REST API migration (#5411), CRUD requests (#5301, #5533, #5443), the context engine vision (#5761), and the existing MCP server integration.\n\n## Problem\n\n**The CLI + YAML workflow is powerful but exclusionary.**\n\nNot every Feast user is a data engineer comfortable writing Python definitions. Data scientists and ML engineers who consume features often learn better through visualization than reading YAML. Today, creating a feature view requires knowing table names, column names, and types ahead of time — context-switching between a database client and the feature repo. The edit → `feast apply` → read terminal → fix → repeat loop is slow, and `feast plan` (dry-run) only works on `local` + `sqlite` (`_should_use_plan()` in `feature_store.py`). In managed environments (OpenShift, air-gapped clusters), terminal-inside-pod is often the only option — and those changes don't survive pod restarts.\n\n**The existing UI shows state but cannot change it.**\n\nThe React UI (`ui/`) has pages for data sources, entities, feature views, feature services, permissions, and lineage. But:\n\n- **Entirely read-only.** Zero `POST`/`PUT`/`DELETE` calls or `useMutation` hooks in the React app. `useLoadRegistry` fetches a single protobuf blob from `/registry` and derives everything from that snapshot.\n- **REST registry API is GET-only.** All routes in `api/registry/rest/` are `@router.get`. The gRPC registry server has `ApplyEntity`, `ApplyFeatureView`, `ApplyPermission`, etc. — but these are not exposed via REST.\n- **Lineage is visual but static.** The React Flow graph renders relationships but cannot be edited.\n- **Permissions page says \"manage\" but only displays.** Fixing a group-based access mistake requires: edit Python → commit → `feast apply` → verify — 5-6 terminal steps for what should be one click.\n\n**No verification surface for agentic workflows.**\n\nFeast already has an MCP server (`fastapi_mcp` at `/mcp`) and OpenLineage integration. But without a visual layer, agents are black boxes — users can't see what an agent proposes, verify its choices, or catch mistakes before they reach the registry. Trust requires transparency, and transparency requires a screen.\n\n## Proposed Solution\n\nAn interactive **Feast Control Plane UI** — not replacing CLI/YAML, but complementing it. Phased approach:\n\n### Phase 1 — Live Registry + Basic Mutations (MVP)\n\n- **Migrate UI from protobuf dump to REST API.** The REST GET endpoints already exist with pagination, sorting, filtering, and relationship inclusion — the UI just doesn't consume them yet (#5411).\n- **Add REST write endpoints** wrapping the existing gRPC `Apply*`/`Delete*` RPCs.\n- **Add `/plan` endpoint** calling `FeatureStore.plan()` for structured diff output (currently gated to local+sqlite — registry diffs don't depend on provider and could be generalized).\n- **Create/edit forms** for entities, data sources, feature views with inline validation.\n- **Preview → Apply workflow** with diff view and real-time status.\n\n### Phase 2 — Schema Discovery + Interactive Lineage + Permissions\n\n- **Schema discovery:** browse data source tables/columns, create feature views by selecting columns interactively (eliminates the database-client context-switch).\n- **Interactive lineage:** click nodes to edit definitions inline; build on existing React Flow graph + permission overlays (`permissionUtils.ts`).\n- **Permissions editor:** transform the display-only page into a real editor — select resource types, actions, policy type, save. Run `feast permissions check` logic to surface coverage gaps.\n\n### Phase 3 — Agentic Workflows + Observability\n\n- **Agent proposals as pending diffs:** an AI agent (via MCP) proposes a feature view → it appears in the UI as a visual diff → user reviews, modifies, or rejects → approved changes go through the standard validated apply path.\n- **Agent-assisted debugging:** agent analyzes materialization failures or schema drift, surfaces findings in UI with suggested fixes.\n- **Observability:** feature freshness, materialization history, data source health, usage metrics. Builds on #5920 and existing OpenLineage emitter in `FeatureStore`.\n\nThe control plane becomes the **shared workspace** where human intent and agent execution meet — the agent proposes, the UI displays, the human decides.\n\n## Current State vs What Is Needed\n\n| Capability | Today | Needed |\n|------------|-------|--------|\n| Registry browsing | Protobuf dump via `useLoadRegistry` | Migrate to existing REST API endpoints |\n| Registry mutations | gRPC `Apply*/Delete*`; REST is GET-only | REST write wrappers |\n| Apply via HTTP | None — only `FeatureStore.apply()` Python API | REST `/apply` calling `FeatureStore.apply()` |\n| Plan / diff | `FeatureStore.plan()` — gated to local+sqlite | REST `/plan`; lift provider gate for registry diffs |\n| Schema discovery | `provider.validate_data_source()` for validation | New endpoint to enumerate tables/columns |\n| Lineage | React Flow graph, read-only | Editable nodes, click-to-edit definitions |\n| Permissions | Display-only page | Write API + edit forms |\n| MCP / agentic | `fastapi_mcp` at `/mcp` (serving endpoints only) | Registry mutation tools + approval workflow |\n\n## Technical Notes\n\n- **Backend:** REST write layer must call `FeatureStore.apply()` / `FeatureStore.plan()` — not bypass to raw gRPC Apply (which skips validation, inference, and infra updates). `plan()` already accepts `desired_repo_contents: RepoContents` — the entry point for UI-driven diffs without generating Python files.\n- **Frontend:** Extend existing React UI (Elastic UI, React Query, React Flow). Add mutation hooks (currently zero).\n- **Safety:** All mutations go through `FeatureStore` validation. Destructive ops require confirmation. Diff preview before apply.\n- **Auth:** Reuse existing OIDC + K8s auth. UI authenticates through the same mechanism as all other Feast clients.\n\n## Alternatives Considered\n\n- **CLI/YAML only.** Works for experienced engineers. Does not address discoverability, onboarding, or agentic verification.\n- **Internal tools instead of upstream.** Fragments the ecosystem. Community demand (#5301, #5533, #5443) shows this is a shared need.\n- **Wait for agentic maturity.** MCP and OpenLineage already exist. Building the control plane now provides the human-in-the-loop layer that responsible agent workflows need.\n\n## Open Questions\n\n1. **Where should this live?** Extend `ui/` (simplest), separate repo, or plugin?\n2. **Write API: gRPC wrappers vs full `FeatureStore.apply()` path?** The latter is safer but requires constructing `RepoContents` from API input.\n3. **Should `FeatureStore.plan()` be generalized?** Registry diffs don't depend on provider — only infra diffs do.\n4. **Code-vs-registry source of truth?** If teams use Git, UI-only edits could diverge. Should the UI generate exportable definitions?\n5. **How far should MCP go?** Direct mutation tools, or approval-gated proposals only?\n\n## References\n\n- #2353 — Feast Web UI\n- #5411 — Migrate UI to REST API\n- #5301, #5533, #5443 — CRUD UI requests\n- #5920 — Feature Server Observability\n- #5761 — Feast as Context Engine for AI Agents\n\n## Authors\nAniket Paluskar, Cursor (Claude)","author":{"url":"https://github.com/aniketpalu","@type":"Person","name":"aniketpalu"},"datePublished":"2026-03-29T11:22:46.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/6192/feast/issues/6192"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:7fc8e533-29a6-f9f9-3746-e0f8306e174d
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idBE5C:1FFDFF:639D92:86FEB9:6A4EBFA5
html-safe-nonce1f330416339e965b1a44dc107a4e4e8633d18e9a31441acde614781ba403bb3c
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCRTVDOjFGRkRGRjo2MzlEOTI6ODZGRUI5OjZBNEVCRkE1IiwidmlzaXRvcl9pZCI6IjQ0NDgyMDAxMDg3MjMzMjI3ODkiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac3600a7dfb96d3838a86c7e1d1ff1f0703cfa8e062a201abb0e4247ddd4ab55b6
hovercard-subject-tagissue:4163867519
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/feast-dev/feast/6192/issue_layout
twitter:imagehttps://opengraph.githubassets.com/47742f035b12e73e756f30194fc1a8ddb7485e425710ba9663f971de3cb607ed/feast-dev/feast/issues/6192
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/47742f035b12e73e756f30194fc1a8ddb7485e425710ba9663f971de3cb607ed/feast-dev/feast/issues/6192
og:image:altSummary Feast has a read-only UI that visualizes registry state. This proposal outlines evolving it into an interactive control plane where users can browse, edit, validate, and apply changes visua...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameaniketpalu
hostnamegithub.com
expected-hostnamegithub.com
None41b6ab3ba6d20a71766ac245b5a4a94c6fc672a9cd4da7d44c1b33ab8bf6a21c
turbo-cache-controlno-preview
go-importgithub.com/feast-dev/feast git https://github.com/feast-dev/feast.git
octolytics-dimension-user_id57027613
octolytics-dimension-user_loginfeast-dev
octolytics-dimension-repository_id161133770
octolytics-dimension-repository_nwofeast-dev/feast
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id161133770
octolytics-dimension-repository_network_root_nwofeast-dev/feast
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasee6a744804e8e70f97b4d5a18a94dcc63db22f97a
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/feast-dev/feast/issues/6192#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Ffeast-dev%2Ffeast%2Fissues%2F6192
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Ffeast-dev%2Ffeast%2Fissues%2F6192
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=feast-dev%2Ffeast
Reloadhttps://github.com/feast-dev/feast/issues/6192
Reloadhttps://github.com/feast-dev/feast/issues/6192
Reloadhttps://github.com/feast-dev/feast/issues/6192
Please reload this pagehttps://github.com/feast-dev/feast/issues/6192
feast-dev https://github.com/feast-dev
feasthttps://github.com/feast-dev/feast
Notifications https://github.com/login?return_to=%2Ffeast-dev%2Ffeast
Fork 1.4k https://github.com/login?return_to=%2Ffeast-dev%2Ffeast
Star 7.1k https://github.com/login?return_to=%2Ffeast-dev%2Ffeast
Code https://github.com/feast-dev/feast
Issues 212 https://github.com/feast-dev/feast/issues
Pull requests 170 https://github.com/feast-dev/feast/pulls
Discussions https://github.com/feast-dev/feast/discussions
Actions https://github.com/feast-dev/feast/actions
Security and quality 1 https://github.com/feast-dev/feast/security
Insights https://github.com/feast-dev/feast/pulse
Code https://github.com/feast-dev/feast
Issues https://github.com/feast-dev/feast/issues
Pull requests https://github.com/feast-dev/feast/pulls
Discussions https://github.com/feast-dev/feast/discussions
Actions https://github.com/feast-dev/feast/actions
Security and quality https://github.com/feast-dev/feast/security
Insights https://github.com/feast-dev/feast/pulse
Feast Control Plane UIhttps://github.com/feast-dev/feast/issues/6192#top
kind/featureNew feature or requesthttps://github.com/feast-dev/feast/issues?q=state%3Aopen%20label%3A%22kind%2Ffeature%22
https://github.com/aniketpalu
aniketpaluhttps://github.com/aniketpalu
on Mar 29, 2026https://github.com/feast-dev/feast/issues/6192#issue-4163867519
#2353https://github.com/feast-dev/feast/issues/2353
#5411https://github.com/feast-dev/feast/issues/5411
#5301https://github.com/feast-dev/feast/issues/5301
#5533https://github.com/feast-dev/feast/issues/5533
#5443https://github.com/feast-dev/feast/issues/5443
#5761https://github.com/feast-dev/feast/issues/5761
Migrate Feast UI to Use REST API Registry Server #5411https://github.com/feast-dev/feast/issues/5411
Improve Feature Server Observability #5920https://github.com/feast-dev/feast/issues/5920
Enhance Feast UI to allow users to create Features #5301https://github.com/feast-dev/feast/issues/5301
[UI] Support creating FeatureView in UI #5533https://github.com/feast-dev/feast/issues/5533
[UI] Support Create/Update transformation in UI #5443https://github.com/feast-dev/feast/issues/5443
Feast Web UI #2353https://github.com/feast-dev/feast/issues/2353
Migrate Feast UI to Use REST API Registry Server #5411https://github.com/feast-dev/feast/issues/5411
Enhance Feast UI to allow users to create Features #5301https://github.com/feast-dev/feast/issues/5301
[UI] Support creating FeatureView in UI #5533https://github.com/feast-dev/feast/issues/5533
[UI] Support Create/Update transformation in UI #5443https://github.com/feast-dev/feast/issues/5443
Improve Feature Server Observability #5920https://github.com/feast-dev/feast/issues/5920
Proposal: Evolve Feast into a Context Engine for AI Agents (Post 1.0) #5761https://github.com/feast-dev/feast/issues/5761
kind/featureNew feature or requesthttps://github.com/feast-dev/feast/issues?q=state%3Aopen%20label%3A%22kind%2Ffeature%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.