Tagged Questions
The qsub tag has no wiki summary.
4
votes
2answers
1k views
parameter for shell scripts that is started with qsub
how can I parametrize a shell script that is executed on a grid (started with qsub) ? I have a shell script, where I use getopts to read the parameters.
When I start (qsub script.sh -r firstparam -s ...
4
votes
2answers
1k views
Why doesn't my awk one-liner work when I call it from Perl?
I have no problem using the following command of AWK as a stand alone command,
without any error:
$ awk '$9 != "NTM" && $9 != ""' myfile.txt | less -Sn
But when I apply them inside Perl's ...
3
votes
2answers
846 views
“embarrassingly parallel” programming using python and PBS on a cluster
I have a function (neural network model) which produces figures. I wish to test several parameters, methods and different inputs (meaning hundreds of runs of the function) from python using PBS on a ...
2
votes
1answer
629 views
Getting the exit code from a process submitted with qsub on Sun Grid Engine
I would like to submit jobs via qsub on Sun Grid Engine (now: Oracle Grid Engine?). I do not wish to use the -sync yes option or qrsh, because I want my controlling program to be single-threaded and ...
1
vote
0answers
52 views
python program killed in pbs without info
I'm running a simple Python program using rpy2 in a cluster managed by pbs_torque. My problem is that the same piece of code works perfectly and other times is killed without logical reason or error ...
1
vote
1answer
121 views
Making qsub block until job is done?
Currently, I have a driver program that runs several thousand instances of a "payload" program and does some post-processing of the output. The driver currently calls the payload program directly, ...
1
vote
1answer
332 views
Captuing job ID when submitting Perl-generated scripts to SGE
Perl can't open command pipes that run both in and out, which causes a problem when submitting to SGE via qsub because I lose the job id of my submission. How can I submit a generated script to SGE ...
1
vote
1answer
169 views
matlab distributed computing with sge(qsub)
Recently I got access to run my codes on a cluster. My code is totally paralleizable but I don't know how to best use its parallel nature. I've to compute elements of a big matrix and each of them are ...
1
vote
2answers
529 views
SGE - QSUB fails to submit jobs in -sync mode
I have a perl script that prepares files for input to a binary program and submits the execution of the binary program to the SGE queueing system version 6.2u2.
The jobs are submitted with the -sync ...
1
vote
3answers
830 views
how to automatically run a bash script when my qsub jobs are finished on a server?
I would like to run a script when all of the jobs that I have sent to a server are done.
for example, I send
ssh server "for i in config*; do qsub ./run 1 $i; done"
And I get back a list of the ...
1
vote
3answers
977 views
Encoding Keyboard Command Onto Bash Script
I have the following way to submit a job with cluster using qsub:
Submitting jobs from standard input
To submit a PBS job by typing job specifications at the command line, the user types
...
0
votes
1answer
42 views
Argument passing in .sh scripts
I have a shell script foo.sh which is a qsub job with content:
#!/bin/bash -l
#$ -S /bin/bash
#$ -N $2
echo $1
I would like to pass two arguments. If I call qsub foo.sh a b the ...
0
votes
1answer
69 views
using qsub (sge) with multi-threaded applications
i wanted to submit a multi-threaded job to the cluster network i'm working with -
but the man page about qsub is not clear how this is done - By default i guess it just sends it as a normal job ...
0
votes
1answer
75 views
Submit a job to Oracle Grid Engine in Jenkins continuous integration test system
I know how to run a bash script on Jenkins. However, if I use qsub to submit the bash script to OGE system, how does Jenkins know that my job terminates or not?
0
votes
1answer
36 views
QSUB a process for every file in a directory?
I've been using
qsub -t 1-90000 do_stuff.sh
to submit my tasks on a Sun GridEngine cluster, but now find myself with data sets (super large ones, too) which are not so conveniently named. What's ...
0
votes
1answer
61 views
How to set the qsub to run job2 five seconds (or any desired value) after the job1 is finished?
Currently what I do is to estimate when job1 will be finished, then using the “#PBS -a [myEstimatedTime+5]" directive I run qsub for job2. But I’m not happy with my approach since sometimes it is ...
0
votes
1answer
53 views
Does anyone have experience with clusters running on ClusterVisionOS?
I'm currently working on a cluster using the ClusterVisionOS 3.1. This will be my first time working with a cluster, so I probably haven't tried the "obvious".
I can submit a single job to the ...
0
votes
1answer
446 views
script unable to find directories/files when running from qsub cluster script
I'm calling several unix commands and python on a python script from a qsub shell script, meant to run on a cluster. The trouble is that when the script executes, something seems to go awry in the ...
0
votes
1answer
254 views
how to limit number of concurrently running PBS jobs
I have a 64-node cluster, running PBS Pro. If I submit many hundreds of jobs, I can get 64 running at once. This is great, except when all 64 jobs happen to be nearly I/O bound, and are ...
-1
votes
1answer
486 views
Running a job on multiple nodes of a GridEngine cluster
I have access to a 128-core cluster on which I would like to run a parallelised job. The cluster uses Sun GridEngine and my program is written to run using Parallel Python, numpy, scipy on Python ...