Note
Go to the end to download the full example code.
Basic example on how to use the CCC cluster¶
Basic example
When you’re running hundreds or thousands of jobs, automation is a necessity.
This is where hopla can help you.
A simple example of how to use hopla on a CCC cluster. Please check
the user guide for a more in depth presentation of all
functionalities.
Imports¶
import hopla
from pprint import pprint
Executor Context¶
executor = hopla.Executor(
cluster="ccc",
folder="/tmp/hopla",
queue="rome",
image="/tmp/hopla/my-docker-img.tar",
walltime=1,
project_id="genXXX",
)
Submit Jobs¶
jobs = [
executor.submit("sleep", k) for k in range(1, 11)
]
pprint(jobs)
print(jobs[0].delayed_submission)
[DelayedCCCJob(
job_id=1,
submission_id=None,
_hub=n4h00001rs,
image_name=/tmp/hopla/my-docker-img.tar,
),
DelayedCCCJob(
job_id=2,
submission_id=None,
_hub=n4h00001rs,
image_name=/tmp/hopla/my-docker-img.tar,
),
DelayedCCCJob(
job_id=3,
submission_id=None,
_hub=n4h00001rs,
image_name=/tmp/hopla/my-docker-img.tar,
),
DelayedCCCJob(
job_id=4,
submission_id=None,
_hub=n4h00001rs,
image_name=/tmp/hopla/my-docker-img.tar,
),
DelayedCCCJob(
job_id=5,
submission_id=None,
_hub=n4h00001rs,
image_name=/tmp/hopla/my-docker-img.tar,
),
DelayedCCCJob(
job_id=6,
submission_id=None,
_hub=n4h00001rs,
image_name=/tmp/hopla/my-docker-img.tar,
),
DelayedCCCJob(
job_id=7,
submission_id=None,
_hub=n4h00001rs,
image_name=/tmp/hopla/my-docker-img.tar,
),
DelayedCCCJob(
job_id=8,
submission_id=None,
_hub=n4h00001rs,
image_name=/tmp/hopla/my-docker-img.tar,
),
DelayedCCCJob(
job_id=9,
submission_id=None,
_hub=n4h00001rs,
image_name=/tmp/hopla/my-docker-img.tar,
),
DelayedCCCJob(
job_id=10,
submission_id=None,
_hub=n4h00001rs,
image_name=/tmp/hopla/my-docker-img.tar,
)]
DelayedSubmission(
command=sleep 1,
execution_parameters=,
)
Generate a batch¶
/home/runner/work/hopla/hopla/examples/plot_ccc.py:52: UserWarning: Can't import image: /tmp/hopla/my-docker-img.tar
jobs[0].generate_batch()
|Traceback (most recent call last):
| File "/home/runner/work/hopla/hopla/doc/../hopla/ccc.py", line 152, in generate_batch
| self.import_image()
| File "/home/runner/work/hopla/hopla/doc/../hopla/ccc.py", line 256, in import_image
| stdout = subprocess.check_output(cmd)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 466, in check_output
| return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 548, in run
| with Popen(*popenargs, **kwargs) as process:
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 1026, in __init__
| self._execute_child(args, executable, preexec_fn, close_fds,
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 1955, in _execute_child
| raise child_exception_type(errno_num, err_msg, err_filename)
|FileNotFoundError: [Errno 2] No such file or directory: 'pcocc-rs'
JobPaths(
flux_dir=/tmp/hopla/logs/1_flux,
job_id=1,
joblib_file=/tmp/hopla/submissions/1_joblib_script.py,
log_folder=/tmp/hopla/logs,
oneshot_dir=/tmp/hopla/logs/1_oneshot,
oneshot_file=/tmp/hopla/submissions/1_oneshot_script.sh,
stderr=/tmp/hopla/logs/1_log.err,
stdout=/tmp/hopla/logs/1_log.out,
submission_file=/tmp/hopla/submissions/1_submission.sh,
submission_folder=/tmp/hopla/submissions,
task_file=/tmp/hopla/submissions/1_tasks.txt,
worker_file=/tmp/hopla/submissions/worker.sh,
)
#!/bin/bash
# Parameters
#MSUB -q rome
#MSUB -Q long
#MSUB -m workflash,scratch,work
#MSUB -T 3600
#MSUB -n 1
#MSUB -c 1
#MSUB -E "--gres=gpu:0"
#MSUB -M 2000
#MSUB -r hopla
#MSUB -e /tmp/hopla/logs/1_log.err
#MSUB -o /tmp/hopla/logs/1_log.out
#MSUB -A genXXX
#MSUB -F #use the Flux plug
# Environment
echo $SLURM_JOB_ID
echo $HOSTNAME
# Command
pcocc-rs run n4h00001rs:/tmp/hopla/my-docker-img.tar -- sleep 1
echo "HOPLASAY-DONE"
Start Jobs¶
We can’t execute the code on the CI since the CCC infrastructure is not available.
from hopla.config import Config
with Config(dryrun=True, delay_s=3):
executor(max_jobs=2)
print(executor.report)
CCC_MSUB: 0%| | 0/10 [00:00<?, ?it/s]/home/runner/work/hopla/hopla/doc/../hopla/utils.py:372: UserWarning: Can't import image: /tmp/hopla/my-docker-img.tar
self.generate_batch()
|Traceback (most recent call last):
| File "/home/runner/work/hopla/hopla/doc/../hopla/ccc.py", line 152, in generate_batch
| self.import_image()
| File "/home/runner/work/hopla/hopla/doc/../hopla/ccc.py", line 256, in import_image
| stdout = subprocess.check_output(cmd)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 466, in check_output
| return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 548, in run
| with Popen(*popenargs, **kwargs) as process:
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 1026, in __init__
| self._execute_child(args, executable, preexec_fn, close_fds,
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 1955, in _execute_child
| raise child_exception_type(errno_num, err_msg, err_filename)
|FileNotFoundError: [Errno 2] No such file or directory: 'pcocc-rs'
[command] ccc_msub /tmp/hopla/submissions/1_submission.sh
CCC_MSUB: 10%|█ | 1/10 [00:00<00:00, 289.46it/s]/home/runner/work/hopla/hopla/doc/../hopla/utils.py:372: UserWarning: Can't import image: /tmp/hopla/my-docker-img.tar
self.generate_batch()
|Traceback (most recent call last):
| File "/home/runner/work/hopla/hopla/doc/../hopla/ccc.py", line 152, in generate_batch
| self.import_image()
| File "/home/runner/work/hopla/hopla/doc/../hopla/ccc.py", line 256, in import_image
| stdout = subprocess.check_output(cmd)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 466, in check_output
| return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 548, in run
| with Popen(*popenargs, **kwargs) as process:
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 1026, in __init__
| self._execute_child(args, executable, preexec_fn, close_fds,
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 1955, in _execute_child
| raise child_exception_type(errno_num, err_msg, err_filename)
|FileNotFoundError: [Errno 2] No such file or directory: 'pcocc-rs'
[command] ccc_msub /tmp/hopla/submissions/2_submission.sh
CCC_MSUB: 20%|██ | 2/10 [00:00<00:00, 334.38it/s]/home/runner/work/hopla/hopla/doc/../hopla/utils.py:372: UserWarning: Can't import image: /tmp/hopla/my-docker-img.tar
self.generate_batch()
|Traceback (most recent call last):
| File "/home/runner/work/hopla/hopla/doc/../hopla/ccc.py", line 152, in generate_batch
| self.import_image()
| File "/home/runner/work/hopla/hopla/doc/../hopla/ccc.py", line 256, in import_image
| stdout = subprocess.check_output(cmd)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 466, in check_output
| return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 548, in run
| with Popen(*popenargs, **kwargs) as process:
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 1026, in __init__
| self._execute_child(args, executable, preexec_fn, close_fds,
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 1955, in _execute_child
| raise child_exception_type(errno_num, err_msg, err_filename)
|FileNotFoundError: [Errno 2] No such file or directory: 'pcocc-rs'
[command] ccc_msub /tmp/hopla/submissions/3_submission.sh
CCC_MSUB: 30%|███ | 3/10 [00:03<00:07, 1.00s/it]
CCC_MSUB: 30%|███ | 3/10 [00:03<00:07, 1.00s/it]/home/runner/work/hopla/hopla/doc/../hopla/utils.py:372: UserWarning: Can't import image: /tmp/hopla/my-docker-img.tar
self.generate_batch()
|Traceback (most recent call last):
| File "/home/runner/work/hopla/hopla/doc/../hopla/ccc.py", line 152, in generate_batch
| self.import_image()
| File "/home/runner/work/hopla/hopla/doc/../hopla/ccc.py", line 256, in import_image
| stdout = subprocess.check_output(cmd)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 466, in check_output
| return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 548, in run
| with Popen(*popenargs, **kwargs) as process:
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 1026, in __init__
| self._execute_child(args, executable, preexec_fn, close_fds,
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 1955, in _execute_child
| raise child_exception_type(errno_num, err_msg, err_filename)
|FileNotFoundError: [Errno 2] No such file or directory: 'pcocc-rs'
[command] ccc_msub /tmp/hopla/submissions/4_submission.sh
CCC_MSUB: 40%|████ | 4/10 [00:03<00:06, 1.00s/it]/home/runner/work/hopla/hopla/doc/../hopla/utils.py:372: UserWarning: Can't import image: /tmp/hopla/my-docker-img.tar
self.generate_batch()
|Traceback (most recent call last):
| File "/home/runner/work/hopla/hopla/doc/../hopla/ccc.py", line 152, in generate_batch
| self.import_image()
| File "/home/runner/work/hopla/hopla/doc/../hopla/ccc.py", line 256, in import_image
| stdout = subprocess.check_output(cmd)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 466, in check_output
| return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 548, in run
| with Popen(*popenargs, **kwargs) as process:
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 1026, in __init__
| self._execute_child(args, executable, preexec_fn, close_fds,
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 1955, in _execute_child
| raise child_exception_type(errno_num, err_msg, err_filename)
|FileNotFoundError: [Errno 2] No such file or directory: 'pcocc-rs'
[command] ccc_msub /tmp/hopla/submissions/5_submission.sh
CCC_MSUB: 50%|█████ | 5/10 [00:06<00:06, 1.25s/it]
CCC_MSUB: 50%|█████ | 5/10 [00:06<00:06, 1.25s/it]/home/runner/work/hopla/hopla/doc/../hopla/utils.py:372: UserWarning: Can't import image: /tmp/hopla/my-docker-img.tar
self.generate_batch()
|Traceback (most recent call last):
| File "/home/runner/work/hopla/hopla/doc/../hopla/ccc.py", line 152, in generate_batch
| self.import_image()
| File "/home/runner/work/hopla/hopla/doc/../hopla/ccc.py", line 256, in import_image
| stdout = subprocess.check_output(cmd)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 466, in check_output
| return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 548, in run
| with Popen(*popenargs, **kwargs) as process:
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 1026, in __init__
| self._execute_child(args, executable, preexec_fn, close_fds,
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 1955, in _execute_child
| raise child_exception_type(errno_num, err_msg, err_filename)
|FileNotFoundError: [Errno 2] No such file or directory: 'pcocc-rs'
[command] ccc_msub /tmp/hopla/submissions/6_submission.sh
CCC_MSUB: 60%|██████ | 6/10 [00:06<00:04, 1.25s/it]/home/runner/work/hopla/hopla/doc/../hopla/utils.py:372: UserWarning: Can't import image: /tmp/hopla/my-docker-img.tar
self.generate_batch()
|Traceback (most recent call last):
| File "/home/runner/work/hopla/hopla/doc/../hopla/ccc.py", line 152, in generate_batch
| self.import_image()
| File "/home/runner/work/hopla/hopla/doc/../hopla/ccc.py", line 256, in import_image
| stdout = subprocess.check_output(cmd)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 466, in check_output
| return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 548, in run
| with Popen(*popenargs, **kwargs) as process:
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 1026, in __init__
| self._execute_child(args, executable, preexec_fn, close_fds,
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 1955, in _execute_child
| raise child_exception_type(errno_num, err_msg, err_filename)
|FileNotFoundError: [Errno 2] No such file or directory: 'pcocc-rs'
[command] ccc_msub /tmp/hopla/submissions/7_submission.sh
CCC_MSUB: 70%|███████ | 7/10 [00:09<00:04, 1.35s/it]
CCC_MSUB: 70%|███████ | 7/10 [00:09<00:04, 1.35s/it]/home/runner/work/hopla/hopla/doc/../hopla/utils.py:372: UserWarning: Can't import image: /tmp/hopla/my-docker-img.tar
self.generate_batch()
|Traceback (most recent call last):
| File "/home/runner/work/hopla/hopla/doc/../hopla/ccc.py", line 152, in generate_batch
| self.import_image()
| File "/home/runner/work/hopla/hopla/doc/../hopla/ccc.py", line 256, in import_image
| stdout = subprocess.check_output(cmd)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 466, in check_output
| return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 548, in run
| with Popen(*popenargs, **kwargs) as process:
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 1026, in __init__
| self._execute_child(args, executable, preexec_fn, close_fds,
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 1955, in _execute_child
| raise child_exception_type(errno_num, err_msg, err_filename)
|FileNotFoundError: [Errno 2] No such file or directory: 'pcocc-rs'
[command] ccc_msub /tmp/hopla/submissions/8_submission.sh
CCC_MSUB: 80%|████████ | 8/10 [00:09<00:02, 1.35s/it]/home/runner/work/hopla/hopla/doc/../hopla/utils.py:372: UserWarning: Can't import image: /tmp/hopla/my-docker-img.tar
self.generate_batch()
|Traceback (most recent call last):
| File "/home/runner/work/hopla/hopla/doc/../hopla/ccc.py", line 152, in generate_batch
| self.import_image()
| File "/home/runner/work/hopla/hopla/doc/../hopla/ccc.py", line 256, in import_image
| stdout = subprocess.check_output(cmd)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 466, in check_output
| return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 548, in run
| with Popen(*popenargs, **kwargs) as process:
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 1026, in __init__
| self._execute_child(args, executable, preexec_fn, close_fds,
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 1955, in _execute_child
| raise child_exception_type(errno_num, err_msg, err_filename)
|FileNotFoundError: [Errno 2] No such file or directory: 'pcocc-rs'
[command] ccc_msub /tmp/hopla/submissions/9_submission.sh
CCC_MSUB: 90%|█████████ | 9/10 [00:12<00:01, 1.41s/it]
CCC_MSUB: 90%|█████████ | 9/10 [00:12<00:01, 1.41s/it]/home/runner/work/hopla/hopla/doc/../hopla/utils.py:372: UserWarning: Can't import image: /tmp/hopla/my-docker-img.tar
self.generate_batch()
|Traceback (most recent call last):
| File "/home/runner/work/hopla/hopla/doc/../hopla/ccc.py", line 152, in generate_batch
| self.import_image()
| File "/home/runner/work/hopla/hopla/doc/../hopla/ccc.py", line 256, in import_image
| stdout = subprocess.check_output(cmd)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 466, in check_output
| return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 548, in run
| with Popen(*popenargs, **kwargs) as process:
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 1026, in __init__
| self._execute_child(args, executable, preexec_fn, close_fds,
| File "/opt/hostedtoolcache/Python/3.12.12/x64/lib/python3.12/subprocess.py", line 1955, in _execute_child
| raise child_exception_type(errno_num, err_msg, err_filename)
|FileNotFoundError: [Errno 2] No such file or directory: 'pcocc-rs'
[command] ccc_msub /tmp/hopla/submissions/10_submission.sh
CCC_MSUB: 100%|██████████| 10/10 [00:12<00:00, 1.41s/it]
CCC_MSUB: 100%|██████████| 10/10 [00:15<00:00, 1.50s/it]
----------------------------------------
DelayedCCCJob<job_id=1>exitcode: failure
DelayedCCCJob<job_id=1>submission: /tmp/hopla/submissions/1_submission.sh
DelayedCCCJob<job_id=1>stdout: none
DelayedCCCJob<job_id=1>stderr: none
----------------------------------------
DelayedCCCJob<job_id=2>exitcode: failure
DelayedCCCJob<job_id=2>submission: /tmp/hopla/submissions/2_submission.sh
DelayedCCCJob<job_id=2>stdout: none
DelayedCCCJob<job_id=2>stderr: none
----------------------------------------
DelayedCCCJob<job_id=3>exitcode: failure
DelayedCCCJob<job_id=3>submission: /tmp/hopla/submissions/3_submission.sh
DelayedCCCJob<job_id=3>stdout: none
DelayedCCCJob<job_id=3>stderr: none
----------------------------------------
DelayedCCCJob<job_id=4>exitcode: failure
DelayedCCCJob<job_id=4>submission: /tmp/hopla/submissions/4_submission.sh
DelayedCCCJob<job_id=4>stdout: none
DelayedCCCJob<job_id=4>stderr: none
----------------------------------------
DelayedCCCJob<job_id=5>exitcode: failure
DelayedCCCJob<job_id=5>submission: /tmp/hopla/submissions/5_submission.sh
DelayedCCCJob<job_id=5>stdout: none
DelayedCCCJob<job_id=5>stderr: none
----------------------------------------
DelayedCCCJob<job_id=6>exitcode: failure
DelayedCCCJob<job_id=6>submission: /tmp/hopla/submissions/6_submission.sh
DelayedCCCJob<job_id=6>stdout: none
DelayedCCCJob<job_id=6>stderr: none
----------------------------------------
DelayedCCCJob<job_id=7>exitcode: failure
DelayedCCCJob<job_id=7>submission: /tmp/hopla/submissions/7_submission.sh
DelayedCCCJob<job_id=7>stdout: none
DelayedCCCJob<job_id=7>stderr: none
----------------------------------------
DelayedCCCJob<job_id=8>exitcode: failure
DelayedCCCJob<job_id=8>submission: /tmp/hopla/submissions/8_submission.sh
DelayedCCCJob<job_id=8>stdout: none
DelayedCCCJob<job_id=8>stderr: none
----------------------------------------
DelayedCCCJob<job_id=9>exitcode: failure
DelayedCCCJob<job_id=9>submission: /tmp/hopla/submissions/9_submission.sh
DelayedCCCJob<job_id=9>stdout: none
DelayedCCCJob<job_id=9>stderr: none
----------------------------------------
DelayedCCCJob<job_id=10>exitcode: failure
DelayedCCCJob<job_id=10>submission: /tmp/hopla/submissions/10_submission.sh
DelayedCCCJob<job_id=10>stdout: none
DelayedCCCJob<job_id=10>stderr: none
Total running time of the script: (0 minutes 15.332 seconds)
Estimated memory usage: 109 MB