René's URL Explorer Experiment


Title: feat: Feast First-Class LabelView Implementation by ntkathole · Pull Request #6292 · feast-dev/feast · GitHub

Open Graph Title: feat: Feast First-Class LabelView Implementation by ntkathole · Pull Request #6292 · feast-dev/feast

X Title: feat: Feast First-Class LabelView Implementation by ntkathole · Pull Request #6292 · feast-dev/feast

Description: What this PR does / why we need it: RFC - https://docs.google.com/document/d/1mcJM0sHeBk269oMIsLsLnAlrMtgnxn5Pws0oEeogc48/edit?usp=sharing Summary Introduces LabelView, a new alpha-stage Feast primitive that manages mutable labels and annotations separately from immutable feature data stored in regular FeatureViews. This supports multi-labeler workflows (human reviewers, automated safety scanners, reward models) where different sources independently write labels for the same entity keys. LabelView is fully opt-in — existing workflows are unaffected unless a user explicitly defines one. labelview_v2.mov What's included Core implementation (feast.labeling module) LabelView class inheriting from BaseFeatureView, with label-specific attributes: labeler_field, conflict_policy, retain_history, reference_feature_view ConflictPolicy enum (LAST_WRITE_WINS, LABELER_PRIORITY, MAJORITY_VOTE) Protobuf definition (LabelView.proto) with LabelViewSpec, LabelViewMeta, and ConflictResolutionPolicy Full SDK integration FeatureStore.apply() — registers LabelViews, auto-registers their PushSource, validates name uniqueness across all view types FeatureStore.push() — routes push data to LabelView when its PushSource matches FeatureStore.get_historical_features() — works via batch_source/stream_source properties on LabelView FeatureStore.teardown() — includes LabelView tables FeatureStore.list_label_views() / get_label_view() — new public API methods FeatureService composability — LabelViews can be included alongside regular feature views Registry support (all backends) File registry — full CRUD, apply_materialization, name-conflict checks SQL registry — label_views table, _infer_fv_table/_infer_fv_classes support, proto() builder Remote (gRPC) registry — label_view arm added to ApplyFeatureViewRequest oneof, full client + server wiring Snowflake registry — DDL for LABEL_VIEWS table, correct column-name mapping in delete_feature_view CLI feast label-views list — lists all label views with name, entities, conflict policy feast label-views describe — shows full label view details feast feature-views list unchanged (label views are only in their dedicated command) Permissions LABEL_VIEW = 11 added to Permission.proto Type enum _PERMISSION_TYPES map updated for from_proto/to_proto roundtrip Regression safety No changes to existing feature-views list output All registry proto() builders include label_views so cached/exported blobs are complete Cross-type name uniqueness enforced via _ensure_feature_view_name_is_unique Documentation Docstrings with [Alpha] tags and Google-style Args blocks on all public classes/methods Sphinx/RST API reference entries for LabelView and ConflictPolicy Concept guide (docs/getting-started/concepts/label-view.md) with usage examples, conflict policies, and alpha limitations Alpha limitations clearly documented: conflict_policy stored but not enforced at read time (requires online-store query-path changes); retain_history stored but not enforced at write time (requires online-store write-path changes); batch materialization not supported Tests 30 unit tests covering creation, defaults, proto roundtrip, copy/equality, validation, FeatureService composition, registry proto roundtrip, batch_source/stream_source properties, name-conflict detection, and MaterializationTask acceptance Alpha Limitations conflict_policy — persisted in registry metadata but not enforced during get_online_features. Online store returns last-written row regardless of policy. retain_history — persisted but not acted on. Online store always overwrites previous value. Test Plan All 30 test_label_view.py unit tests pass All 5 test_registry_diff.py tests pass (including test_diff_registry_objects_permissions) No linter errors introduced Existing feature view / entity / feature service workflows unaffected when no LabelView is defined Manual: feast apply with a repo containing a LabelView definition Manual: feast label-views list / feast label-views describe Manual: FeatureStore.push() to a LabelView's PushSource Which issue(s) this PR fixes: #5456

Open Graph Description: What this PR does / why we need it: RFC - https://docs.google.com/document/d/1mcJM0sHeBk269oMIsLsLnAlrMtgnxn5Pws0oEeogc48/edit?usp=sharing Summary Introduces LabelView, a new alpha-stage Feast prim...

X Description: What this PR does / why we need it: RFC - https://docs.google.com/document/d/1mcJM0sHeBk269oMIsLsLnAlrMtgnxn5Pws0oEeogc48/edit?usp=sharing Summary Introduces LabelView, a new alpha-stage Feast prim...

Opengraph URL: https://github.com/feast-dev/feast/pull/6292

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:bafac273-8a80-034b-6051-28c8dc42bddd
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idC146:DBD6A:85A47:B0924:6A51116F
html-safe-nonce101b649a0ae9f302ad5496fe0d2e0c5c1924307108d9b433d3ae767e0092b00e
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDMTQ2OkRCRDZBOjg1QTQ3OkIwOTI0OjZBNTExMTZGIiwidmlzaXRvcl9pZCI6IjE3MDgwOTExNTY2MTk5MjM4MjMiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac922f75290f80e162b08979da4241140251aef4335a06ef2b961636b7c4fc072f
hovercard-subject-tagpull_request:3543110730
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/feast-dev/feast/pull/6292/files
twitter:imagehttps://avatars.githubusercontent.com/u/16951913?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/16951913?s=400&v=4
og:image:altWhat this PR does / why we need it: RFC - https://docs.google.com/document/d/1mcJM0sHeBk269oMIsLsLnAlrMtgnxn5Pws0oEeogc48/edit?usp=sharing Summary Introduces LabelView, a new alpha-stage Feast prim...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
Noneb076e100febaa00374cd89239f915d00dd3187f7c68b12bc2b7688181305344d
turbo-cache-controlno-preview
diff-viewunified
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 full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasef9137f6d981cbbfd780af369f80ce890b2d0d2d4
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/feast-dev/feast/pull/6292/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Ffeast-dev%2Ffeast%2Fpull%2F6292%2Ffiles
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%2Fpull%2F6292%2Ffiles
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%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=feast-dev%2Ffeast
Reloadhttps://github.com/feast-dev/feast/pull/6292/files
Reloadhttps://github.com/feast-dev/feast/pull/6292/files
Reloadhttps://github.com/feast-dev/feast/pull/6292/files
Please reload this pagehttps://github.com/feast-dev/feast/pull/6292/files
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 213 https://github.com/feast-dev/feast/issues
Pull requests 176 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
Sign up for GitHub https://github.com/signup?return_to=%2Ffeast-dev%2Ffeast%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Ffeast-dev%2Ffeast%2Fissues%2Fnew%2Fchoose
ntkatholehttps://github.com/ntkathole
feast-dev:masterhttps://github.com/feast-dev/feast/tree/master
ntkathole:labelViewhttps://github.com/ntkathole/feast/tree/labelView
Conversation 72 https://github.com/feast-dev/feast/pull/6292
Commits 3 https://github.com/feast-dev/feast/pull/6292/commits
Checks 28 https://github.com/feast-dev/feast/pull/6292/checks
Files changed https://github.com/feast-dev/feast/pull/6292/files
Please reload this pagehttps://github.com/feast-dev/feast/pull/6292/files
feat: Feast First-Class LabelView Implementation https://github.com/feast-dev/feast/pull/6292/files#top
Show all changes 3 commits https://github.com/feast-dev/feast/pull/6292/files
cf3fe95 feat: Feast First-Class LabelView Implementation ntkathole Apr 16, 2026 https://github.com/feast-dev/feast/pull/6292/commits/cf3fe9549dfed4a90059b33922cbe498187fe0f1
d671617 feat: Added UI for Labels and LabelView ntkathole Jun 4, 2026 https://github.com/feast-dev/feast/pull/6292/commits/d671617bc3b6d6de6fa5d879f71c50dcca2aeb3e
bc4ea5e feat: Added improved labelView UI version 2 ntkathole Jun 5, 2026 https://github.com/feast-dev/feast/pull/6292/commits/bc4ea5e630c48be7df5bf09c955dc13ae4c5bb67
Clear filters https://github.com/feast-dev/feast/pull/6292/files
Please reload this pagehttps://github.com/feast-dev/feast/pull/6292/files
Please reload this pagehttps://github.com/feast-dev/feast/pull/6292/files
SUMMARY.md https://github.com/feast-dev/feast/pull/6292/files#diff-492f4fe6d732168c58e78f2a627614dc59f1e41a5d12da3d8347d3957e9673f6
ADR-0012-label-view.md https://github.com/feast-dev/feast/pull/6292/files#diff-91e0f6671892d11591401da86e1f71ed4b0948543656d5cd5ec6d5a98cd0b25c
rfc-feature-view-versioning.md https://github.com/feast-dev/feast/pull/6292/files#diff-46984796f835391baffe7ede495e3b2195236642d984770b68d9af47cdd0c41c
label-view.md https://github.com/feast-dev/feast/pull/6292/files#diff-c7ef94f0566a572c2223a0f7ca6a5fd1813308b75154188d4acbb068c8521836
alpha-feature-view-versioning.md https://github.com/feast-dev/feast/pull/6292/files#diff-d4562804a29831e3779e9ee9c18a3e702f25007fca065ed7279a5d46c2a2c296
FeatureViewProjection.proto https://github.com/feast-dev/feast/pull/6292/files#diff-a73bd7bd171d790ff8a652c3d6b13a1dbd094d8b5c8219c88a54ad7fdabb3a16
LabelView.proto https://github.com/feast-dev/feast/pull/6292/files#diff-d004d31a62e449251ef7f9110242e082af4c3338f572cb27e59f9b977e7db43c
Permission.proto https://github.com/feast-dev/feast/pull/6292/files#diff-7029e3d15291f073feb5d39b7c9416a7e361fa946f955b5df4a0d310d28b05a4
Registry.proto https://github.com/feast-dev/feast/pull/6292/files#diff-2dcede6bef6e477128d79afdc86b955384e99bfaee07bb1720bdce46e21a791c
RegistryServer.proto https://github.com/feast-dev/feast/pull/6292/files#diff-4bbfffb0c00e6d604be903b8013fa649cdd832a397465a0f629d19f01f6ab27c
index.rst https://github.com/feast-dev/feast/pull/6292/files#diff-50aa555699b3e06180941897da168f7e367cbe2c64958a5944878a7cb8a88e55
feast.protos.feast.core.rst https://github.com/feast-dev/feast/pull/6292/files#diff-dc85decfd598a340f21642ba4f661d79f5a4985864ab1b705d574ed3eb79dec0
__init__.py https://github.com/feast-dev/feast/pull/6292/files#diff-794af67ced1855fb3e80801c28bebe22bae240b71241a7857576353d4321e284
__init__.py https://github.com/feast-dev/feast/pull/6292/files#diff-6087b60c439d55f5a60abd6b75f2d15a7d2117e822e209d951cd650288b8057b
features.py https://github.com/feast-dev/feast/pull/6292/files#diff-0d9d1b9c3285fa752117e1f8ba5e0e36307c24bdebea6c53b541efce395ae50d
label_views.py https://github.com/feast-dev/feast/pull/6292/files#diff-a8baa52bbebb3175887d3172908967bbc7cbad851f5b4a8c92915b7900894f6f
lineage.py https://github.com/feast-dev/feast/pull/6292/files#diff-3c6e3c75c6c197dc7a104a171bde0bcb8abe0948cba7501496d93d8c92ff2a1f
rest_utils.py https://github.com/feast-dev/feast/pull/6292/files#diff-ca83d7dc0fd9378db287c97997a1f78b9b0d77426274a0a44b343449d893aa2e
search.py https://github.com/feast-dev/feast/pull/6292/files#diff-0823049dfda69c418287f34fc46dfae2b402aefe1be6a589d86f04d9b4b613d8
base_feature_view.py https://github.com/feast-dev/feast/pull/6292/files#diff-d6833930179d657eecaeada84f087b3ee6639137e65a1ca0135379d55bbbba55
cli.py https://github.com/feast-dev/feast/pull/6292/files#diff-23b8f515348aa3f87ecbc5ea62136be8500ae89683d4b7317c69b7b6e2ec80f8
label_views.py https://github.com/feast-dev/feast/pull/6292/files#diff-074be294941ee805d4bbbc7c56c3e71598b05b2c15dbaa506aebcba911a3d656
registry_diff.py https://github.com/feast-dev/feast/pull/6292/files#diff-a694770645a4bdf4f1323de2128665ee744daa9fb8a1ea458ec081ca61c231a2
feast_object.py https://github.com/feast-dev/feast/pull/6292/files#diff-2414779ea587f435e6e9db1a0e459269aa2b6371738c42799ac829e87cd12766
feature_service.py https://github.com/feast-dev/feast/pull/6292/files#diff-28867c1b046de32a9b63b8be749f6c193c43870ddd2587efa5d24fe8a67b026c
feature_store.py https://github.com/feast-dev/feast/pull/6292/files#diff-ff4e2a65c8c29b7971edc77a61a7e970d410d77d9f173f72714d1bb49e2509a2
feature_view_projection.py https://github.com/feast-dev/feast/pull/6292/files#diff-2bd41ff413420d157db62fb56c8b41893b00dec4dbdd408136ada26cbb39132a
duckdb.py https://github.com/feast-dev/feast/pull/6292/files#diff-ea2fa10bfef868a728514ef5f0890661d652c372ca286830d16361d99e93477d
ibis.py https://github.com/feast-dev/feast/pull/6292/files#diff-eedbb771d573c009bac3dd8afbc045f24ff06056186834c407798463cb0e6e08
passthrough_provider.py https://github.com/feast-dev/feast/pull/6292/files#diff-d9f79a3598724f611628ace828bfb01721e6ffe34cc8f16e313ed9fdd48e8ab2
provider.py https://github.com/feast-dev/feast/pull/6292/files#diff-465c56d60ad11aa485727982ae4b7adf6e1eca816f610442078f871ddd9357a5
base_registry.py https://github.com/feast-dev/feast/pull/6292/files#diff-c0a697ad0a143c46409d813c90c6d1d412f6db7368e656bfe1c4855b32228244
caching_registry.py https://github.com/feast-dev/feast/pull/6292/files#diff-8c00295d47283bc2b5221e3d797bb3cbec657ac8eb1f11326fb041f60c1941a8
proto_registry_utils.py https://github.com/feast-dev/feast/pull/6292/files#diff-0da2fb3694cff37219d3787d0b9037fa87c0299de63a5e2d1828ad860a2a5cfb
registry.py https://github.com/feast-dev/feast/pull/6292/files#diff-e399b315ba346413cd4c6d0ce607a4376137f9be98df9b3044a79e749a5dd12e
remote.py https://github.com/feast-dev/feast/pull/6292/files#diff-e7e60b86539817c283efbf18668db889311a80d25e255ac1dbeb726f5c615b66
snowflake.py https://github.com/feast-dev/feast/pull/6292/files#diff-d30055e36a0d91416fa2c53782809c120e5d63b886ab4aceda70ba92407bbad2
sql.py https://github.com/feast-dev/feast/pull/6292/files#diff-c6193043c77bd411f332b1a92fc0d92f4f3011787438f1515454a2854b10beda
snowflake_table_creation.sql https://github.com/feast-dev/feast/pull/6292/files#diff-b55b28f605403e9c14f9488e75ad3308fc1c10a0e0c4d645fdac7883c659d594
snowflake_table_deletion.sql https://github.com/feast-dev/feast/pull/6292/files#diff-ecabbc87ecb375e5978ab823565543838c0eba20bd8d4d8fb7e2ab3f2a710670
__init__.py https://github.com/feast-dev/feast/pull/6292/files#diff-1c52ee9efd26d07b192a9ffd3b182ba811290bf30db708f419647249049e4f79
conflict_policy.py https://github.com/feast-dev/feast/pull/6292/files#diff-30b98f419e88d110f281810494346200a81a1b61e7f6ca0d5acf99022bec8565
conflict_resolver.py https://github.com/feast-dev/feast/pull/6292/files#diff-9dd2477b82552bbca6cb516448d0ee7679c9c7bae1fa0a9fc6d76270ad5a6dc6
label_view.py https://github.com/feast-dev/feast/pull/6292/files#diff-6ee0f1ce03d328c144f3590bafb0c2f08723f1f8fef39e9cd8e4ea900c6a20c7
registry_lineage.py https://github.com/feast-dev/feast/pull/6292/files#diff-96f6c85609e0123681d680c923e7d577597b164c5f8046de67297a67fe05ecbf
emitter.py https://github.com/feast-dev/feast/pull/6292/files#diff-1b740032075fa91ebb2993de4a54a5e71dc18771e7c9d7be2671dd5a80192a72
mappers.py https://github.com/feast-dev/feast/pull/6292/files#diff-33d5c1cc5f23aab576fbddc7d7dd36e35638d4f237f0cf779e05b9dc2469be38
permission.py https://github.com/feast-dev/feast/pull/6292/files#diff-311682194bd2e48582e4b3531e3a640a540b7256ea0514e7886fb45fd6a8f724
FeatureViewProjection_pb2.py https://github.com/feast-dev/feast/pull/6292/files#diff-aca5f6e0f54c40c61eb89a1ba520b2502044935257f315ba8476fbf90dc3b2e7
FeatureViewProjection_pb2.pyi https://github.com/feast-dev/feast/pull/6292/files#diff-3f4f70ff30aa8f4a5e6e6c9e1596ce844e3731e58798f7c315d5f0cb9797cd5c
LabelView_pb2.py https://github.com/feast-dev/feast/pull/6292/files#diff-26a7219979f1a96f859a8f915f6f67b9323ceeeb0e66dc53d4622cd8de9a7153
LabelView_pb2.pyi https://github.com/feast-dev/feast/pull/6292/files#diff-0d169bf5ceba89241cce9b1281410f47adca716a47f9114b7d265c30902b2c8e
LabelView_pb2_grpc.py https://github.com/feast-dev/feast/pull/6292/files#diff-6a57c8e3cd65dc98c18e894561dfbd54579a25bf0d66b4eb212177b91a8cb07d
Permission_pb2.py https://github.com/feast-dev/feast/pull/6292/files#diff-fce62be749c7829fb1663fbf86248be08001fcaf0b7e1ce9e1a68b4749b3dc97
Permission_pb2.pyi https://github.com/feast-dev/feast/pull/6292/files#diff-ae55279b4c40bd025bc1056ad2ee6f0a95f70ccd8c45b3eb72050c7196c835c0
Registry_pb2.py https://github.com/feast-dev/feast/pull/6292/files#diff-25a566f48e2095ce310367f455cd25f79036a4abbc045559ed490976e397ea1a
Registry_pb2.pyi https://github.com/feast-dev/feast/pull/6292/files#diff-40fc092a8e49a81da37feeb68d8ab49378be771f6b61aa130fef664f84840e0a
RegistryServer_pb2.py https://github.com/feast-dev/feast/pull/6292/files#diff-42615615420b29724b472fc911fbe9e0f5a2f649e6ecf2bea0085c202a4b8791
RegistryServer_pb2.pyi https://github.com/feast-dev/feast/pull/6292/files#diff-0f35e02e95e97661fc7253ecc3fcf1055a5b57bfed8814e05b2254a4cf4b8dab
RegistryServer_pb2_grpc.py https://github.com/feast-dev/feast/pull/6292/files#diff-18365080a80acb22d7d231329c2c5d90cb9bfc3663b53c7c98de78d220f414a0
registry_server.py https://github.com/feast-dev/feast/pull/6292/files#diff-6cac8a996d69afacdfc6c858f131f1cfeb807b24222356dd3e96a74fdfb31f92
repo_contents.py https://github.com/feast-dev/feast/pull/6292/files#diff-9cd943a2901d0eab8195a1b343e98a28980fadfad5cf2b3b8301b3084c95a80d
repo_operations.py https://github.com/feast-dev/feast/pull/6292/files#diff-9922445cc092f7a2f8885c771cb4d15c4c21a84bcbc0513ba76009036ddbccf5
ui_server.py https://github.com/feast-dev/feast/pull/6292/files#diff-12fa0a74ad9a333ce95b2c23e6428455678ed129b3517ec355b8fa9541c3ef32
pyproject.toml https://github.com/feast-dev/feast/pull/6292/files#diff-0cba00bc8967d0c3e4a42244a5c9d5112d5d9580d645572cda9ccf4af64c732f
test_registry.py https://github.com/feast-dev/feast/pull/6292/files#diff-ede4d71fcd9b033989343b7dc0dac74a7d23d14d0785372ca87e63dbb10a5273
test_label_view.py https://github.com/feast-dev/feast/pull/6292/files#diff-7d6c10f13271f183a796016d640ca19d31557e28b12585dfc25f553e12f1fad1
jest.config.js https://github.com/feast-dev/feast/pull/6292/files#diff-afd88d683f9d3444e4b079e983250287eced8c493332ece26da29c73b8ca0fc7
package-lock.json https://github.com/feast-dev/feast/pull/6292/files#diff-86dd4842508e2d279ac0a1b9a660d6494b53ee7ccf321d641c0421cb15202fa6
FeastUISansProviders.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-c9c6c173af32aac99f2854a1e3406cf9eb0d059c514dafce9b351f7147b672c4
FeaturesInServiceDisplay.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-745d0caee87ff0838173c3479b342f8c52fbe449faf26eacf3d56704aed7dbce
FeaturesListDisplay.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-5ffa57e8dea8bc6b6ed2a6efc5b9cac7d27b2429f901434027913ff2050c53d0
ObjectsCountStats.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-d8b1550e98da0187877f57644b2a2b157f6c9032fda6b5c801263cd7a60ac964
RegistryVisualization.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-53b085fb8a12fb7ecc197a161be85b72da5a6eab9cd8db745a060099bcba9946
RegistryVisualizationTab.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-2bf5b490a28260ef7a9e456aa407f32623431e453e1c286d25b3e604778f053a
LabelViewIcon.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-3616ab609dd99645788beb3fe49ce81ba86edb17e0858ac338e06641d37eb7fa
useFCOExploreSuggestions.ts https://github.com/feast-dev/feast/pull/6292/files#diff-b86c3ab85d1fa50e3e53a302a03565e1273258bd71f47fd35d59b32551e98b77
handlers.ts https://github.com/feast-dev/feast/pull/6292/files#diff-874583954078fd50a069ba487cbc3fd55a564cae59cb3f2a1d7cc1eb24c2bb32
Layout.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-d321196d2d387d83c5438995f35f6a725d094063018d72a820fe2a8774927f77
ProjectOverviewPage.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-82cef63cba0f1479b9225c8fe01d5e1a09a5077d154c312beb1727d1b3c4bf91
Sidebar.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-194247ab8a387948430f05d1ae0056b31fa6df0f552ddfeb32cdf9cb16992723
DataSourceOverviewTab.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-c9e3c929e39faecc39968671ad7ba0a196b95fc6f9e2f7bc80c8844828ec21b5
DataSourcesListingTable.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-177b8f567f829a9876c3f9252d507a36d68126486c1f5568bad6eb1277d62782
RequestDataSourceSchemaTable.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-a2e1201d4d501b33a293b7ee07b10ec9f4708105ac5310e03ab4e4dfc191b29a
useLoadDataSource.ts https://github.com/feast-dev/feast/pull/6292/files#diff-c2886bf53fc93bdcf19596af29388e1de62e6026736c239288d53892a60ce9dc
ClassificationTab.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-a31cb88055f8f6ddcf149ff50b3d5a674759489a0e129fdb7f808ea838171b46
DocumentLabelingPage.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-4c9b1b8d28a57d4d9353d94bbaee01cf4d0f41265370717ebc595c996e7e4892
RagTab.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-a21170d9db6a701986c1e43d9139ec01bcb6a1f0fce118b7b594d4e5be5d4eef
index.ts https://github.com/feast-dev/feast/pull/6292/files#diff-faa62e80adc2d61e72af79a7960dc9acdfbd0f1d010dfc5257c47050d2e9ce7b
EntitiesListingTable.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-3aa45096d42bf0c647be8ddb16d7b648e85e2b2823298eba06b6a85dca51d1d8
EntityOverviewTab.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-0340e1ad80bbf15041c691e30dbe5ef9e8976d017885699076ab422839f48d53
FeatureViewEdgesList.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-f1d8e5871522eba90c1e18bb5a289b7bea402670ec98dae00f4fc7d335f19330
FeatureServiceOverviewTab.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-cc421d126bdfa1c4f90323bf6dedd85f73b8d480ebc078a0886f72c3a1b2ccf4
FeatureViewVersionsTab.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-9d05a865e09245e874c9e793f759b55c4ee881095cc38dfd64067167792bc0b2
FeatureViewProjectionDisplayPanel.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-016d3b06b2e5af7db8f63aaa97494ed9ce7f1584e61309ad9093e4ff566c77d3
FeatureListPage.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-0a113c0d53e226a8a03c48d1d3a881cdd90f8eb1a9a3d08ab8838f2755bb1198
FeatureOverviewTab.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-22c4b9af42295b6c646a504bf618c4aa367d09277b3ed605de86b74c3a1e0e49
ActiveLearningTab.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-6f9499a08fd2dd2a004975e9446bb3807f7f42a86e66e11924da0ee79f9d0078
AnnotateTab.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-aa9929883c185d892b6ce7681f14e339d5648b1924591355281de57c0f610dbc
BatchUploadTab.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-e5b49f60b3a64e192283124a10dbd8bdeac4d24c31d9ca463080f256ffce9cd5
ClassificationMethod.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-95e5dfc383cc30799091d626dd39c2668b0a1e494c03f249c6df9a47d8bb1b3d
EntityFormMethod.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-c8372548215a2ab7b767add9b526eba4ee583ec5191fec58a843a9c51fc79ef6
Index.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-6e83d565933595ab3c67fad2d3e62131fd1025d703cdc2dc15286ce4ea1cb34d
IntegrationsTab.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-6d58351240eede6ac7b58d61f308253ec16f19f793c9c19c074c215784c8a87b
LabelBrowseTab.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-beed210e8a764870e723aa9e24a6e3eac68b1759669c04cb363b1e67730ba1a7
LabelViewInstance.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-0cebf9c30d9c75c59d28573a1977fd5ffa6f15a4b2ec04eeb057e6dccc9af8f9
LabelViewLineageTab.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-8a3c1b1cb5be9e78d89dd4d0941a81804e002c8264809e2c4f4827ca17f3f072
LabelViewOverviewTab.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-ff07debd84938ce3f7921134edc93cd3b4e9f73ddffe43dc57236906d09805f2
QualityDashboardTab.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-5419be0abecee696521700e3041fddd0f3e4eba78b25184dff0485c025531096
RagLabelingMethod.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-5824f94657e3cfa8feea97a970262f02f95ec359496ea01c739a09680120b799
TrainingExportTab.tsx https://github.com/feast-dev/feast/pull/6292/files#diff-0dd6da611fae136473574fc68aecaeae4fd3f699ef89f597ca00496d270f6140
useAnnotationConfig.ts https://github.com/feast-dev/feast/pull/6292/files#diff-e26e1607d8f8ec816a796813657ab493e692457f15bfa491db9cc3b63d4fc14f
useLoadLabelView.ts https://github.com/feast-dev/feast/pull/6292/files#diff-51e9533dc6d3814a6d6135f33c2c310b85dcbedbd23726e85029127979f8f077
mergedFVTypes.ts https://github.com/feast-dev/feast/pull/6292/files#diff-fef76c57e5d0ca7ce980fd26da36354800e158846ed155e78064d387f1b393b1
parseEntityRelationships.ts https://github.com/feast-dev/feast/pull/6292/files#diff-4edd9dd2ce4cda773787ef7704598ef179d95dda8e0417f655b97627eb2872cb
types.ts https://github.com/feast-dev/feast/pull/6292/files#diff-21adf36b88bfe25029764bc0f991f3ecd6be6ca9ce51d4390945cba4746ec474
useLoadRegistry.ts https://github.com/feast-dev/feast/pull/6292/files#diff-550825eadc9feedf2cdc06b8ddf862b487632e93811c9ca84471c6c551b94294
useResourceQuery.ts https://github.com/feast-dev/feast/pull/6292/files#diff-bf1fa21d87f2bd05a7c65a223832671a829df8dab701c5dfb0fc4d9e8c144b42
timestamp.ts https://github.com/feast-dev/feast/pull/6292/files#diff-61ca26f4c10b55493aab4f79e7c7aeeee410356c66394db0cbfe37c9bab89862
yarn.lock https://github.com/feast-dev/feast/pull/6292/files#diff-3a968206d6de2fecfc5dacd7d94bab7744c9f5d5c999a816164d95cbc135c316
https://github.com/feast-dev/feast/blob/master/CODEOWNERS#L4
docs/SUMMARY.mdhttps://github.com/feast-dev/feast/pull/6292/files#diff-492f4fe6d732168c58e78f2a627614dc59f1e41a5d12da3d8347d3957e9673f6
View file https://github.com/ntkathole/feast/blob/bc4ea5e630c48be7df5bf09c955dc13ae4c5bb67/docs/SUMMARY.md
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/feast-dev/feast/pull/6292/{{ revealButtonHref }}
https://github.com/feast-dev/feast/pull/6292/files#diff-492f4fe6d732168c58e78f2a627614dc59f1e41a5d12da3d8347d3957e9673f6
https://github.com/feast-dev/feast/pull/6292/files#diff-492f4fe6d732168c58e78f2a627614dc59f1e41a5d12da3d8347d3957e9673f6
https://github.com/feast-dev/feast/blob/master/CODEOWNERS#L4
docs/adr/ADR-0012-label-view.mdhttps://github.com/feast-dev/feast/pull/6292/files#diff-91e0f6671892d11591401da86e1f71ed4b0948543656d5cd5ec6d5a98cd0b25c
View file https://github.com/ntkathole/feast/blob/bc4ea5e630c48be7df5bf09c955dc13ae4c5bb67/docs/adr/ADR-0012-label-view.md
Open in desktop https://desktop.github.com
Please reload this pagehttps://github.com/feast-dev/feast/pull/6292/files
https://github.com/feast-dev/feast/blob/master/CODEOWNERS#L4
docs/adr/feature-view-versioning.md → docs/adr/rfc-feature-view-versioning.mdhttps://github.com/feast-dev/feast/pull/6292/files#diff-46984796f835391baffe7ede495e3b2195236642d984770b68d9af47cdd0c41c
View file https://github.com/ntkathole/feast/blob/bc4ea5e630c48be7df5bf09c955dc13ae4c5bb67/docs/adr/rfc-feature-view-versioning.md
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/feast-dev/feast/pull/6292/{{ revealButtonHref }}
https://github.com/feast-dev/feast/pull/6292/files#diff-46984796f835391baffe7ede495e3b2195236642d984770b68d9af47cdd0c41c
https://github.com/feast-dev/feast/blob/master/CODEOWNERS#L4
docs/getting-started/concepts/label-view.mdhttps://github.com/feast-dev/feast/pull/6292/files#diff-c7ef94f0566a572c2223a0f7ca6a5fd1813308b75154188d4acbb068c8521836
View file https://github.com/ntkathole/feast/blob/bc4ea5e630c48be7df5bf09c955dc13ae4c5bb67/docs/getting-started/concepts/label-view.md
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/feast-dev/feast/pull/6292/{{ revealButtonHref }}
Please reload this pagehttps://github.com/feast-dev/feast/pull/6292/files
Please reload this pagehttps://github.com/feast-dev/feast/pull/6292/files
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.