4

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

4
  • Can you list down available indexes using GET /_cat/indices?v ?? Commented Sep 25, 2017 at 9:24
  • Yes, i did. Returned index not found exception again. Commented Sep 25, 2017 at 9:27
  • May be you have tried wrong request.Please try request from this page elastic.co/guide/en/elasticsearch/reference/current/… Commented Sep 25, 2017 at 9:44
  • Thanks, but i can't see my create request index name on this result. Commented Sep 25, 2017 at 10:01

1 Answer 1

3

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"

Sign up to request clarification or add additional context in comments.

2 Comments

Elasticsearch does tell you that it doesn't allow uppercase letters in index names. Maybe your REST client is messing things up? I've testet with 5.6, but 5.2 should be the same. The error includes the following: "type": "invalid_index_name_exception", "reason": "Invalid index name [i_serdarTest], must be lowercase",
Maybe you right. Because i received true exception messages on kibana rest console.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.