Skip to content

Commit bdef779

Browse files
authored
Update sge.md
1 parent 8ab1147 commit bdef779

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

Diff for: docs/sge.md

+11-9
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,11 @@
1-
# Sun Grid Engine (SGE) via qrsh
1+
# Sun Grid Engine (SGE)
22

33
> [!WARNING]
44
> The SGE functionality is not currently being maintained.
55
>
66
> We are currently seeking a new maintainer for the SGE functionality. If you are an active user of SGE and are interested in being a maintainer, please open a GitHub issue - say that you are interested in being a maintainer for the SGE functionality.
77
8-
`SGEManager` uses SGE's `qsub` command to launch workers, which communicate the
9-
TCP/IP host:port info back to the master via the filesystem. On filesystems
10-
that are tuned to make heavy use of caching to increase throughput, launching
11-
Julia workers can frequently timeout waiting for the standard output files to appear.
12-
In this case, it's better to use the `QRSHManager`, which uses SGE's `qrsh`
13-
command to bypass the filesystem and captures STDOUT directly.
14-
15-
## SGE - a simple interactive example
8+
## SGE via `qsub`: Use `ClusterManagers.addprocs_sge` (or `ClusterManagers.SGEManager`)
169

1710
```julia
1811
julia> using ClusterManagers
@@ -66,3 +59,12 @@ julia> From worker 26: lum-7-2.local
6659
julia> rmprocs(workers())
6760
Task (done)
6861
```
62+
63+
## SGE via `qrsh`: Use `ClusterManagers.addprocs_qrsh` (or `ClusterManagers.QRSHManager`)
64+
65+
`SGEManager` uses SGE's `qsub` command to launch workers, which communicate the
66+
TCP/IP host:port info back to the master via the filesystem. On filesystems
67+
that are tuned to make heavy use of caching to increase throughput, launching
68+
Julia workers can frequently timeout waiting for the standard output files to appear.
69+
In this case, it's better to use the `QRSHManager`, which uses SGE's `qrsh`
70+
command to bypass the filesystem and captures STDOUT directly.

0 commit comments

Comments
 (0)