feat(online-store): expose created/ingestion timestamp in online resp… - #6795
Open
Michie-hub wants to merge 1 commit into
Open
feat(online-store): expose created/ingestion timestamp in online resp…#6795Michie-hub wants to merge 1 commit into
Michie-hub wants to merge 1 commit into
Conversation
Michie-hub
requested review from
haoxu0,
nquinn408 and
shuchu
and removed request for
a team
August 28, 2026 13:09
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What this PR does / why we need it:
Exposes the ingestion/created timestamp (
created_ts) alongside feature values and event timestamps inGetOnlineFeaturesResponse, allowing callers to inspect feature freshness and ingestion lag viato_dict(include_created_timestamps=True)andto_df(include_created_timestamps=True).Summary of Changes:
repeated google.protobuf.Timestamp created_timestamps = 4;toFeatureVectorinServingService.proto.online_readreturn signature inonline_store.pyto support 3-tuples:(event_ts, values, created_ts).created_tsextraction insqlite.pyand maintained 3-tuple unpacking compatibility across store adapters._populate_response_from_feature_datainutils.pyto populatecreated_timestampsintoFeatureVector.include_created_timestampsparameter toOnlineResponse.to_dict()andOnlineResponse.to_df()inonline_response.py.Which issue(s) this PR fixes:
Fixes #1579
Checks
git commit -s)Testing Strategy
Misc
Unit test added in
sdk/python/tests/unit/test_online_response.pyverifying both dictionary and DataFrame outputs with created timestamps.