Changes in response to comments on ETL-34 #4
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New pipeline behavior:
New organizational assumptions (how we organize tables, jobs, workflows):
s3_to_json
workflow and ajson_to_parquet
workflows3_to_json
workflow is invoked by the lambda subscribed to the SNS topic, and in its turn will trigger a single job. This job (s3_to_json_s3
) will be shared among all study-specific workflows. This is possible because the job's input and output are parameterized in the study-specific workflow.json_to_parquet
workflow will trigger one job for each JSON dataset. This seems redundant, but it's necessary for using job bookmarks. These jobs are also shared among the study-specific workflows -- the different input and output behavior is parameterized in the study-specific workflow.