Re: Running 4096 parallel cat processes on remote share results in only 1018 succeeding

2014-10-09 Thread Linda Walsh
Nathan Fairchild wrote: When I run a script like so: cat: /u/pe/env_files/transpath.map: No such file or directory ./run_many.sh: fork: retry: Resource temporarily unavailable ./run_many.sh: fork: Resource temporarily unavailable $ grep -l PATH out* | wc -l 1018 I think I'm probably hitti

Running 4096 parallel cat processes on remote share results in only 1018 succeeding

2014-10-08 Thread Nathan Fairchild
When I run a script like so: #!/bin/bash ulimit -n 3200 for i in $(seq $1) do exec cat /u/pe/env_files/transpath.map > out$i.log & done Where /u maps to a Windows share in /etc/fstab I get the following when running with 4096 instances (this happens whether I use a mapped /etc/fstab pat