-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Ingestion should fail immediately when there are no valid stores #12
Comments
@zhilingc I think you misunderstood the code it's not a "bandaid" :) It does fail at graph build time if the feature references a store that is not found in the specs service. |
Sorry I misread this issue. The fix is in PR #15. |
It's a band-aid because if someone alters the DB the job will fail since the checks are only at feature registration time. And nice! If it works on remote flink we're golden :) |
This should stop those self imposed DoS events every 10 minutes too. |
We can close this now? |
Yep. Thanks for the hard work :) |
…_2020-06-01 Rebase to Feast v0.5.0
Expected Behavior
Starting a job with invalid stores (e.g. using redis as a warehouse store) should not be allowed, and should fail quickly - ideally at the graph building step of ingestion.
Current Behavior
Starting a job with invalid stores will successfully send the job to the runner, which will run to completion (or indefinitely, in the case of streaming jobs). The errors will be logged, but the pipeline will run with no problems.
Steps to reproduce
Possible Solution
PR #11 is a band-aid solution to this problem: it checks the store types at registration, ensuring that a feature is unable to use a serving store for warehousing, but ideally ingestion error out properly during graph building.
The text was updated successfully, but these errors were encountered: