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
It seems that the kill and query commands call the "v1/query/" endpoint, however I'm getting the following 404 path not found error:
{"timestamp: "...", "status":404, "error": "Not Found", "path":"v1/query/{query-id}"}
Looks like doing DELETE /v1/query/{query-id} was the suggested mechanism back in 2019 (https://github.com/prestodb/presto/wiki/HTTP-Protocol), but they've since changed that at some point to instead doing the DELETE against the nextUri.
It seems that the kill and query commands call the "v1/query/" endpoint, however I'm getting the following 404 path not found error:
{"timestamp: "...", "status":404, "error": "Not Found", "path":"v1/query/{query-id}"}
I noticed that in Presto + Trino documentation, they say that these get and delete requests should be made to the nextUri, which include the "v1/statement" path as opposed to above: https://prestodb.io/docs/current/develop/client-protocol.html
The text was updated successfully, but these errors were encountered: