Skip to content

Commit 69c3f4c

Browse files
committed
Add related pages
1 parent 7de9516 commit 69c3f4c

File tree

1 file changed

+20
-4
lines changed

1 file changed

+20
-4
lines changed

_uw-research-computing/htcondor-quick-ref.md

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,19 @@ guide:
1212

1313
This page lists common HTCondor commands and options for jobs. Users familiar with HTCondor and job submission on CHTC's High Throughput Computing (HTC) system can use this page as a quick reference. For users who are just starting out, we suggest reading the full guides (linked) to understand the full context of each command or option.
1414

15+
{% capture content %}
16+
- [Introduction](#introduction)
17+
- [Submit jobs](#submit-jobs)
18+
- [Monitor jobs](#monitor-jobs)
19+
- [Machine information](#machine-information)
20+
- [Glossary](#glossary)
21+
- [Related Pages](#related-pages)
22+
{% endcapture %}
23+
{% include /components/directory.html title="Table of Contents" %}
24+
1525
Note: Bracketed items (`<>`) denote where to place your input. Do not include the brackets in your command.
1626

17-
## Job submission
27+
## Submit jobs
1828

1929
You can use these commands to submit, hold, or remove your jobs.
2030

@@ -62,13 +72,19 @@ These commands display information about the execution points - machines that ex
6272
| --- | --- |
6373
| access point | The machine which you log into to access CHTC's servers. This is the machine you use to prepare files for job submission and submit jobs. |
6474
| cluster ID | A unique number associated with a single job submission. |
65-
| error file / standard error | The file where your job typically prints any errors. |
75+
| error file / standard error | The file in which your job typically prints any errors. |
6676
| execution point | The machine that executes or runs your job. |
77+
| held/hold | A job state in which your job has stopped running due to an error. |
6778
| idle | A job state in which your job has not yet matched to an execution point and hasn't started running yet. |
6879
| job ID | The unique number associated with a job. This consists of a cluster ID, followed by a period and a process ID. For example, the job ID `12345.0` has a cluster ID of `12345` and a process ID of `0`. |
6980
| log file | The file where HTCondor prints messages about your job's execution and resource usage. |
7081
| output file / standard out | The file where your job typically prints output. Any messages printed to the "screen" in a job will be saved in this file. |
7182
| process ID | A unique number associated with each job within a job submission. See [submit multiple jobs](multiple-jobs). |
7283
| running | A job state in which your job has matched to the execution point and is currently executing/running. |
73-
| held/hold | A job state in which your job has stopped running due to an error. |
74-
| submit file | A text-based file that tells HTCondor details about your job, including the commands to run, what files need to be transferred, where to save the outputs, and more. See the [job submission](htcondor-job-submission). |
84+
| submit file | A text-based file that tells HTCondor details about your job, including the commands to run, what files need to be transferred, where to save the outputs, and more. See the [job submission](htcondor-job-submission). |
85+
86+
## Related Pages
87+
88+
* [Job submission](htcondor-job-submission)
89+
* [Monitor your jobs](condor_q)
90+
* [HTCondor manual](https://htcondor.readthedocs.io/en/latest/)

0 commit comments

Comments
 (0)