-
Notifications
You must be signed in to change notification settings - Fork 13
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
Working Basic Checkpointing #385
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## 0.14 #385 +/- ##
=======================================
Coverage 98.10% 98.10%
=======================================
Files 150 150
Lines 5646 5646
=======================================
Hits 5539 5539
Misses 107 107
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
nodestream/pipeline/pipeline.py
Outdated
@@ -129,12 +130,15 @@ class Pipeline(ExpandsSchemaFromChildren): | |||
and running the steps in the pipeline. | |||
""" | |||
|
|||
__slots__ = ("steps", "step_outbox_size") | |||
__slots__ = ("steps", "step_outbox_size", "logger", "logger") |
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.
Misnamed the object_store slot here
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.
typos - thats why :smile
Fixed!
Note this is stacked on top of saga/checkpoints/object-store-apis
This logic wires object storage through the pipeline and into a testing extractor workload. This proves out the workflow and is working. Follow up PRs can include supporting this for more extractors.