You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add interactive partition with sinteractive defaults
Configure new interactive partition (compute03-04, 06-07) with 8-hour
default / 1-day max wall time and 3-job-per-user QOS limit. Update
sinteractive to default to the interactive partition with 2 CPUs and
8G memory. Document partition setup in admin guide.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
|`--attach JOBID`| Reattach to a running session ||
45
47
|`--list`| List running sinteractive sessions ||
46
48
|`-h`, `--help`| Show help message ||
@@ -50,7 +52,7 @@ All other arguments are passed directly to `sbatch`, so you can use any `sbatch`
50
52
### Examples
51
53
52
54
```bash
53
-
# Default: 8-hour session on the normal partition
55
+
# Default: 8-hour session, 2 CPUs, 8G memory
54
56
sinteractive
55
57
56
58
# Run on a specific node
@@ -59,11 +61,14 @@ sinteractive --node compute01
59
61
# 2-hour session on the rna partition
60
62
sinteractive --time=2:00:00 --partition=rna
61
63
62
-
#Request extra memory and CPUs
64
+
#Override default memory and CPUs
63
65
sinteractive --mem=16G --cpus-per-task=4
64
66
65
67
# GPU session
66
68
sinteractive --partition=gpu --gpus=1 --mem=16G
69
+
70
+
# Longer session on the normal partition (up to 3 days)
71
+
sinteractive --time=1-12:00:00 --partition=normal
67
72
```
68
73
69
74
## How it works
@@ -124,4 +129,7 @@ scancel <JOBID>
124
129
```
125
130
126
131
!!! warning "Wall time"
127
-
The default wall time is **8 hours**. If you need more, pass `--time` explicitly. The `normal` partition allows up to 7 days.
132
+
The default wall time is **8 hours** on the `interactive` partition, with a maximum of **1 day**. For longer sessions, switch to the `normal` partition (up to 3 days): `sinteractive --partition=normal --time=2-00:00:00`.
133
+
134
+
!!! info "Job limit"
135
+
The `interactive` partition limits each user to **3 concurrent jobs**. If you need more simultaneous sessions, use the `normal` partition.
0 commit comments