René's URL Explorer Experiment


Title: Feature Request: Add configurable batching for offline store writes in Feature Server push API · Issue #5683 · feast-dev/feast · GitHub

Open Graph Title: Feature Request: Add configurable batching for offline store writes in Feature Server push API · Issue #5683 · feast-dev/feast

X Title: Feature Request: Add configurable batching for offline store writes in Feature Server push API · Issue #5683 · feast-dev/feast

Description: Is your feature request related to a problem? Please describe. Currently, when using the Feature Server's push API with streaming ingestion, offline store writes are not automatically batched. Users must either: Manually batch calls to w...

Open Graph Description: Is your feature request related to a problem? Please describe. Currently, when using the Feature Server's push API with streaming ingestion, offline store writes are not automatically batched. User...

X Description: Is your feature request related to a problem? Please describe. Currently, when using the Feature Server's push API with streaming ingestion, offline store writes are not automatically batched. ...

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

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Feature Request: Add configurable batching for offline store writes in Feature Server push API","articleBody":"## Is your feature request related to a problem? Please describe.\n\nCurrently, when using the Feature Server's push API with streaming ingestion, offline store writes are not automatically batched. Users must either:\n1. Manually batch calls to `write_to_offline_store()` in their application code\n2. Set up a separate stream processing pipeline (e.g., Spark with Kafka) to handle batching\n\nFor users receiving high-frequency feature updates (e.g., 100 requests/second) who want to write to both online and offline stores, this creates unnecessary complexity and can lead to inefficient writes to offline stores like BigQuery or Parquet.\n\n## Describe the solution you'd like\n\nAdd configurable automatic batching for offline store writes in the Feature Server, similar to how the Spark-Kafka processor handles batching via the `processingTime` parameter.\n\n**Proposed configuration options:**\n- `offline_write_batch_size`: Number of records to buffer before flushing to offline store\n- `offline_write_batch_interval`: Time interval (seconds) to wait before flushing to offline store\n- Flush on whichever threshold is reached first\n\n**Example configuration in `feature_store.yaml`:**\n```yaml\nonline_store:\n  type: redis\n  ...\noffline_store:\n  type: bigquery\n  ...\nfeature_server:\n  offline_write_batching:\n    enabled: true\n    batch_size: 1000\n    batch_interval_seconds: 30\n```\n\n## Describe alternatives you've considered\n\n1. **Current approach with stream processor**: Users can set up a Spark Structured Streaming job that reads from Kafka and uses `processingTime` to control batching. This works but requires additional infrastructure and complexity.\n\n2. **Manual batching in application code**: Users can implement their own buffering logic before calling `write_to_offline_store()`, but this duplicates effort across different applications.\n\n3. **Use only online store**: Skip offline store writes entirely during streaming and rely on periodic materialization from batch sources, but this loses the real-time historical logging capability.\n\n## Additional context\n\nThis feature request came from a community discussion about streaming ingestion patterns. When using `PushMode.ONLINE_AND_OFFLINE` with high-frequency updates, the lack of automatic batching can result in:\n- Excessive API calls to offline stores (one per feature update)\n- Higher costs for cloud data warehouses like BigQuery\n- Increased latency for write operations\n\n**Current implementation reference:**\nThe Spark-Kafka processor already implements batching at `sdk/python/feast/infra/contrib/spark_kafka_processor.py:134-173` using `foreachBatch`. Similar batching logic could be added to the Feature Server's push endpoint.\n\n**Benefits:**\n- Simplified architecture for users who want real-time serving + historical logging\n- Reduced costs for offline store writes\n- Better alignment with best practices for data warehouse ingestion\n- No breaking changes (feature would be opt-in via configuration)\n\nRelated code:\n- Feature Server: `sdk/python/feast/feature_store.py:1786-1828` (`write_to_offline_store`)\n- Spark batching example: `sdk/python/feast/infra/contrib/spark_kafka_processor.py:134-173`\n\ncc @feast-dev/maintainers","author":{"url":"https://github.com/devin-ai-integration[bot]","@type":"Person","name":"devin-ai-integration[bot]"},"datePublished":"2025-10-20T13:24:26.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":3},"url":"https://github.com/5683/feast/issues/5683"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:1f582cc2-3926-5ac5-6bdc-67a42c25ad9b
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idDB80:3790:4BE75F2:65A7EC3:696E0035
html-safe-nonceee67df2dca64e6a8910132772e8072222c5f86b381c8ab6010799bf6156a9a6c
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJEQjgwOjM3OTA6NEJFNzVGMjo2NUE3RUMzOjY5NkUwMDM1IiwidmlzaXRvcl9pZCI6IjI0NTkwODYxNDcwMjM2NjcyNTMiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac1cc8392e92d5810ebd55fb1589b45155136f7e59db0bf3e5e4fe166ec8a9cedc
hovercard-subject-tagissue:3532442461
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/5683/issue_layout
twitter:imagehttps://opengraph.githubassets.com/410716ee961caef72efdc329adfe30b0cf21f50c75d4ea25be7664c7d1b609b2/feast-dev/feast/issues/5683
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/410716ee961caef72efdc329adfe30b0cf21f50c75d4ea25be7664c7d1b609b2/feast-dev/feast/issues/5683
og:image:altIs your feature request related to a problem? Please describe. Currently, when using the Feature Server's push API with streaming ingestion, offline store writes are not automatically batched. User...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamedevin-ai-integration[bot]
hostnamegithub.com
expected-hostnamegithub.com
None4922b452d03cd8dbce479d866a11bc25b59ef6ee2da23aa9b0ddefa6bd4d0064
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
release7e5ae23c70136152637ceee8d6faceb35596ec46
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/feast-dev/feast/issues/5683#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Ffeast-dev%2Ffeast%2Fissues%2F5683
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%2Fissues%2F5683
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/5683
Reloadhttps://github.com/feast-dev/feast/issues/5683
Reloadhttps://github.com/feast-dev/feast/issues/5683
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/issues/5683
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
New issuehttps://github.com/login?return_to=https://github.com/feast-dev/feast/issues/5683
New issuehttps://github.com/login?return_to=https://github.com/feast-dev/feast/issues/5683
#5729https://github.com/feast-dev/feast/pull/5729
Feature Request: Add configurable batching for offline store writes in Feature Server push APIhttps://github.com/feast-dev/feast/issues/5683#top
#5729https://github.com/feast-dev/feast/pull/5729
https://github.com/jfw-ppi
https://github.com/apps/devin-ai-integration
https://github.com/apps/devin-ai-integration
devin-ai-integrationhttps://github.com/apps/devin-ai-integration
on Oct 20, 2025https://github.com/feast-dev/feast/issues/5683#issue-3532442461
jfw-ppihttps://github.com/jfw-ppi
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.