Skip to content

Commit 4bfd3c5

Browse files
authored
Merge pull request #9 from Illumina/hjo/4.5.4
update DRAGEN 4.5.4
2 parents 2053f23 + 581fcd8 commit 4bfd3c5

4 files changed

Lines changed: 21 additions & 7 deletions

File tree

app/packages/dragen/dragen.zip

14 Bytes
Binary file not shown.

app/source/dragen/src/dragen_qs.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,8 +306,9 @@ def set_resource_limits(self):
306306
rlimit[res] = int(fields[3])
307307
else:
308308
rlimit[resource.RLIMIT_NPROC] = 16384
309-
rlimit[resource.RLIMIT_NOFILE] = 65535
309+
rlimit[resource.RLIMIT_NOFILE] = 720000
310310
rlimit[resource.RLIMIT_STACK] = 10240 * 1024
311+
rlimit[resource.RLIMIT_MEMLOCK] = 4194384
311312

312313
for res, limit in six.iteritems(rlimit):
313314
printf("Setting resource %s to %s" % (res, limit))

templates/batch.template.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,7 @@ Resources:
360360
Vcpus: !If [Is6xl, 24, 48]
361361
Memory: !If [Is6xl, 240000, 480000]
362362
JobRoleArn: !GetAtt DragenJobRole.Arn
363+
Privileged: True
363364
MountPoints:
364365
- ContainerPath: "/scratch"
365366
ReadOnly: False
@@ -373,7 +374,7 @@ Resources:
373374
- ContainerPath: "/var/lib/edico"
374375
ReadOnly: False
375376
SourceVolume: docker_var_lib_edico
376-
- ContainerPath: "/usr/lib64/libdragen.so.4.4.4"
377+
- ContainerPath: "/usr/lib64/libdragen.so.4.5.4"
377378
ReadOnly: False
378379
SourceVolume: docker_usr_lib64
379380
Volumes:
@@ -391,7 +392,7 @@ Resources:
391392
SourcePath: "/var/lib/edico"
392393
- Name: docker_usr_lib64
393394
Host:
394-
SourcePath: "/usr/lib64/libdragen.so.4.4.4"
395+
SourcePath: "/usr/lib64/libdragen.so.4.5.4"
395396

396397
Outputs:
397398
DragenComputeEnvironmentSpot:

templates/dragen.template.yaml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,21 @@ Mappings:
7878
AMI:
7979
DRAGEN: dragen-completesuite-*
8080
us-east-1:
81-
DRAGEN: ami-0b200106f98d8acd2
81+
DRAGEN: ami-029e470c5fbada5c1
8282
us-west-2:
83-
DRAGEN: ami-07a7d63c4157030dc
83+
DRAGEN: ami-0641521f1dfe332cf
84+
ca-central-1:
85+
DRAGEN: ami-0f678e5c6b2508556
86+
eu-central-1:
87+
DRAGEN: ami-05626d590dad557ec
8488
eu-west-2:
85-
DRAGEN: ami-0ece6aa6f1f8d79f2
89+
DRAGEN: ami-0c21d532139a70ad9
8690
ap-southeast-2:
87-
DRAGEN: ami-0ffc6f405569e4661
91+
DRAGEN: ami-0e1d0e73883b201cb
92+
ap-northeast-1:
93+
DRAGEN: ami-0b4a0cfd87398922c
94+
ap-northeast-2:
95+
DRAGEN: ami-04905ca8889c9a7b7
8896

8997
Parameters:
9098
InstanceType:
@@ -190,8 +198,12 @@ Rules:
190198
Fn::Contains:
191199
- - us-east-1
192200
- us-west-2
201+
- ca-central-1
202+
- eu-central-1
193203
- eu-west-2
194204
- ap-southeast-2
205+
- ap-northeast-1
206+
- ap-northeast-2
195207
- !Ref AWS::Region
196208
AssertDescription: This Quick Start utilizes DRAGEN Marketplace AMI which is only available
197209
in specified AWS Regions. Please launch the stack in one of these

0 commit comments

Comments
 (0)