Delete Serverless Endpoint via the API?
I am trying to delete the serverless endpoint via the API, but everytime I make a request to the endpoint, I get an internal error:
Via the Python API:
Response:
I confirmed that my min and max is set to zero as per the GraphQL docs:
Solution:Jump to solution
Does it work when you use the REST API? https://rest.runpod.io/v1/docs#tag/endpoints/DELETE/endpoints/{endpointId}
5 Replies
Solution
Does it work when you use the REST API? https://rest.runpod.io/v1/docs#tag/endpoints/DELETE/endpoints/{endpointId}
Hm yes, that worked
Any reason why the REST endpoint worked?
fwiw, I also didn't scale down my worker before deleting (I am able to call that endpoint with two active workers). This is fine for my usage case, I just wanted to surface in case that's unexpected behavior
I don't know very much about the GQL API 😄 Maybe @nathaniel can explain how it's different?
rest api just goes and calls gql for this operation so if it's allowed in rest it's also allowed in gql.
I believe it actually used to be an error but was just adding another annoying step to the UI flow, so we made delete endpoint also take care of that in gql
as for why the code for gql was not working before, idk :shrug: but since rest api is just doing the same thing on the backend it was probably an error in calling it.
those opaque error messages from gql are unfortunate and someday we should figure out how to expose more info to users in them without revealing a bunch of internals. As devs, they are annoying to us too, but at least we can go look at the logs to see what actually went wrong
the python sdk was created long before rest api existed, which is why it hits graphql all over the place
Got it, thank you for all the additional context.
FWIW, I just retried the original sample and it is still experiencing the "Something went wrong. Please try again later or contact support" error so the failure isn't intermittent.
Let me know if there is any additional details that would be helpful for debugging
But anyways, the REST endpoint solves my problem (automating inference evaluation runs programatically) so I'll move forward using that API moving forward. Thanks yall!