-
Notifications
You must be signed in to change notification settings - Fork 1.2k
feat: Added batching to feature server /push to offline store (#5683) #5729
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
feat: Added batching to feature server /push to offline store (#5683) #5729
Conversation
|
|
||
| from feast.repo_config import FeastConfigBaseModel | ||
|
|
||
| class OfflinePushBatchingConfig(FeastConfigBaseModel): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think having a config is fine but do we actually need it? we probably could have just passed these as optional args, no?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're right, I just noticed the FeatureLoggingConfig with 5 fields and decided that for 3 fields it would be justified to also add a config. Do you want me to refactor it to use optional args?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think having a config is fine but do we actually need it? we probably could have just passed these as optional args, no?
I refactored it as you wanted, so that there is no config. @franciscojavierarceo
494912d to
107bf09
Compare
89a3da0 to
c980db9
Compare
…dev#5683) Signed-off-by: Jacob Weinhold <[email protected]> fix: formatting,l int errors (feast-dev#5683) Signed-off-by: Jacob Weinhold <[email protected]>
Signed-off-by: Jacob Weinhold <[email protected]>
…t-dev#5724) Signed-off-by: Jacob Weinhold <[email protected]>
c980db9 to
04dc34f
Compare
What this PR does / why we need it:
Added batching configuration for feature_servers /push endpoint for offline store writes
Which issue(s) this PR fixes:
Fixes #5683