Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
282 views

How can I control the Perl version used when submitting grid jobs?

I'm working with SGE (Sun Grid Engine) to submit jobs to a grid. I also use perlbrew to manage my installed Perl versions. I wrote some short sh scripts that I use to run a perl script which requires ...
2
votes
3answers
223 views

Spreading a job over different nodes of a cluster in sun grid engine (SGE)

I'm tryin get sun gridending (sge) to run the separate processes of an MPI job over all of the nodes of my cluster. What is happening is that each node has 12 processors, so SGE is assigning 12 of my ...
2
votes
1answer
652 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
1answer
75 views

Running Python MPI programs in Sun Grid Engine

I have been coding pretty simple MPI programs in C. I am not very good at C, but pretty confident in Python. I came to know that Python has MPI bindings. I am using Sun Grid Engine as DRMS ...
1
vote
1answer
171 views

Precisely Why Does uname -m Report the Wrong Architecture When Run By Sun Grid Engine (SGE)?

I have 64-bit Debian Squeeze systems that run an older 32-bit version of SGE execd. When I run uname -m at the command line, I get what I'd expect: x86_64. But when I run uname -m inside an SGE script ...
1
vote
1answer
362 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
176 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
148 views

Determine if script is running in SGE

How can I determine from a Perl script if it's running through SGE or locally from the command line?
1
vote
2answers
570 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 ...
0
votes
1answer
21 views

Hadoop on Batch System as a user process

I've seen Hadoop-on-Demand, and the Hadoop integration on SGE. My understanding is that requires admin privileges, which I don't have on the big cluster at work. The admins have their hands full and ...
0
votes
2answers
63 views

how to specify error log file and output file in qsub

I have a qsub script as #####----submit_job.sh---##### #!/bin/sh #$ -N job1 #$ -t 1-100 #$ -cwd SEEDFILE=/home/user1/data1 SEED=$(sed -n -e "$SGE_TASK_ID p" $SEEDFILE) ...
0
votes
0answers
31 views

Bash script for Openmpi, SGE and blacs

I am reserving several processors with SGE upon which I want to run a number of openmpi jobs, all of which individually (and combined) use less than the reserved number of processors. The code I am ...
0
votes
1answer
88 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
2answers
71 views

How to write a CVS wrapper script

I'd like to write a CVS wrapper script that executes the command on another machine using RSH but am having trouble with quotes. #!/bin/csh -f rsh <machine> cvs $*:q The problem is that even ...
0
votes
0answers
69 views

Jobs Stuck in “r” state in Sun Grid, no errors, runs don't finish

I have been facing a weird problem lately when using Sun Grid Engine (SGE). I have a script which submit jobs to SGE in batches of 30 (total 200 jobs to be submitted). These are then distributed to ~ ...
0
votes
0answers
72 views

qalter to remove an advanced reservation

I would like to create an array job where the tasks don't all execute at the same time. The tasks will be enabled by some future command. The reason that I need this feature is that I want to ...
0
votes
2answers
141 views

loading library on cluster

I successfully compiled a program in c++, with boost, on a cluster we have here. I need to run an SGE script to run the simulation. The error I get is this ./main: error while loading shared ...
0
votes
1answer
202 views

How to specify the equivalent of ppn (on PBS) in SGE queuing system?

Is there a way to specify the ppn ( or equivalent ) in SGE ? i don't want to use all cpus in one node so i will be able to have more memory per core. ( In PBS you would do -l nodes=16:ppn=2 for ...
0
votes
1answer
462 views

Avoid generating empty STDOUT and STDERR files with Sun Grid Engine (SGE) and array jobs

I am running array jobs with Sun Grid Engine (SGE). My carefully scripted array job workers generate no stdout and no stderr when they function properly. Unfortunately, SGE insists on creating an ...