org.elasticsearch.client.ResponseException: method [DELETE], host [http://gspesny01p.nam.nsroot.net:15100], URI [/_search/scroll], status line [HTTP/1.1 404 Not Found]
时间: 2024-01-27 19:06:36 浏览: 156
elasticsearch-js:用于Node.js的官方Elasticsearch客户端库
这个异常是由 Elasticsearch 客户端引发的,指示发生了一个响应错误。根据异常信息,发出了一个 DELETE 请求,但 Elasticsearch 返回了一个 404 Not Found 的状态码。这意味着你尝试删除一个不存在的资源。
请确保请求的 URI(`/_search/scroll`)和主机地址(`http://gspesny01p.nam.nsroot.net:15100`)是正确的,并且你要删除的资源确实存在。你可能需要检查你的代码中是否有错误,或者验证请求的正确性。
阅读全文