| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
…RemoteOfflineStore Signed-off-by: Aniket Paluskar <apaluska@redhat.com>
Signed-off-by: Aniket Paluskar <apaluska@redhat.com>
… entity_df in offline server Signed-off-by: Aniket Paluskar <apaluska@redhat.com>
There was a problem hiding this comment.
Looks good! @aniketpalu can you please rebase to resolve conflicts ?
Sorry, something went wrong.
There was a problem hiding this comment.
Handle empty entity_df in offline server.
Sorry, something went wrong.
| datetime.fromisoformat(command["start_date"]) | ||
| ) | ||
| end_date = utils.make_tzaware(datetime.fromisoformat(command["end_date"])) | ||
| entity_df = pd.DataFrame( |
There was a problem hiding this comment.
We should not need to create dummy entity_df at all. We should handle empty(entity_df=None) entity_df for and in offline_store.get_historical_features which we are returning in this function.
Sorry, something went wrong.
There was a problem hiding this comment.
You are right, its not needed to create mock dataframe with timestamps, just had to make sure that empty_df is being passed.
Sorry, something went wrong.
Signed-off-by: Aniket Paluskar <apaluska@redhat.com>
Signed-off-by: Aniket Paluskar <apaluska@redhat.com>
# [0.57.0](v0.56.0...v0.57.0) (2025-11-13) ### Bug Fixes * Improve trino to feast type mapping with (real,varchar,timestamp,decimal) ([#5691](#5691)) ([f855ad2](f855ad2)) * Materialize API - ODFV views not looked-up (thinks views non existant) - crashes materialize ([#5716](#5716)) ([1b050b3](1b050b3)) * Support historical feature retrieval with start_date/end_date in RemoteOfflineStore ([#5703](#5703)) ([ad32756](ad32756)) * Thread safe Clickhouse offline store ([#5710](#5710)) ([5f446ed](5f446ed)) ### Features * Add annotations to cronjob CRDs ([#5701](#5701)) ([be6e6c2](be6e6c2)) * Add batch commit mode for MySQL OnlineStore ([#5699](#5699)) ([3cfe4eb](3cfe4eb)) * Add possibility to materialize only latest values, to increase performance ([#5713](#5713)) ([8d77b72](8d77b72)) * Support table format: Iceberg, Delta, and Hudi ([#5650](#5650)) ([2915ad1](2915ad1))
| Back | FazBrowse Home | New Git URL |
What this PR does / why we need it:
Problem
Root Cause
Changes
Which issue(s) this PR fixes:
Misc