You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _uw-research-computing/htcondor-quick-ref.md
+20-4Lines changed: 20 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,9 +12,19 @@ guide:
12
12
13
13
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.
14
14
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
+
15
25
Note: Bracketed items (`<>`) denote where to place your input. Do not include the brackets in your command.
16
26
17
-
## Job submission
27
+
## Submit jobs
18
28
19
29
You can use these commands to submit, hold, or remove your jobs.
20
30
@@ -62,13 +72,19 @@ These commands display information about the execution points - machines that ex
62
72
| --- | --- |
63
73
| 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. |
64
74
| 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. |
66
76
| 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. |
67
78
| idle | A job state in which your job has not yet matched to an execution point and hasn't started running yet. |
68
79
| 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`. |
69
80
| log file | The file where HTCondor prints messages about your job's execution and resource usage. |
70
81
| 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. |
71
82
| process ID | A unique number associated with each job within a job submission. See [submit multiple jobs](multiple-jobs). |
72
83
| 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). |
0 commit comments