Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ElasticSearch Create Index, index already exists exception

I am trying a simple new index on elasticsearch cloud with postman (elastic v.52) But i cant see this index in my control panel.

I also received an "index not found" exception when I tried to send a delete request to the server.

I do not know what I'm doing wrong. Any ideas ?

Create index request: enter image description here

Delete request:

enter image description here

like image 293
Serdar KUŞ Avatar asked Oct 27 '25 06:10

Serdar KUŞ


1 Answers

I found the problem. It's index name uppercase problem. But elastic result don't explation this on exception details.

My wrong old index name "i_serdarTest"

New accepted index name "i_serdartest"

like image 136
Serdar KUŞ Avatar answered Oct 28 '25 20:10

Serdar KUŞ