1pbs_submit(3B) PBS pbs_submit(3B)
2
3
4
6 pbs_submit - submit a pbs batch job
7
9 #include <pbs_error.h>
10 #include <pbs_ifl.h>
11
12 char *pbs_submit(int connect, struct attropl *attrib,
13 char *script, char *destination, char *extend)
14
16 Issue a batch request to submit a new batch job.
17
18 A Queue Job batch request is generated and sent to the server over the
19 connection specified by connect which is the return value of pbs_con‐
20 nect(). The job will be submitted to the queue specified by destina‐
21 tion.
22
23 The parameter, attrib, is a list of attropl structures which is defined
24 in pbs_ifl.h as:
25
26 struct attrl {
27 char *name;
28 char *resource;
29 char *value;
30 struct attrl *next;
31 enum batch_op op;
32 };
33
34 The attrib list is terminated by the first entry where next is a null
35 pointer.
36
37 The name member points to a string which is the name of the attribute.
38 The value member points to a string which is the value of the
39 attribute. The attribute names are defined in pbs_ifl.h:
40
41 #define ATTR_a "Execution_Time"
42 Defines the job's execution time.
43
44 #define ATTR_A "Account_Name"
45 Defines the account string.
46
47 #define ATTR_c "Checkpoint"
48 Defines the checkpoint interval.
49
50 #define ATTR_e "Error_Path"
51 Defines the path name for the standard error of the job.
52
53 #define ATTR_g "Group_List"
54 Defines the list of group names under which the job may
55 execute.
56
57 #define ATTR_h "Hold_Types"
58 Defines the hold types, the only allowable value string
59 is "u".
60
61 #define ATTR_j "Join_Paths"
62 Defines whether standard error and standard output are
63 joined (merged).
64
65 #define ATTR_k "Keep_Files"
66 Defines which output of the job is kept on the execution
67 host.
68
69 #define ATTR_l "Resource_List"
70 Defines a resource required by the job.
71
72 #define ATTR_m "Mail_Points"
73 Defines the points at which the server will send mail
74 about the job.
75
76 #define ATTR_M "Mail_Users"
77 Defines the list of users who would receive mail about
78 the job.
79
80 #define ATTR_N "Job_Name"
81 Defines the job name.
82
83 #define ATTR_o "Output_Path"
84 Defines the path name for the standard output of the job.
85
86 #define ATTR_p "Priority"
87 Defines the priority of the job.
88
89 #define ATTR_r "Rerunable"
90 Defines the rerunable flag.
91
92 #define ATTR_S "Shell_Path_List"
93 Defines the path to the shell which will interpret the
94 job script.
95
96 #define ATTR_u "User_List"
97 Defines the list of user names under which the job may
98 execute.
99
100 #define ATTR_v "Variable_List"
101 Defines the list of additional environment variables
102 which are exported to the job.
103
104 #define ATTR_depend "depend"
105 Defines the inter-job dependencies.
106
107 #define ATTR_stagein "stagein"
108 Defines the list of files to be staged in prior to job
109 execution.
110
111 #define ATTR_stageout "stageout"
112 Defines the list of files to be staged out after job exe‐
113 cution.
114
115 If an attribute is not named in the attrib array, the default action
116 will be taken. It will either be assigned the default value or will
117 not be passed with the job. The action depends on the attribute. If
118 attrib itself is a null pointer, then the default action will be taken
119 for each attribute.
120
121 Associated with an attribute of type ATTR_l (the letter ell) is a
122 resource name indicated by resource in the attrl structure. All other
123 attribute types should have a pointer to a null string for resource.
124
125 The op member is forced to a value of SET by pbs_submit().
126
127 The parameter, script, is the path name to the job script. If the path
128 name is relative, it will be expanded to the processes current working
129 directory. If script is a null pointer or the path name pointed to is
130 specified as the null string, no script is passed with the job.
131
132 The destination parameter specifies the destination for the job. It is
133 specified as: [queue] If destination is the null string or the queue is
134 not specified, the destination will be the default queue at the con‐
135 nected server.
136
137 The parameter, extend, is reserved for implementation defined exten‐
138 sions.
139
140 The return value is a character string which is the job_identifier
141 assigned to the job by the server. The space for the job_identifier
142 string is allocated by pbs_submit() and should be released via a call
143 to free() by the user when no longer needed.
144
146 qsub(1B) and pbs_connect(3B)
147
149 When the batch request generated by pbs_submit() function has been com‐
150 pleted successfully by a batch server, the routine will return a
151 pointer to a character string which is the job identifier of the sub‐
152 mitted batch job. Otherwise, a null pointer is returned and the error
153 code is set in pbs_error.
154
155
156
157
158Local pbs_submit(3B)