-
Notifications
You must be signed in to change notification settings - Fork 30
Chunked Data Processing #68
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: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Sasha Meister <[email protected]>
Signed-off-by: Sasha Meister <[email protected]>
Signed-off-by: Sasha Meister <[email protected]>
Signed-off-by: Sasha Meister <[email protected]>
from sdp.utils.chunk_processing import ChunkProcessingPipeline | ||
|
||
|
||
class GroupProcessors(BaseProcessor): |
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.
Add a docstring describing this class
def get_last_output_manifest_file_in_group(group_processors_cfg): | ||
return group_processors_cfg[-1].get("output_manifest_file", None) | ||
|
||
class ChunkedProcessor: |
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.
Add a dosctring what is this class for
self.processor.process() | ||
|
||
|
||
class СhunkRunner: |
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.
add a description to this class
processor.append_chunk_to_agg_output() | ||
|
||
|
||
class ChunkProcessingPipeline: |
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.
add a description to this class
The PR is dedicated to creating a processor that integrates other processors into a pipeline, which can process data in batches.