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
Copy file name to clipboardExpand all lines: docs/guide/cluster.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ This is particularly useful when you've installed many Python packages and pip's
56
56
57
57
## Benefits of Using This Utility
58
58
59
-
- Access to multiple servers (roselab1~4) independently
59
+
- Access to multiple servers (roselab1-5) independently
60
60
- Quick replication of your environment on another server when your primary server is overloaded
61
61
- Easy synchronization of environments across multiple servers
62
62
- Set up external access to JupyterLab, TCP services, or web services without SSH forwarding
@@ -94,7 +94,7 @@ HTTPS adds a security layer and is more browser-friendly but only supports hoste
94
94
95
95
## Automation
96
96
97
-
You can create scripts for frequent or scheduled synchronization. The current inter-server bandwidth is 25Gbps, with plans to upgrade to 100Gbps. The 300MB/s data transfer rate is well within these limits.
97
+
You can create scripts for frequent or scheduled synchronization. The inter-server bandwidth is 100Gbps after the October 2024 server migration. The 300MB/s data transfer rate is well within these limits.
Copy file name to clipboardExpand all lines: docs/guide/index.md
+9-5Lines changed: 9 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ Submit your request using the [Account Request Form](https://docs.google.com/for
45
45
- You'll have root permission to install or remove software (except the NVIDIA driver and kernel modules).
46
46
47
47
::: warning
48
-
The host and container NVIDIA driver versions must match. (You cannot change host driver versions, which are in the [config table](../config/)) If you see `Failed to initialize NVML: Driver/library version mismatch`, contact the admin.
48
+
The host and container NVIDIA driver versions must match. If you see `Failed to initialize NVML: Driver/library version mismatch`, use the fix script: `sudo /utilities/nvidia-upgrade.sh && sudo reboot`. See the [Troubleshooting](./troubleshooting#nvidia-driver-issues) guide for details.
49
49
:::
50
50
51
51
### 2. Access Your Container
@@ -184,7 +184,7 @@ If you're still experiencing connection issues after this step, please contact t
184
184
185
185
### 4. Explore Your Container
186
186
187
-
Now let's check the resources assigned to you. First, use `lscpu` to check the CPU cores. Although the CPU indices may differ, you should see 12 online CPU cores. Here's an example output:
187
+
Now let's check the resources assigned to you. First, use `lscpu` to check the CPU cores. Although the CPU indices may differ, you should see your allocated CPU cores. Here's an example output:
188
188
189
189
```bash
190
190
$ lscpu
@@ -195,7 +195,7 @@ CPU(s): 56
195
195
...
196
196
```
197
197
198
-
Next, you can inspect the memory assigned to you using the `/proc/meminfo` file. You should see around 128 GB of total RAM.
198
+
Next, you can inspect the memory assigned to you using the `/proc/meminfo` file. The memory quota varies by server (see [Limitations](./limit#memory-quota-by-server) for details).
199
199
200
200
```bash
201
201
$ cat /proc/meminfo
@@ -204,9 +204,13 @@ MemFree: 96093828 kB
204
204
MemAvailable: 96883860 kB
205
205
```
206
206
207
-
To see the file system, run `df -H` . You would see
207
+
::: tip Note
208
+
Memory quotas differ by server: roselab1-3 have standard quota, roselab4 has 2x quota, and roselab5 has 4x quota. See the [Memory Limits](./limit#memory-limits) section for more information.
209
+
:::
210
+
211
+
To see the file system, run `df -H` . You would see
208
212
209
-
* the system SSD with around 256 GB of available space,
213
+
* the system SSD (size varies by server),
210
214
* a 5 TB private data HDD mounted under `/data` that is only accessible to you, and
211
215
* a 5 TB public data HDD mounted under `/public` that is accessible to everyone.
0 commit comments