Skip to content

Commit

Permalink
Add HealthKitV2Electrocardiogram type to large jobs (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
philerooski authored Sep 18, 2024
1 parent 30d1873 commit 66a43e0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion templates/glue-job-JSONToParquet.j2
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,11 @@ Resources:
GlueVersion: !Ref GlueVersion
MaxRetries: !Ref MaxRetries
Name: !Sub "${Namespace}-{{ dataset["stackname_prefix"] }}-Job"
{% if dataset["type"] == "HealthKitV2Samples" or dataset["type"] == "FitbitIntradayCombined" -%}
{% if (
dataset["type"] == "HealthKitV2Samples"
or dataset["type"] == "FitbitIntradayCombined"
or dataset["type"] == "HealthKitV2Electrocardiogram"
) -%}
WorkerType: !Ref LargeJobWorkerType
NumberOfWorkers: !Ref LargeJobNumberOfWorkers
{% else -%}
Expand Down

0 comments on commit 66a43e0

Please sign in to comment.