Zapisz format daty w elasticsearch

Spotkałem problem, gdy chcę dodać jeden ciąg datetime do Elasticsearch.

Dokument jest poniżej:

{"LastUpdate" : "2013/07/24 00:00:00"}

Ten dokument wywołał błąd"NumberFormatException" [For input string: \"20130724 00:00:00\"]

Wiem, że mogę używać formatu daty w Elasticsearch, ale nie wiem, jak używać nawet czytam dokument na stronie.

{"LastUpdate": {
    "properties": {
        "type": "date", 
        "format": "yyyy-MM-dd"}
    }
}

i

{"LastUpdate": {
    "type": "date", 
    "format": "yyyy-MM-dd"
    }
}

jest źle.

Jak mogę przenieść ciąg datetime do formatu daty w Elasticsearch?

Jak mogę przechowywać ciąg danych datetime bezpośrednio w Elasticsearch?

questionAnswers(1)

yourAnswerToTheQuestion