Changes between Version 6 and Version 7 of RemoteJobs
- Timestamp:
- Jun 19, 2011, 1:53:07 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RemoteJobs
v6 v7 1 [[PageOutline]] 1 2 = Web services for remote job submission = 2 3 … … 147 148 <aborted/> 148 149 }}} 150 151 == Access control == 152 153 Users can submit jobs only if they have been 154 given access (via a web interface) by project administrators. 155 156 In addition, project admins can allow users to submit jobs for any app, 157 or can designate which apps they can submit jobs to. 149 158 150 159 == Example usage == … … 183 192 == Implementation notes == 184 193 194 New tables 195 196 {{{ 197 batch 198 id 199 create_time 200 logical_start_time 201 logical_end_time 202 estimated_completion_time 203 njobs 204 205 user_submit 206 user_id 207 quota 208 logical_start_time 209 bool all_apps 210 211 user_app 212 user_id 213 app_id 214 }}}