Skip to content

Commit 3d4d327

Browse files
authored
Merge pull request #2914 from ASFHyP3/develop
Release v0.11.7
2 parents 98e2c7a + 3551c35 commit 3d4d327

File tree

4 files changed

+41
-4
lines changed

4 files changed

+41
-4
lines changed

.github/workflows/deploy-custom-prod.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ jobs:
9999
job_spec/ARIA_S1_COSEIS.yml
100100
job_spec/INSAR_ISCE.yml
101101
instance_types: m6id.xlarge,m6id.2xlarge,m6id.4xlarge,m6id.8xlarge,m6idn.xlarge,m6idn.2xlarge,m6idn.4xlarge,m6idn.8xlarge
102-
default_max_vcpus: 13000 # Max: 13000
103-
expanded_max_vcpus: 13000 # Max: 13000
102+
default_max_vcpus: 4000 # Max: 13000
103+
expanded_max_vcpus: 4000 # Max: 13000
104104
required_surplus: 0
105105
security_environment: JPL-public
106106
ami_id: /aws/service/ecs/optimized-ami/amazon-linux-2023/recommended/image_id

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [10.11.7]
8+
9+
### Added
10+
- Optional OPERA `frame_id` parameter to the ITS_LIVE_AUTORIFT job specification.
11+
12+
### Changed
13+
- The ITS_LIVE_METADATA job now includes a cropping step to ensure ITS_LIVE granules are chunk-aligned and have a time dimension before generating STAC and NSIDC ingest metadata files.
14+
- The default `publish_stac_prefix` has been changed to `stac-ingest` for ITS_LIVE_METADATA and ITS_LIVE_AUTORIFT jobs.
15+
- Lower A19 account back to 4000 VCPUs for nominal processing throughput.
16+
717
## [10.11.6]
818

919
### Added

job_spec/ITS_LIVE_AUTORIFT.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,12 +120,18 @@ AUTORIFT:
120120
api_schema:
121121
description: Publish the resulting STAC JSON item under this prefix in the ITS_LIVE AWS Open Data (or test) S3 Bucket
122122
type: string
123-
default: test-space/stac/ndjson/ingest
123+
default: stac-ingest
124124
use_static_files:
125125
api_schema:
126126
description: Use static topographic correction files for ISCE3 processing if available (Sentinel-1 only)
127127
default: true
128128
type: boolean
129+
frame_id:
130+
api_schema:
131+
description: Sentinel-1 OPERA Frame ID to be placed in product metadata after processing
132+
default: null
133+
nullable: true
134+
type: string
129135
cost_profiles:
130136
DEFAULT:
131137
cost: 1.0
@@ -151,6 +157,8 @@ AUTORIFT:
151157
- Ref::reference
152158
- --secondary
153159
- Ref::secondary
160+
- --frame-id
161+
- Ref::frame_id
154162
timeout: 10800
155163
compute_environment: Default
156164
vcpu: 1

job_spec/ITS_LIVE_META.yml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,32 @@ ITS_LIVE_META:
2121
api_schema:
2222
description: Publish the resulting STAC JSON item under this prefix in the ITS_LIVE AWS Open Data (or test) S3 Bucket
2323
type: string
24-
default: test-space/stac/ndjson/ingest
24+
default: stac-ingest
2525
cost_profiles:
2626
DEFAULT:
2727
cost: 1.0
2828
validators: []
2929
steps:
3030
- name: ''
31+
image: ghcr.io/asfhyp3/hyp3-autorift
32+
command:
33+
- ++process
34+
- crop_netcdf_product
35+
- Ref::granule_uri
36+
- --bucket
37+
- '!Ref Bucket'
38+
- --bucket-prefix
39+
- Ref::job_id
40+
- --publish-bucket
41+
- Ref::publish_bucket
42+
timeout: 10800
43+
compute_environment: Default
44+
vcpu: 1
45+
memory: 7875
46+
secrets:
47+
- PUBLISH_ACCESS_KEY_ID
48+
- PUBLISH_SECRET_ACCESS_KEY
49+
- name: METADATA
3150
image: ghcr.io/asfhyp3/itslive-metadata
3251
command:
3352
- --granule-uri

0 commit comments

Comments
 (0)