Nikita
Nikita
RRunPod
Created by kazuph(かずふ)🍙 on 12/4/2024 in #⚡|serverless
Has anyone experienced issues with serverless /run callbacks since December?
Thanks for quick respond 💪
88 replies
RRunPod
Created by kazuph(かずふ)🍙 on 12/4/2024 in #⚡|serverless
Has anyone experienced issues with serverless /run callbacks since December?
We've recently had an sdk version that didn't work properly for about 2 weeks straight so...
88 replies
RRunPod
Created by kazuph(かずふ)🍙 on 12/4/2024 in #⚡|serverless
Has anyone experienced issues with serverless /run callbacks since December?
i guess discord is the only place
88 replies
RRunPod
Created by kazuph(かずふ)🍙 on 12/4/2024 in #⚡|serverless
Has anyone experienced issues with serverless /run callbacks since December?
not yet, i see this happens since 03:00 at night UTC
88 replies
RRunPod
Created by kazuph(かずふ)🍙 on 12/4/2024 in #⚡|serverless
Has anyone experienced issues with serverless /run callbacks since December?
For those who work with node.js and didn't resolve it with manually setting the content-type, here's the custom serializer from chunks into json (express)
public async handler(req: Request, res: Response, next: NextFunction) {
req.headers["content-type"] = "application/json";

let buffer = "";
req.setEncoding("utf8");

req.on("data", (chunk) => {
buffer += chunk;
});

req.on("end", () => {
try {
req.body = JSON.parse(buffer);
} catch (err) {
console.error("Error parsing JSON:", err);
}
next();
});
}
public async handler(req: Request, res: Response, next: NextFunction) {
req.headers["content-type"] = "application/json";

let buffer = "";
req.setEncoding("utf8");

req.on("data", (chunk) => {
buffer += chunk;
});

req.on("end", () => {
try {
req.body = JSON.parse(buffer);
} catch (err) {
console.error("Error parsing JSON:", err);
}
next();
});
}
88 replies
RRunPod
Created by kazuph(かずふ)🍙 on 12/4/2024 in #⚡|serverless
Has anyone experienced issues with serverless /run callbacks since December?
Yup
88 replies
RRunPod
Created by kazuph(かずふ)🍙 on 12/4/2024 in #⚡|serverless
Has anyone experienced issues with serverless /run callbacks since December?
it returns a valid output (can be seen in requests tab of an endpoint), but the webhook post request body doesn't seem to be a serialized json event setting content type manually didnt work for me trying to serialize it manually from chunks sent
88 replies
RRunPod
Created by kazuph(かずふ)🍙 on 12/4/2024 in #⚡|serverless
Has anyone experienced issues with serverless /run callbacks since December?
fails on every datacenter
88 replies
RRunPod
Created by kazuph(かずふ)🍙 on 12/4/2024 in #⚡|serverless
Has anyone experienced issues with serverless /run callbacks since December?
No description
88 replies
RRunPod
Created by kazuph(かずふ)🍙 on 12/4/2024 in #⚡|serverless
Has anyone experienced issues with serverless /run callbacks since December?
happens to everyone to be honest
88 replies
RRunPod
Created by sidou on 11/20/2024 in #⚡|serverless
"Failed to return job results. | Connection timeout to host https://api.runpod.ai/v2/91gr..."
I've noticed that some of my A6000/A40 workers have been falling into throttling mode very often lately
10 replies
RRunPod
Created by sidou on 11/20/2024 in #⚡|serverless
"Failed to return job results. | Connection timeout to host https://api.runpod.ai/v2/91gr..."
anyway if your images doesnt exceed the limit of 10 mbs of a payload and it works on some machines, i would suggest you to try redeploying it :\
10 replies
RRunPod
Created by sidou on 11/20/2024 in #⚡|serverless
"Failed to return job results. | Connection timeout to host https://api.runpod.ai/v2/91gr..."
or it might be related to volume attached to it
10 replies
RRunPod
Created by sidou on 11/20/2024 in #⚡|serverless
"Failed to return job results. | Connection timeout to host https://api.runpod.ai/v2/91gr..."
and i assume the code is fine as you have workers that are okay when did you deploy on your a100 pcie for the last time? I guess it might be related to the recent price drop for bigger GPUs followed by availability decrease
10 replies
RRunPod
Created by sidou on 11/20/2024 in #⚡|serverless
"Failed to return job results. | Connection timeout to host https://api.runpod.ai/v2/91gr..."
info about the SDK version is usually in your dockerfile or requirements.txt of your repository
10 replies
RRunPod
Created by sidou on 11/20/2024 in #⚡|serverless
"Failed to return job results. | Connection timeout to host https://api.runpod.ai/v2/91gr..."
What is your SDK version?
10 replies