InterviewSolution
Saved Bookmarks
| 1. |
What is the process of deleting an index in Elasticsearch? |
|
Answer» Deleting an index removes all of its shards, DOCUMENTS, and metadata. Use the following command to delete an index in Elasticsearch: DELETE /<index_name>EXAMPLE: To delete an index named my-index-321, we use the following command. DELETE /my-index-321 |
|