Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
habrok:additional_information:faq [2023/03/22 13:33] fokkehabrok:additional_information:faq [2023/04/20 08:59] (current) – [When does my job start?] fokke
Line 2: Line 2:
  
 ===== How can I see how my job performed? ===== ===== How can I see how my job performed? =====
- 
-** jobinfo is not yet available on Hábrók ** 
  
 The command jobinfo is able to give you relevant information about the performance of your job.\\ The command jobinfo is able to give you relevant information about the performance of your job.\\
Line 12: Line 10:
 </code> </code>
  
-For more detailed information about the performance of your job, see [[habrok:advanced_job_management:checking_jobs]]+For more detailed information about the performance of your job, see [[habrok:job_management:checking_jobs#using_jobinfo]]
 ===== How can I test small jobs on the cluster? ===== ===== How can I test small jobs on the cluster? =====
  
Line 39: Line 37:
 ===== How do I know that my job is started or finished? ===== ===== How do I know that my job is started or finished? =====
  
-Depending of the amount of resources that are requested for a job, it can take a while for a job to get started. Therefore, it might be useful to get a notification of when the job is started. It also is very helpful to know when a job is completed if you need the results of the job for further research. With the information of the begin and completion time of a job, a better estimation can be made for running another similar job. An email notification can be requested by adding the following lines to your job script: +Depending of the amount of resources that are requested for a job, it can take a while for a job to get started. Therefore, it might be useful to get a notification of when the job is started. It also is very helpful to know when a job is completed if you need the results of the job for further research. With the information of the begin and completion time of a job, a better estimation can be made for running another similar job. 
- +
-<code> +
-#SBATCH --mail-type=BEGIN,FAIL,END +
-#SBATCH --mail-user=your@email.com +
-</code> +
- +
-These two lines send a mail to the email address provided in the script to notify when a job is started, has failed or finished. Alternatively you can also use the mail type ''ALL'' to be notified of even more status changes. More details can be found on [[habrok:job_management:scheduling_system#other_job_parameters|this page]].+
  
 ===== How much memory do I need to request in my batch script? ===== ===== How much memory do I need to request in my batch script? =====
Line 88: Line 79:
 </code> </code>
  
-When your requested resources are available to you, your job is started. You can add the following line in your batch script to get notified by email when your job has started and ended: +When your requested resources are available to you, your job is started.
- +
-<code> +
-#SBATCH --mail-type=BEGIN,FAIL,END +
-#SBATCH --mail-user=some@user.com +
-</code>+
  
 Some more information about your position in the queue and the estimated start time of your job can be found [[habrok:advanced_job_management:job_prioritization|here]]. Some more information about your position in the queue and the estimated start time of your job can be found [[habrok:advanced_job_management:job_prioritization|here]].