Questions tagged [dask-jobqueue]

19 questions
0
votes
1 answer

How can I keep a PBSCluster running?

I have access to a cluster running PBS Pro and would like to keep a PBSCluster instance running on the headnode. My current (obviously broken) script is: import dask_jobqueue from paths import get_temp_dir def main(): temp_dir =…
Trauer
  • 1,981
  • 2
  • 18
  • 40
0
votes
1 answer

Trouble with setting PBS Cluster using dask that finds my own modules

I am running into some errors when trying to set up my own client using jobqueue PBS Cluster instead of using a default local cluster (i.e., client = Client()). When setting the default, my own modules were recognized, but I realized my workers in…
0
votes
2 answers

Create local_directory for dask_jobqueue

I'm trying to run dask on an HPC system that uses NFS for storage. As such, I want to configure dask to use local storage for scratch space. Each cluster node has a /scratch/ folder that all users can write into, with instructions to put scratch…
lsterzinger
  • 687
  • 5
  • 22
0
votes
1 answer

Custom job script submission to PBS via Dask?

I have a PBS job script with an executable that writes results to out file. ### some lines PBS_O_EXEDIR="path/to/software" EXECUTABLE="executablefile" OUTFILE="out" ### Copy application directory on compute node [ -d $PBS_O_EXEDIR ] || mkdir -p…
ranjith
  • 115
  • 2
  • 10
1
2