Skip to content
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

add ARIA_S1_GUNW job type to edc uat deployment #2550

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions .github/workflows/deploy-daac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ jobs:
job_spec/RTC_GAMMA.yml
job_spec/INSAR_ISCE_BURST.yml
job_spec/OPERA_DISP_TMS.yml
job_spec/ARIA_S1_GUNW.yml
instance_types: r6id.xlarge,r6id.2xlarge,r6id.4xlarge,r6id.8xlarge,r6idn.xlarge,r6idn.2xlarge,r6idn.4xlarge,r6idn.8xlarge
default_max_vcpus: 1500
expanded_max_vcpus: 3000
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [9.3.0]

### Added
- ARIA_S1_GUNW job type to hyp3-edc-uat deployment

## [9.2.0]

### Added
Expand Down
85 changes: 85 additions & 0 deletions job_spec/ARIA_S1_GUNW.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
ARIA_S1_GUNW:
required_parameters:
- granules
- secondary_granules
- frame_id
parameters:
granules:
api_schema:
type: array
minItems: 2
maxItems: 3
items:
description: The name of the Sentinel-1 SLC granules to use as reference scenes for InSAR processing
type: string
pattern: "^S1[AB]_IW_SLC__1S[SD]V"
minLength: 67
maxLength: 67
example: S1B_IW_SLC__1SDV_20210723T014947_20210723T015014_027915_0354B4_B3A9
secondary_granules:
api_schema:
type: array
minItems: 2
maxItems: 3
items:
description: The name of the Sentinel-1 SLC granules to use as secondary scenes for InSAR processing
type: string
pattern: "^S1[AB]_IW_SLC__1S[SD]V"
minLength: 67
maxLength: 67
example: S1B_IW_SLC__1SDV_20210711T014947_20210711T015013_027740_034F80_D404
frame_id:
api_schema:
description: Subset GUNW products to this frame.
type: integer
minimum: 0
maximum: 27397
cost_profiles:
EDC:
cost: 1.0 # FIXME
DEFAULT:
cost: 1.0
validators: []
steps:
- name: ''
image: ghcr.io/access-cloud-based-insar/dockerizedtopsapp
command:
- ++omp-num-threads
- '2' # 8 vCPUs per 16 GB RAM for the C instance family; 4 for M; 2 for R
- --bucket
- '!Ref Bucket'
- --bucket-prefix
- Ref::bucket_prefix
- --reference-scenes
- Ref::granules
- --secondary-scenes
- Ref::secondary_granules
- --frame-id
- Ref::frame_id
timeout: 21600
compute_environment: Default
vcpu: 1
memory: 15500
secrets:
- EARTHDATA_USERNAME
- EARTHDATA_PASSWORD
- ESA_USERNAME
- ESA_PASSWORD
- name: TROPOSPHERE
image: ghcr.io/dbekaert/raider
command:
- ++process
- calcDelaysGUNW
- --bucket
- '!Ref Bucket'
- --bucket-prefix
- Ref::bucket_prefix
- --weather-model
- 'None' # FIXME switch to AUTO when available
timeout: 10800
compute_environment: Default
vcpu: 1
memory: 7500
secrets:
- ESA_USERNAME
- ESA_PASSWORD
Loading