For questions about mapping in Elasticsearch; the process of defining how a document should be mapped to the index.
I met a problem when I want to add one datetime string into Elasticsearch. The document is below: {"LastUpdate" : "2013/07/24 00:00:00"} This …
datetime elasticsearch datetime-format elasticsearch-mappingWhen type is declared as string, Elasticsearch 6.0 will show this error. "name" => [ "type" => "string", "analyzer" => "ik_max_…
elasticsearch elasticsearch-mapping elasticsearch-6In my system, the insertion of data is always done through csv files via logstash. I never pre-define the mapping. …
elasticsearch logstash logstash-grok elasticsearch-mappingI can't find any examples of how to structure an array of strings in elasticsearch when trying to PUT a …
elasticsearch clojure elasticsearch-5 elasticsearch-mappingIs there anyway I can rename an element in an existing elasticsearch mapping without having to add a new element ? …
elasticsearch elasticsearch-mappingI have this mapping PUT /mytest { "mappings":{ "properties": { "value": { "type": "object" } } } } When I insert this document POST /mytest/_doc/4 { "value": { "…
elasticsearch elasticsearch-mappingI have a few documents with the a name field in it. I am using analyzed version of the name …
elasticsearch elasticsearch-mappingI am trying to to create a mapping that will allow me to have a document looking like this: { "created_…
elasticsearch elasticsearch-mappingHow would I recreate the following index using Elasticsearch Nest API? Here is the json for the index including the …
elasticsearch indexing nest elasticsearch-mapping elasticsearch-analyzersI need to autocomplete phrases. For example, when I search "dementia in alz", I want to get "dementia in alzheimer's". …
elasticsearch elasticsearch-mapping elasticsearch-query