Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions sds_data_manager/constructs/processing_construct.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ def add_job(self, job_name: str, data_access_url: str = ""):
image=ecs.ContainerImage.from_ecr_repository(
repository=container_repo, tag="latest"
),
memory=cdk.Size.mebibytes(4096),
cpu=1,
memory=cdk.Size.gibibytes(16),
cpu=4,
environment={
# Useful for switching APIs between dev / prod endpoints
"IMAP_DATA_ACCESS_URL": data_access_url,
Expand All @@ -137,4 +137,5 @@ def add_job(self, job_name: str, data_access_url: str = ""):
f"ProcessingJob-{job_name}",
job_definition_name=f"ProcessingJob-{job_name}",
container=container_definition,
timeout=cdk.Duration.hours(2),
)
Original file line number Diff line number Diff line change
Expand Up @@ -600,10 +600,15 @@ lo, l1b, de, lo, l1c, pset, HARD, DOWNSTREAM
lo, ancillary, good-times, lo, l1c, pset, HARD, DOWNSTREAM
lo, ancillary, hydrogen-background, lo, l1c, pset, HARD, DOWNSTREAM
lo, ancillary, oxygen-background, lo, l1c, pset, HARD, DOWNSTREAM
spin, spin, historical, lo, l1b, de, HARD, DOWNSTREAM
repoint, repoint, historical, lo, l1b, de, HARD, DOWNSTREAM
spin, spin, historical, lo, l1c, pset, HARD, DOWNSTREAM
repoint, repoint, historical, lo, l1c, pset, HARD, DOWNSTREAM
leapseconds, spice, historical, lo, l1c, pset, HARD_NO_TRIGGER, DOWNSTREAM
spacecraft_clock, spice, historical, lo, l1c, pset, HARD_NO_TRIGGER, DOWNSTREAM
attitude_history, spice, historical, lo, l1c, pset, HARD_NO_TRIGGER, DOWNSTREAM
imap_frames, spice, historical, lo, l1c, pset, HARD_NO_TRIGGER, DOWNSTREAM
planetary_ephemeris, spice, historical, lo, l1c, pset, HARD_NO_TRIGGER, DOWNSTREAM
pointing_attitude, spice, historical, lo, l1c, pset, HARD_NO_TRIGGER, DOWNSTREAM
science_frames, spice, historical, lo, l1c, pset, HARD_NO_TRIGGER, DOWNSTREAM

# TODO: Maps for 5-7 days need to be defined. deg resolution for those maps are currently N/A in Lo mapping product sheet.

Expand Down