Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
HCC docs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Holland Computing Center
HCC docs
Merge requests
!418
Remove HTCondor job example
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Remove HTCondor job example
remove
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Natasha Pavlovikj
requested to merge
remove
into
master
7 months ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
Remove HTCondor job example
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
f29b8a20
1 commit,
7 months ago
1 file
+
0
−
34
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
content/submitting_jobs/submitting_htcondor_jobs.md deleted
100644 → 0
+
0
−
34
Options
+++
title = "Submitting HTCondor Jobs"
description = "How to submit HTCondor Jobs on HCC resources."
weight=50
+++
If you require features of HTCondor, such as DAGMan or Pegasus,
[
HTCondor
](
http://research.cs.wisc.edu/htcondor/
)
can
submit jobs using HTCondor's PBS integration. This can
be done by adding
`grid_resource = pbs`
to the submit file. An example
submission script is below:
{{% panel theme="info" header="submit.condor" %}}
{{
<
highlight
batch
>
}}
universe = grid
grid_resource = pbs
executable = test.sh
output = stuff.out
error = stuff.err
log = stuff.log
batch_queue = guest
queue
{{
<
/
highlight
>
}}
{{% /panel %}}
The above script will translate the condor submit file into a SLURM
submit file, and execute the
`test.sh`
executable on a worker node.
### Using Pegasus
If you are using
[
Pegasus
](
http://pegasus.isi.edu
)
,
instructions on using the
*glite*
interface (as shown above) are
available on the
[
User Guide
](
http://pegasus.isi.edu/wms/docs/latest/execution_environments.php#glite
)
.
Loading