Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. data a;
  2. input myvar1;
  3. myvar2 = myvar1 + 100 ;
  4. datalines;
  5. 0
  6. 1
  7. 2
  8. 3
  9. 4
  10. 5
  11. ;
  12. proc print;
  13. run;
  14.  
  15. ####################
  16. #
  17. # Submit SAS code to Condor cluster
  18. #
  19. # Submit this to run on the cluster with condor_submit THIS-FILENAME.condor
  20. #
  21. ####################
  22.  
  23. UNIVERSE = vanilla
  24. NOTIFICATION = Complete
  25. NOTIFY_USER = mark.miller@zzz.org
  26.  
  27. REQUIREMENTS = (OpSys == "LINUX" && HAS_SAS )
  28. GETENV = TRUE
  29.  
  30. EXECUTABLE = /usr/local/bin/sas
  31. ARGUMENTS = -nodms -noterminal
  32. INPUT = myprogram.sas
  33. OUTPUT = $(INPUT).out
  34. ERROR = $(INPUT).err
  35. LOG = $(INPUT).log
  36.  
  37. QUEUE
  38.  
  39. condor_submit mycondorcode.condor
  40.  
  41. condor_q
  42.  
  43. ID OWNER SUBMITTED RUN_TIME ST PRI SIZE CMD
  44. 58683.0 markm 11/24 14:41 0+00:00:00 I 0 0.0 sas -nodms -noterm
  45.  
  46. 000 (58683.000.000) 11/24 14:41:55 Job submitted from host: <14.4.104.1:42259>
  47. ...
  48. 022 (58683.000.000) 11/24 14:42:56 Job disconnected, attempting to reconnect
  49. Socket between submit and execute hosts closed unexpectedly
  50. Trying to reconnect to slot1@node13.hpc.zzz.org <14.4.104.23:50176>
  51. ...
  52. 024 (58683.000.000) 11/24 14:42:56 Job reconnection failed
  53. Job not found at execution machine
  54. Can not reconnect to slot1@node13.hpc.zzz.org, rescheduling job
  55. ...
  56. 022 (58683.000.000) 11/24 14:43:56 Job disconnected, attempting to reconnect
  57. Socket between submit and execute hosts closed unexpectedly
  58. Trying to reconnect to slot1@node13.hpc.zzz.org <14.4.104.23:50176>
  59. ...
  60. 024 (58683.000.000) 11/24 14:43:56 Job reconnection failed
  61. Job not found at execution machine
  62. Can not reconnect to slot1@node13.hpc.zzz.org, rescheduling job
  63. ...
  64. 022 (58683.000.000) 11/24 14:44:56 Job disconnected, attempting to reconnect
  65. Socket between submit and execute hosts closed unexpectedly
  66. Trying to reconnect to slot1@node13.hpc.zzz.org <14.4.104.23:50176>
  67. ...
  68. 024 (58683.000.000) 11/24 14:44:56 Job reconnection failed
  69. Job not found at execution machine
  70. Can not reconnect to slot1@node13.hpc.zzz.org, rescheduling job
  71. ...
  72. 022 (58683.000.000) 11/24 14:45:57 Job disconnected, attempting to reconnect
  73. Socket between submit and execute hosts closed unexpectedly
  74. Trying to reconnect to slot1@node13.hpc.zzz.org <14.4.104.23:50176>
  75. ...
  76. 024 (58683.000.000) 11/24 14:45:57 Job reconnection failed
  77. Job not found at execution machine
  78. Can not reconnect to slot1@node13.hpc.zzz.org, rescheduling job
  79. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement