I want to delete some documents from Elasticsearch.
I used this API DELETE /hiddenservices/_doc/[_id]
.(hiddenservices
is a name of index).
Generally, it worked well, but when the value of _id is a website URL, the API didn’t work.
For example, let’s say _id of one document is http://blablabla.blabla/.
In this case, the API will be DELETE /hiddenservices/_doc/http://blablabla.blabla/
and never work.
Because I don’t have much experience in Elasticsearch, I am not sure how to fix this issue.
Please anyone help me with this…