Skip to content
Snippets Groups Projects
Commit 5ad1df35 authored by Camilla Compton's avatar Camilla Compton Committed by Jameson Rollins
Browse files

Added request_disk = 10MB to condor.py submit code.

Found that both "analyze" and "search" logs are < 0.1 MB, "online" logs to the lockloss directory so is request_disk needs to be barely anything for that. Spoke to Dan and confirmed a blanket request_disk of 10Mb for all methods (online, analyze, search) is fine. This is much larger than we expect but ensures our jobs won't be rejected. Fix removed the "must specify request_disk" message when tested on pcdev1.

Closes #181
parent 2e3cd425
No related branches found
No related tags found
No related merge requests found
......@@ -75,6 +75,7 @@ class CondorSubmit(object):
('executable', '{}'.format(self.exec_path)),
('arguments', ' '.join(args)),
('universe', universe),
('request_disk', '10 MB'),
('accounting_group', config.CONDOR_ACCOUNTING_GROUP),
('accounting_group_user', config.CONDOR_ACCOUNTING_GROUP_USER),
('getenv', 'True'),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment