René's URL Explorer Experiment


Title: `RemoteOnlineStore.online_write_batch` hardcodes timestamp column names (`created`/`event_timestamp`), breaking remote `write_to_online_store` for feature views with a custom `created_timestamp_column` · Issue #6595 · feast-dev/feast · GitHub

Open Graph Title: `RemoteOnlineStore.online_write_batch` hardcodes timestamp column names (`created`/`event_timestamp`), breaking remote `write_to_online_store` for feature views with a custom `created_timestamp_column` · Issue #6595 · feast-dev/feast

X Title: `RemoteOnlineStore.online_write_batch` hardcodes timestamp column names (`created`/`event_timestamp`), breaking remote `write_to_online_store` for feature views with a custom `created_timestamp_column` · Issue #6595 · feast-dev/feast

Description: Expected Behavior Remote write_to_online_store should round-trip regardless of the feature view's timestamp column names. Writing works for a local provider (the full dataframe is converted in-process using the source's configured column...

Open Graph Description: Expected Behavior Remote write_to_online_store should round-trip regardless of the feature view's timestamp column names. Writing works for a local provider (the full dataframe is converted in-proc...

X Description: Expected Behavior Remote write_to_online_store should round-trip regardless of the feature view's timestamp column names. Writing works for a local provider (the full dataframe is converted in-...

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

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"`RemoteOnlineStore.online_write_batch` hardcodes timestamp column names (`created`/`event_timestamp`), breaking remote `write_to_online_store` for feature views with a custom `created_timestamp_column`","articleBody":"## Expected Behavior\n\nRemote `write_to_online_store` should round-trip regardless of the feature view's\ntimestamp column names. Writing works for a local provider (the full dataframe is\nconverted in-process using the source's configured column names) and should behave the\nsame when the online store is remote (`online_store: { type: remote }` / the feature\nserver `/write-to-online-store` endpoint).\n\n## Current Behavior\n\nWriting to the online store through the remote path fails on the server with:\n\n```\nKeyError: 'Field \"created_at\" does not exist in schema'\n```\n\nwhenever the feature view's batch source sets `created_timestamp_column` (or\n`timestamp_field`) to anything other than the literals `\"created\"` /\n`\"event_timestamp\"`.\n\nRoot cause — `RemoteOnlineStore.online_write_batch` serializes the timestamps into\n**hardcoded** column names when building the request body:\n\n```python\n# sdk/python/feast/infra/online_stores/remote.py  (online_write_batch)\ncolumnar_data[\"event_timestamp\"].append(_to_naive_utc(event_ts).isoformat())\ncolumnar_data[\"created\"].append(\n    _to_naive_utc(created_ts).isoformat() if created_ts else None\n)\nreq_body = {\"feature_view_name\": table.name, \"df\": columnar_data, ...}\npost_remote_online_write(config=config, req_body=req_body)\n```\n\nThe server rebuilds the dataframe verbatim and runs the standard conversion:\n\n```python\n# sdk/python/feast/feature_server.py\ndf = pd.DataFrame(request.df)     # columns: entities, features, event_timestamp, created\nstore.write_to_online_store(..., df=df)\n# -\u003e _prep_rows_to_write_for_ingestion -\u003e _convert_arrow_to_proto\n```\n\nbut `_convert_arrow_fv_to_proto` (in `utils.py`) resolves the created-timestamp column\nby the **feature-view-configured name**, not the hardcoded `\"created\"`:\n\n```python\nif feature_view.batch_source.created_timestamp_column:\n    created_timestamps = [\n        ... table.column(\n            feature_view.batch_source.created_timestamp_column   # e.g. \"created_at\"\n        ) ...\n    ]\n```\n\nSo the client emits the column as `created` and the server looks it up as `created_at`\n→ `KeyError`. The timestamp **value is not lost** — it is on the wire under `created`;\nit is simply **labeled with a name the server does not look up**. The client write and\nthe server-side conversion disagree on the timestamp column names.\n\nServer-side traceback:\n\n```\nFile \".../feast/feature_server.py\", in write_to_online_store\nFile \".../feast/feature_store.py\", in write_to_online_store\nFile \".../feast/infra/passthrough_provider.py\", in _prep_rows_to_write_for_ingestion\nFile \".../feast/utils.py\", in _convert_arrow_fv_to_proto\nKeyError: 'Field \"created_at\" does not exist in schema'\n```\n\n## Steps to reproduce\n\n1. Define a feature view whose batch source uses non-default timestamp column names,\n   e.g. `PostgreSQLSource(timestamp_field=\"event_timestamp\",\n   created_timestamp_column=\"created_at\", ...)`.\n2. Point a client at a remote online store: `online_store: { type: remote, path:\n   \u003cfeature-server-url\u003e }` (or call the feature server `/write-to-online-store`).\n3. `store.write_to_online_store(fv_name, df=df)` where `df` includes the `created_at`\n   column. The client-side conversion succeeds; the server returns HTTP 500 with the\n   `KeyError` above. The same write against a local provider succeeds.\n\n### Specifications\n\n- Version: 0.64.0 (client and feature server)\n- Platform: Linux, Python 3.13\n- Subsystem: remote online store (`feast/infra/online_stores/remote.py`) /\n  Python feature server `/write-to-online-store` (`feast/feature_server.py`) /\n  `_convert_arrow_fv_to_proto` (`feast/utils.py`)\n\n## Possible Solution\n\nIn `RemoteOnlineStore.online_write_batch`, label the timestamp columns using the\nfeature view's configured fields instead of hardcoded literals:\n\n```python\nevent_col   = table.batch_source.timestamp_field or \"event_timestamp\"\ncreated_col = table.batch_source.created_timestamp_column or \"created\"\ncolumnar_data[event_col].append(...)\nif created_col:\n    columnar_data[created_col].append(...)\n```\n\nAlternatively, have the server map the well-known `event_timestamp` / `created`\nrequest columns onto the FV's configured names before conversion. Fixing the client to\nemit the configured names is the smaller change and keeps the request self-describing.\n","author":{"url":"https://github.com/BigyaPradhan","@type":"Person","name":"BigyaPradhan"},"datePublished":"2026-07-09T17:36:13.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/6595/feast/issues/6595"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:f80dceb8-dc27-a242-15ac-d00a7e761760
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idDCEC:18F0F4:E18C5E:12D7723:6A51BA2A
html-safe-nonce480ec970a82477df62b2a1ae24ecf6716f1df4145c1f296b8005d88f4eefe415
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJEQ0VDOjE4RjBGNDpFMThDNUU6MTJENzcyMzo2QTUxQkEyQSIsInZpc2l0b3JfaWQiOiI3NDI4MTg2MTg4MzU0MjcxNzg2IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmacfe8151c124a3065a1d8fcc74e05a44d7dcc1098268d1b773cf5c739219a833c9
hovercard-subject-tagissue:4848517934
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/6595/issue_layout
twitter:imagehttps://opengraph.githubassets.com/00fd97115b34d6962b7409c448fb794d7b8b03e69e4b2fba55fb595663574146/feast-dev/feast/issues/6595
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/00fd97115b34d6962b7409c448fb794d7b8b03e69e4b2fba55fb595663574146/feast-dev/feast/issues/6595
og:image:altExpected Behavior Remote write_to_online_store should round-trip regardless of the feature view's timestamp column names. Writing works for a local provider (the full dataframe is converted in-proc...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameBigyaPradhan
hostnamegithub.com
expected-hostnamegithub.com
Noneb9a586c06a05a7a86fc7e3f4dbd03e42f6869085879aa184aa6369456dbd50fb
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
release7aed05249554b889eb33d002851a973eebcc7e91
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/feast-dev/feast/issues/6595#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Ffeast-dev%2Ffeast%2Fissues%2F6595
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%2F6595
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/6595
Reloadhttps://github.com/feast-dev/feast/issues/6595
Reloadhttps://github.com/feast-dev/feast/issues/6595
Please reload this pagehttps://github.com/feast-dev/feast/issues/6595
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
#6596https://github.com/feast-dev/feast/pull/6596
RemoteOnlineStore.online_write_batch hardcodes timestamp column names (created/event_timestamp), breaking remote write_to_online_store for feature views with a custom created_timestamp_columnhttps://github.com/feast-dev/feast/issues/6595#top
#6596https://github.com/feast-dev/feast/pull/6596
https://github.com/BigyaPradhan
BigyaPradhanhttps://github.com/BigyaPradhan
on Jul 9, 2026https://github.com/feast-dev/feast/issues/6595#issue-4848517934
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.