To delete an index, use the following request:index를 삭제하기 위해서, 아래 request를 사용한다.DELETE /my_indexYou can delete multiple indices with this:아래와 같이, 다수의 indices를 지울 수도 있다.DELETE /index_one,index_two DELETE /index_*You can even delete all indices with this:_모든_ indices를 지울 수도 있다.DELETE /_all DELETE /*For some, the ability to delete all your data with a single command is a very scary prospect. If you..