1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
6 # Usage: arvados-cwl-runner stress_test.cwl
8 # Submits 100 jobs or containers, creating load on node manager and
14 ScatterFeatureRequirement: {}
15 InlineJavascriptRequirement: {}
30 for (var i = 1; i <= 100; i++) {
41 class: CommandLineTool
43 ShellCommandRequirement: {}
47 arguments: [echo, "starting",
48 {shellQuote: false, valueFrom: "&&"},
49 sleep, $((101-inputs.num)*2),
50 {shellQuote: false, valueFrom: "&&"},
51 echo, "the number of the day is", $(inputs.num)]