10

I am learning elasticsearch. I have specified the mapping in 'mapping.json'. Its contents are

{
    "book" : {
         "_index" : {
             "enabled" : true
         },
         "_id" : {
             "index": "not_analyzed",
             "store" : "yes"
         },
        "properties" : {
            "author" : {
                "type" : "string"
            },
            "characters" : {
                "type" : "string"
            },
            "copies" : {
                "type" : "long",
                "ignore_malformed" : false
            },
            "otitle" : {
                "type" : "string"
            },
            "tags" : {
                "type" : "string"
            },
            "title" : {
                "type" : "string"
            },
            "year" : {
                "type" : "long",
                "ignore_malformed" : false,
                "index" : "analyzed"
            },
            "available" : {
                "type" : "boolean",
                "index" : "analyzed"
            }
        }
    }
}

The present mappings are

$ curl -XGET http://localhost:9200/_mapping?pretty
=> { 
   "development_users" : {
      "user" : {
         "properties" : {
            "email" : {
               "type" : "string"
            },
            "first_name" : {
               "type" : "string"
            },
            "id" : {
               "type" : "string",
               "index" : "not_analyzed",
               "omit_norms" : true,
               "index_options" : "docs",
               "include_in_all" : false
            },
            "last_name" : {
               "type" : "string"
            },
            "role" : {
               "type" : "string"
            }
         }
     }
  }
}

I create mapping for books using the command

$ curl http://localhost:9200/books -X POST -d @mapping.json
=> {"ok":true,"acknowledged":true}

But when list all mappings, i get:

$ curl -XGET http://localhost:9200/_mapping?pretty
=> { "books" : { },
   "development_users" : {
      "user" : {
         "properties" : {
            "email" : {
               "type" : "string"
            },
            "first_name" : {
               "type" : "string"
            },
            "id" : {
               "type" : "string",
               "index" : "not_analyzed",
               "omit_norms" : true,
               "index_options" : "docs",
               "include_in_all" : false
            },
            "last_name" : {
               "type" : "string"
            },
            "role" : {
               "type" : "string"
            }
         }
      }
   }
}

why isnt the mapping for books getting created as specified in mapping.json file?

Prasad Surase
  • 6,486
  • 6
  • 39
  • 58

3 Answers3

15

Please try this,

curl -XPUT 'http://localhost:9200/<indexname>/book/_mapping' -d @mapping.json
Vamsi Krishna
  • 3,742
  • 4
  • 20
  • 45
4

On AWS I got an error like

{"error":"Content-Type header [application/x-www-form-urlencoded] is not supported","status":406}

To fix it I added

-H 'Content-Type: application/json'
Brian C.
  • 6,455
  • 3
  • 32
  • 42
3

command

curl -XPUT localhost:9200/_template/logstash -d @/Users/template.json   

response

{"acknowledged":true}
OneCricketeer
  • 179,855
  • 19
  • 132
  • 245
change
  • 3,400
  • 7
  • 32
  • 42