Myron
Myron
Explore posts from servers
RRunPod
Created by Myron on 9/4/2024 in #⛅|pods
Slow Container Image download
Two EU datacenters are experiencing extreme slowdown during docker container image download, EU-SE-1 and EU-RO-1, to the point where our scaler can't keep up with load spikes because it takes > 30 minutes to start up a pod. This needs to be resolved as it's directly costing us money, we can't properly scale, causing our queue to keep spiking and building. Alongside being forced to use on-demand vs spot because of the slow download speed.
6 replies
RRunPod
Created by Myron on 7/10/2024 in #⛅|pods
Can't create pod via graphQL endpoint but works manually
I'm trying to create a new pod using a given template and networkvolume. I can do this using the website just fine however when I try to duplicate the exact same settings using the podRentInterruptable graphQL mutation I'm getting a There are no longer any instances available with the request specifications. Please try again later. error. Here is the mutation:
mutation {
podRentInterruptable(
input: {
volumeInGb: 100
containerDiskInGb: 5
cloudType: SECURE
bidPerGpu: 0.2
gpuCount: 1
gpuTypeId: "NVIDIA RTX 4090"
networkVolumeId: "${networkVolumeID}"
templateId: "${templateID}"
}
) {
id
imageName
env
machineId
machine {
podHostId
}
}
}
mutation {
podRentInterruptable(
input: {
volumeInGb: 100
containerDiskInGb: 5
cloudType: SECURE
bidPerGpu: 0.2
gpuCount: 1
gpuTypeId: "NVIDIA RTX 4090"
networkVolumeId: "${networkVolumeID}"
templateId: "${templateID}"
}
) {
id
imageName
env
machineId
machine {
podHostId
}
}
}
This exact same mutation works with the A6000, while I cannot select the A6000 in the UI. Could someone help explain to me what I'm doing wrong? I tried checking the graphQL docs but they're mostly useless.
59 replies