René's URL Explorer Experiment


Title: feat: Implemented Tiling Support for Time-Windowed Aggregations by ntkathole · Pull Request #5724 · feast-dev/feast · GitHub

Open Graph Title: feat: Implemented Tiling Support for Time-Windowed Aggregations by ntkathole · Pull Request #5724 · feast-dev/feast

X Title: feat: Implemented Tiling Support for Time-Windowed Aggregations by ntkathole · Pull Request #5724 · feast-dev/feast

Description: What this PR does / why we need it: This PR implements tiling for computing time-windowed aggregations efficiently by pre-aggregating data into small, time-bucketed units (tiles) that can be reused across multiple queries. Instead of scanning all raw events for each window, it: Pre-aggregates data into small time buckets (tiles) Computes windowed aggregations by subtracting tiles: window_at_T = tile_at_T - tile_at_(T-window_size) Stores intermediate representations (IRs) for holistic aggregations (avg, std, var) to enable correct merging Integrates tiling into Spark and Ray compute engines for StreamFeatureView Sawtooth Window Tiling Tile Generation: Events bucketed into hop-sized intervals (e.g., 1-minute tiles) Cumulative Aggregation: Each tile contains cumulative sum/count from start Window Computation: Windowed aggregation = tile_at_T - tile_at_(T-window_size) IR Handling: For holistic aggs, IRs subtracted separately, then final value recomputed Enable Tiling in StreamFeatureView sales_features = StreamFeatureView( name="sales_features", entities=[customer], source=kafka_source, aggregations=[ Aggregation( column="amount", function="avg", time_window=timedelta(minutes=5), ), Aggregation( column="amount", function="sum", time_window=timedelta(minutes=5), ), ], timestamp_field="event_timestamp", enable_tiling=True, # Enable tiling optimization tiling_hop_size=timedelta(minutes=1), # Generate tiles every 1 minute ) Architecture ┌─────────────────────────────────────────────────────────────┐ │ StreamFeatureView (enable_tiling=True) │ └────────────────────────┬────────────────────────────────────┘ │ ┌───────────────┴───────────────┐ │ │ ┌────▼────┐ ┌────▼────┐ │ Spark │ │ Ray │ │ Node │ │ Node │ └────┬────┘ └────┬────┘ │ │ │ Convert to pandas │ ▼ ▼ ┌─────────────────────────────────────────────────────────────┐ │ Tiling Logic. │ │ ┌──────────────────────────────────────────────────────┐ │ │ │ orchestrator.apply_sawtooth_window_tiling() │ │ │ │ - Group by entity + hop interval │ │ │ │ - Compute cumulative aggregations (tiles) │ │ │ │ - Output: Cumulative tiles at each hop │ │ │ └──────────────────────┬───────────────────────────────┘ │ │ │ │ │ ┌──────────────────────▼───────────────────────────────┐ │ │ │ tile_subtraction.convert_cumulative_to_windowed() │ │ │ │ - Subtract tiles: window = tile_T - tile_(T-W) │ │ │ │ - Recompute holistic aggs from IRs │ │ │ │ - Output: Windowed aggregations │ │ │ └──────────────────────┬───────────────────────────────┘ │ │ │ │ │ ┌──────────────────────▼───────────────────────────────┐ │ │ │ tile_subtraction.deduplicate_keep_latest() │ │ │ │ - Keep latest window per entity │ │ │ └──────────────────────────────────────────────────────┘ │ └─────────────────────────┬───────────────────────────────────┘ │ Convert back to engine format ▼ ┌───────────────┐ │ Online Store │ │ │ └───────────────┘

Open Graph Description: What this PR does / why we need it: This PR implements tiling for computing time-windowed aggregations efficiently by pre-aggregating data into small, time-bucketed units (tiles) that can be reused...

X Description: What this PR does / why we need it: This PR implements tiling for computing time-windowed aggregations efficiently by pre-aggregating data into small, time-bucketed units (tiles) that can be reused...

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

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:049ecfe5-2783-dc7a-ef3b-bb2292bef832
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idC2D2:19A1E9:8E3121C:BDAC0DC:696E2123
html-safe-noncee04aecaf2e20bd2b36dbbdc0857965a9bd845c8831b632a61e25094c9b4f78c4
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDMkQyOjE5QTFFOTo4RTMxMjFDOkJEQUMwREM6Njk2RTIxMjMiLCJ2aXNpdG9yX2lkIjoiNDI0NTk1MTQ0NzM1OTY5MzA5MSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacd2c56e2e2ad4066f75b82cba0b341e4b701234625ee8f85ff8b548501e16e807
hovercard-subject-tagpull_request:3014978473
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/5724/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: This PR implements tiling for computing time-windowed aggregations efficiently by pre-aggregating data into small, time-bucketed units (tiles) that can be reused...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None2fbe8cba5e260284c10af515699ff9bb2d6ace05ab6c2e2e585b71d93b2812c3
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
release7fb3bc5c995a876085291706b75cf9b08900c338
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/feast-dev/feast/pull/5724/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Ffeast-dev%2Ffeast%2Fpull%2F5724%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
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
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
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/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%2F5724%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/5724/files
Reloadhttps://github.com/feast-dev/feast/pull/5724/files
Reloadhttps://github.com/feast-dev/feast/pull/5724/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.2k https://github.com/login?return_to=%2Ffeast-dev%2Ffeast
Star 6.6k https://github.com/login?return_to=%2Ffeast-dev%2Ffeast
Code https://github.com/feast-dev/feast
Issues 176 https://github.com/feast-dev/feast/issues
Pull requests 58 https://github.com/feast-dev/feast/pulls
Discussions https://github.com/feast-dev/feast/discussions
Actions https://github.com/feast-dev/feast/actions
Security Uh oh! There was an error while loading. Please reload this page. https://github.com/feast-dev/feast/security
Please reload this pagehttps://github.com/feast-dev/feast/pull/5724/files
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 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
franciscojavierarceohttps://github.com/franciscojavierarceo
feast-dev:masterhttps://github.com/feast-dev/feast/tree/master
ntkathole:aggregation_tilinghttps://github.com/ntkathole/feast/tree/aggregation_tiling
Conversation 28 https://github.com/feast-dev/feast/pull/5724
Commits 3 https://github.com/feast-dev/feast/pull/5724/commits
Checks 17 https://github.com/feast-dev/feast/pull/5724/checks
Files changed https://github.com/feast-dev/feast/pull/5724/files
Please reload this pagehttps://github.com/feast-dev/feast/pull/5724/files
feat: Implemented Tiling Support for Time-Windowed Aggregations https://github.com/feast-dev/feast/pull/5724/files#top
Show all changes 3 commits https://github.com/feast-dev/feast/pull/5724/files
0df22f3 feat: Implemented tiling support ntkathole Nov 4, 2025 https://github.com/feast-dev/feast/pull/5724/commits/0df22f3b465e18a8831bfd02ffe30b7be58ddc07
712d5f9 chore: Created Aggregation interface ntkathole Nov 21, 2025 https://github.com/feast-dev/feast/pull/5724/commits/712d5f92a419805c0e4501745b0443bf162ae910
49c2792 Merge branch 'master' into aggregation_tiling franciscojavierarceo Nov 28, 2025 https://github.com/feast-dev/feast/pull/5724/commits/49c2792be2cf8d848fac70005a7fedfd733c417d
Clear filters https://github.com/feast-dev/feast/pull/5724/files
Please reload this pagehttps://github.com/feast-dev/feast/pull/5724/files
Please reload this pagehttps://github.com/feast-dev/feast/pull/5724/files
README.md https://github.com/feast-dev/feast/pull/5724/files#diff-2886f21a10770fcf1e0b1119893e4f3311ed8ca63baa84153c8aaab2abb21d23
stream-feature-view.md https://github.com/feast-dev/feast/pull/5724/files#diff-c760d728e05e06bb48bc860402a34d9471d4395e0d53de85f4de7c4a60ad96f1
tiling.md https://github.com/feast-dev/feast/pull/5724/files#diff-8f4c8625d2fc06a44738bbe5ba0277ccd6e2681ea0c1829472e101a931be3f01
StreamFeatureView.proto https://github.com/feast-dev/feast/pull/5724/files#diff-e49d0fe5b8b9657a887c810e3867f2617e1300804b99b2af3cc36663df9b3475
__init__.py https://github.com/feast-dev/feast/pull/5724/files#diff-794af67ced1855fb3e80801c28bebe22bae240b71241a7857576353d4321e284
__init__.py https://github.com/feast-dev/feast/pull/5724/files#diff-9a90c33451e3d980ddf6b22b808f39d5900fffb298263ae1787ae63f206abe09
__init__.py https://github.com/feast-dev/feast/pull/5724/files#diff-7f668895b733d1075e9b37079e9d6152518c538263f654422769c4478facac0d
base.py https://github.com/feast-dev/feast/pull/5724/files#diff-848af5cd5a4f6c4e08b3c47ca8bdc165a28dd291ec0f3842e8a9a390f3a59bef
orchestrator.py https://github.com/feast-dev/feast/pull/5724/files#diff-0ce86f3b98e4422c0de206c4bd53ea9d152279218c2583a840b60fdc40548a02
tile_subtraction.py https://github.com/feast-dev/feast/pull/5724/files#diff-bef3c1427405606f84a458ee4b66305baff4d9e502f27d897aab2f090aef8387
feature_builder.py https://github.com/feast-dev/feast/pull/5724/files#diff-7dbd36a0a65f7a4f338a0175e4e211e8462bd5c768f57ded16f2cc77764146d0
nodes.py https://github.com/feast-dev/feast/pull/5724/files#diff-6fdca45fde388554088e465e79b3c9ced0e4b6e0f11f6f48f1765730f066b89c
feature_builder.py https://github.com/feast-dev/feast/pull/5724/files#diff-8aa2520bcd977bf623427c9bb0ae3ba0e873b9a4bafb326ee497a1498f10adc3
nodes.py https://github.com/feast-dev/feast/pull/5724/files#diff-ef3c9f42859de83e0118dbc9b53b79509853421c612aa0cf630f2f894ecd3538
StreamFeatureView_pb2.py https://github.com/feast-dev/feast/pull/5724/files#diff-eb6bc726fda2a7809044fb7c6ecd21fda79569521920afef37614d309f6df589
StreamFeatureView_pb2.pyi https://github.com/feast-dev/feast/pull/5724/files#diff-ae313d1be5df9ca52392118ae9f2dbe7274366ee67a4dfdf66ae9f24387b61f1
stream_feature_view.py https://github.com/feast-dev/feast/pull/5724/files#diff-2e4720ca136985a5a5d96582142a0aefa591c64c7ad8d90f8c179bda294da252
utils.py https://github.com/feast-dev/feast/pull/5724/files#diff-40c97723b8e9de73be769c43e3a3ef5f7623aef7d53aa05d77fcb7ab8d2aa5e0
test_nodes.py https://github.com/feast-dev/feast/pull/5724/files#diff-14f46882697758db9513f14cd05269f9f53441d45da69119cec6f7d0b20a6306
https://github.com/feast-dev/feast/blob/master/CODEOWNERS#L4
docs/getting-started/concepts/README.mdhttps://github.com/feast-dev/feast/pull/5724/files#diff-2886f21a10770fcf1e0b1119893e4f3311ed8ca63baa84153c8aaab2abb21d23
View file https://github.com/ntkathole/feast/blob/49c2792be2cf8d848fac70005a7fedfd733c417d/docs/getting-started/concepts/README.md
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/feast-dev/feast/pull/5724/{{ revealButtonHref }}
https://github.com/feast-dev/feast/pull/5724/files#diff-2886f21a10770fcf1e0b1119893e4f3311ed8ca63baa84153c8aaab2abb21d23
https://github.com/feast-dev/feast/pull/5724/files#diff-2886f21a10770fcf1e0b1119893e4f3311ed8ca63baa84153c8aaab2abb21d23
https://github.com/feast-dev/feast/blob/master/CODEOWNERS#L4
docs/getting-started/concepts/stream-feature-view.mdhttps://github.com/feast-dev/feast/pull/5724/files#diff-c760d728e05e06bb48bc860402a34d9471d4395e0d53de85f4de7c4a60ad96f1
View file https://github.com/ntkathole/feast/blob/49c2792be2cf8d848fac70005a7fedfd733c417d/docs/getting-started/concepts/stream-feature-view.md
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/feast-dev/feast/pull/5724/{{ revealButtonHref }}
https://github.com/feast-dev/feast/pull/5724/files#diff-c760d728e05e06bb48bc860402a34d9471d4395e0d53de85f4de7c4a60ad96f1
https://github.com/feast-dev/feast/blob/master/CODEOWNERS#L4
docs/getting-started/concepts/tiling.mdhttps://github.com/feast-dev/feast/pull/5724/files#diff-8f4c8625d2fc06a44738bbe5ba0277ccd6e2681ea0c1829472e101a931be3f01
View file https://github.com/ntkathole/feast/blob/49c2792be2cf8d848fac70005a7fedfd733c417d/docs/getting-started/concepts/tiling.md
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/feast-dev/feast/pull/5724/{{ revealButtonHref }}
https://github.com/feast-dev/feast/blob/master/CODEOWNERS#L9
protos/feast/core/StreamFeatureView.protohttps://github.com/feast-dev/feast/pull/5724/files#diff-e49d0fe5b8b9657a887c810e3867f2617e1300804b99b2af3cc36663df9b3475
View file https://github.com/ntkathole/feast/blob/49c2792be2cf8d848fac70005a7fedfd733c417d/protos/feast/core/StreamFeatureView.proto
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/feast-dev/feast/pull/5724/{{ revealButtonHref }}
https://github.com/feast-dev/feast/pull/5724/files#diff-e49d0fe5b8b9657a887c810e3867f2617e1300804b99b2af3cc36663df9b3475
https://github.com/feast-dev/feast/pull/5724/files#diff-e49d0fe5b8b9657a887c810e3867f2617e1300804b99b2af3cc36663df9b3475
https://github.com/feast-dev/feast/pull/5724/files#diff-e49d0fe5b8b9657a887c810e3867f2617e1300804b99b2af3cc36663df9b3475
https://github.com/feast-dev/feast/blob/master/CODEOWNERS#L10
sdk/python/feast/__init__.pyhttps://github.com/feast-dev/feast/pull/5724/files#diff-794af67ced1855fb3e80801c28bebe22bae240b71241a7857576353d4321e284
View file https://github.com/ntkathole/feast/blob/49c2792be2cf8d848fac70005a7fedfd733c417d/sdk/python/feast/__init__.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/feast-dev/feast/pull/5724/{{ revealButtonHref }}
https://github.com/feast-dev/feast/pull/5724/files#diff-794af67ced1855fb3e80801c28bebe22bae240b71241a7857576353d4321e284
https://github.com/feast-dev/feast/pull/5724/files#diff-794af67ced1855fb3e80801c28bebe22bae240b71241a7857576353d4321e284
https://github.com/feast-dev/feast/pull/5724/files#diff-794af67ced1855fb3e80801c28bebe22bae240b71241a7857576353d4321e284
https://github.com/feast-dev/feast/blob/master/CODEOWNERS#L10
sdk/python/feast/aggregation.py → sdk/python/feast/aggregation/__init__.pyhttps://github.com/feast-dev/feast/pull/5724/files#diff-9a90c33451e3d980ddf6b22b808f39d5900fffb298263ae1787ae63f206abe09
View file https://github.com/ntkathole/feast/blob/49c2792be2cf8d848fac70005a7fedfd733c417d/sdk/python/feast/aggregation/__init__.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/feast-dev/feast/pull/5724/{{ revealButtonHref }}
https://github.com/feast-dev/feast/pull/5724/files#diff-9a90c33451e3d980ddf6b22b808f39d5900fffb298263ae1787ae63f206abe09
https://github.com/feast-dev/feast/pull/5724/files#diff-9a90c33451e3d980ddf6b22b808f39d5900fffb298263ae1787ae63f206abe09
https://github.com/feast-dev/feast/blob/master/CODEOWNERS#L10
sdk/python/feast/aggregation/tiling/__init__.pyhttps://github.com/feast-dev/feast/pull/5724/files#diff-7f668895b733d1075e9b37079e9d6152518c538263f654422769c4478facac0d
View file https://github.com/ntkathole/feast/blob/49c2792be2cf8d848fac70005a7fedfd733c417d/sdk/python/feast/aggregation/tiling/__init__.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/feast-dev/feast/pull/5724/{{ revealButtonHref }}
HaoXuAIhttps://github.com/HaoXuAI
Nov 20, 2025https://github.com/feast-dev/feast/pull/5724/files#r2544491910
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
Please reload this pagehttps://github.com/feast-dev/feast/pull/5724/files
ntkatholehttps://github.com/ntkathole
Nov 21, 2025https://github.com/feast-dev/feast/pull/5724/files#r2550217059
Learn morehttps://docs.github.com/articles/managing-disruptive-comments/#hiding-a-comment
Please reload this pagehttps://github.com/feast-dev/feast/pull/5724/files
Please reload this pagehttps://github.com/feast-dev/feast/pull/5724/files
Please reload this pagehttps://github.com/feast-dev/feast/pull/5724/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.