Skip to content

Instantly share code, notes, and snippets.

@antunesleo
Last active September 4, 2018 00:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save antunesleo/0ba247886ed1c7a87302775e6f061055 to your computer and use it in GitHub Desktop.
Save antunesleo/0ba247886ed1c7a87302775e6f061055 to your computer and use it in GitHub Desktop.
mapping index movies in elasticsearch
PUT movies
{
"mappings": {
"_doc": {
"properties": {
"title" : { "type" : "text" },
"year": {"type" : "integer"},
"director": {"type": "text"},
"stars": {"type": "text"}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment