[slurm-dev] Re: queue routing

2016-07-19 Thread Gene Soudlenkov
We have needed the same feature and implemented it as a plugin filter, which reads routing information from the external file. Gene -- New Zealand eScience Infrastructure Centre for eResearch The University of Auckland e: g.soudlen...@auckland.ac.nz p: +64 9 3737599 ext 89834 c: +64 21 840 82

[slurm-dev] RE: SGI UV2000 with SLURM

2016-07-19 Thread Christopher Samuel
On 20/07/16 15:43, A. Podstawka wrote: > need to correct me, there is a cgroup_disable ... for memory, i must > have been blind, but the problem lays first in cpus. What errors have you been seeing? All the best, Chris -- Christopher SamuelSenior Systems Administrator VLSCI - Victori

[slurm-dev] RE: SGI UV2000 with SLURM

2016-07-19 Thread A. Podstawka
Hi Again, need to correct me, there is a cgroup_disable ... for memory, i must have been blind, but the problem lays first in cpus. Adam Am 20.07.2016 um 07:31 schrieb A. Podstawka: Hey Sam, as you can see, no cgroup_disable anywhere: [root@frodo ~]# cat /proc/cmdline init=/sbin/bootcpuse

[slurm-dev] RE: SGI UV2000 with SLURM

2016-07-19 Thread A. Podstawka
Hey Sam, as you can see, no cgroup_disable anywhere: [root@frodo ~]# cat /proc/cmdline init=/sbin/bootcpuset root=/dev/md0 rd.luks=0 rd.lvm=0 LANG=en_US.UTF-8 rd_MD_UUID=6fdc973b:49b47f48:e87de278:ae21f48c SYSFONT=latarcyrheb-sun16 crashkernel=512M KEYBOARDTYPE=pc KEYTABLE=us rd.dm=0 ipmi_si

[slurm-dev] Re: queue routing

2016-07-19 Thread Christopher Samuel
On 16/07/16 05:13, Steven Lo wrote: > One of the feature that we have implemented is queue routing where > all the jobs are submitted to productionQ queue and it will route to > the appropriate queue automatically. One major difference with Slurm is that you can submit to *multiple* partitions a

[slurm-dev] Re: queue routing

2016-07-19 Thread Steven Lo
Hi Jeff, Got it. Basically user just submit job using sbatch and the plugin will be called automatically since it is in the configuration (slurm.conf) Thanks for the explanation. Steven. On 7/19/16 11:07 AM, Sarlo, Jeffrey S wrote: If you put the line in the slurm.conf that I listed (t

[slurm-dev] Re: queue routing

2016-07-19 Thread Steven Lo
Hi Jeff, Thanks so much for the plugin script. Let me see if we can modify it to fit our need. I'm not familiar with plugin in Slurm. How does one submit job using this plugin? The reason I ask is that we have home grown script that we use for the Torque/Maui job submission and just wan

[slurm-dev] Re: queue routing

2016-07-19 Thread Lyn Gerner
Hi Steven, Slurm does not have the routing queue feature. Sites typically implement this function using a job_submit plugin (Lua or C). Regards, Lyn On Tue, Jul 19, 2016 at 7:25 AM, Steven Lo wrote: > > > Hi, > > Any kind pointer/hint/suggestion is highly appreciated. > > If this feature is no

[slurm-dev] Re: queue routing

2016-07-19 Thread Steven Lo
Hi, Any kind pointer/hint/suggestion is highly appreciated. If this feature is not supported with Slurm, it will be nice to know as well so that we can plan accordingly. Thanks Steven. On 7/15/16 12:13 PM, Steven Lo wrote: Hi, I'm a newbie to the Slurm world. We are in the process

[slurm-dev] Re: SPANK plugin to access job info at submission stage

2016-07-19 Thread Nicholas McCollum
If you compile slurm with lua support you will have access to the job_submit.lua plugin. You don't get to see the exact syntax that a user used to submit a job, a feature I miss from Torque/Moab, you can see what slurm interpreted it as. The documentation for the plugin is pretty poor and I

[slurm-dev] RE: SGI UV2000 with SLURM

2016-07-19 Thread Sam Gallop (NBI)
Hi Adam, Sorry for not replying sooner. What does the output of 'cat /proc/cmdline' show? Does it have cgroup_disable in there anywhere? --- Sam Gallop -Original Message- From: A. Podstawka [mailto:adam.podsta...@dsmz.de] Sent: 13 July 2016 12:24 To: slurm-dev Subject: [slurm-dev]

[slurm-dev] Re: Interesting unexpected consequences

2016-07-19 Thread Thomas M. Payerle
Sacctmgr usage can be a bit tricky. Although there are "user", "account", etc. entities that can be manipulated with sacctmgr, much of the time you are dealing with "association" entities. And although sacctmgr will allow you to view associations, modifying associations is handled by sacctmgr

[slurm-dev] Re: SPANK plugin to access job info at submission stage

2016-07-19 Thread Marcin Stolarek
check this: http://slurm.schedmd.com/job_submit_plugins.html However for directly accessing the options specified you probably need to work with wrapper. Inside the plugin you can work on job structure. cheers, marcin 2016-07-19 7:53 GMT+02:00 Yong Qin : > Hi, > > I'm trying to write a plugin