Deploy from docker hub stuck
I have a basic even-odd container which takes the number input and reponds if it's even or odd, I have uploaded the container to docker hub: phmagic/runpod-test:latest. When I go to set up a new serverless pod, it asks for the container image and i put in
phmagic/runpod-test:latest
. All request hang for more than 400s, I can't seem to get even the basic example to work, documentation is very spotty about how to do this11 Replies
when I run this locally with docker desktop, it works
Im surprised this is happening actually, ive never seen something take 400s for a basic thing like this
How many max workers do u have?
just wondering
I set it to 3
and it kept going and charging me, so I decreased it to 1
Interesting. 👁️... hm.
last request hung for 1,465.06s
Can u ping your endpoint + worker id?
Or just endpoint is fine
I ping health and it's fine
@Justin Merrell / @Madiator2011 [EU] - seems like a question for staff to look into. That is insanely strange
Ive never experienced it myself - my requests are quite fast
Im guessing ur just trigging run through the UI on runpod? and it hangs for an extremely long time on basic even / odd? wow
could be a bad endpoint, but share your endpoint id / maybe the request id and i think they can take a look
cause i do think.. that sounds unusual
secret_fuchsia_krill
https://api.runpod.ai/v2/asgol83hz7qius/run
request_id: 74c3e0dd-2b41-4339-8b1b-800dc2e19612-u1
3136e92a-af80-43d9-be1a-8e112a57c6fb-u1
also tried using a Rest client, same results
just wondering what is ur input? lol i keep getting exec errors? not sure if this is runpod or not; wondering if im sending something in wrong. im guessing ur code looks like:
https://blog.runpod.io/serverless-create-a-basic-api/
actually u know what this could be
are u on a mac?
@phmagic
AHHH. U know try to do:
--platform=linux/amd64
I think this is ur issue on dockerhub command
cause i see ur image is built for arm64
urgh. this is something they should really address, imma comment this in their #🧐|feedback
but try to build it for an amd64 platform
Btw this is just my pure hypothetical guess b/c I tried to deploy ur image and i keep getting an error with exec 7 etc etc. so i think something is wrong and isnt something i think about now cause im so used to it, but def a runpod issue
yes, on mac, I'll try it
specifying the platform works! thank you! @justin