I know that each document in my database has a unique '_id'. Is it possible to delete a specific document using its _id attribute? If so, how?
1 Answer
Yes, you can achieve that using the delete method
es.delete(index = "my_index", doc_type = "my_type", id = "1234")