Last active
May 12, 2016 05:56
-
-
Save johtani/1e1c67baed9d3db5a1ba to your computer and use it in GitHub Desktop.
Does not reproduce the mapping error...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ curl -XPUT localhost:9200/test_idx -d @config.json | |
{"error":"MapperParsingException[mapping [test_type]]; nested: IllegalArgumentException[Invalid format: [not_analyze]: Illegal pattern component: n]; nested: IllegalArgumentException[Illegal pattern component: n]; ","status":400}jupiter:ess_env |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"mappings": { | |
"test_type": { | |
"properties": { | |
"title" : { | |
"type": "string" | |
}, | |
"timestamp" : { | |
"type": "date", | |
"format": "not_analyze" | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment