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
Every time I try to install around 1 GB of packages I get the 'killed' error message, then I get disconnected and the server gets reset. I have tried different packages such as torch and an LLM and it seems to occur around 1 GB of downloads. I have also tried on two different service providers, namely europlots and another one, can't remember the name.
Is there a bandwidth limit or could there be some other cause of the issue?
Hi,
I'm Mr. Diversion, a very friendly guy.
Every time I try to install around 1 GB of packages I get the 'killed' error message, then I get disconnected and the server gets reset. I have tried different packages such as torch and an LLM and it seems to occur around 1 GB of downloads. I have also tried on two different service providers, namely europlots and another one, can't remember the name.
Is there a bandwidth limit or could there be some other cause of the issue?
Here is the SDL I'm using:
version: "2.0"
services:
myapp:
image: ubuntu:latest
expose:
- port: 22
as: 22
to:
- global: true
- port: 80
as: 80
to:
- global: true
env:
- "SSH_PASS=insertsshpasshere"
command:
- "bash"
- "-c"
args:
- 'apt-get update ; apt-get upgrade -y ; apt install -y ssh;
echo "PermitRootLogin yes" >> /etc/ssh/sshd_config ;
(echo $SSH_PASS; echo $SSH_PASS) | passwd root ;
service ssh start;
echo ==== ssh user:"root" === ;
echo === ssh pass:"$SSH_PASS" === ;
sleep infinity'
params:
storage:
data:
mount: /mnt/data
readOnly: false
profiles:
compute:
myapp:
resources:
cpu:
units: 1
memory:
size: 1Gi
storage:
- size: 1Gi
- name: data
size: 10Gi
attributes:
persistent: true
class: beta3
gpu:
units: 1
attributes:
vendor:
nvidia:
placement:
dcloud:
pricing:
myapp:
denom: uakt
amount: 1000
deployment:
myapp:
dcloud:
profile: myapp
count: 1
The text was updated successfully, but these errors were encountered: