2016-10-28 16 views
1

は(http://pastebin.com/T7GcHSXjを参照)(1.4 elasticsearch)私のインデックスに取り組んでいない:更新マッピングは、私は理解していない私はこのエラーを取得し、私は私のインデックスを更新、およびメソッドcopy_toから作成された新しいフィールドを追加しようとすると

"エラー": " 解析残りのフィールドの後に空でないMapperParsingException [ルート型のマッピング:![マッピング: {tInfoclient = {プロパティ= {クライアント= {プロパティ= {d_naiss_cli = {タイプ=文字列、 copy_to = full_infonom_cli_20 = {type = string、copy_to = full_info}、full_info = {type = string}、 dc_cli = {format = dateOptionalTime、type = date}、 no_ctrat = {type = string}、no_tel_empcli = {type = string}、no_tel_empcli = {type = string}、no_tel_empcli = {type = string}、no_tel_empcli = {type = string}、no_tel_empcli = {type = string} 、 vtie_cli = {type = string}、c_post_cli = {type = string}、 }}}}}}]]」、 "ステータス":400}

私は、Webサイトからドキュメントを追ったが、ない手がかり: https://www.elastic.co/guide/en/elasticsearch/reference/1.4/indices-put-mapping.html https://www.elastic.co/guide/en/elasticsearch/guide/1.x/custom-all.html

答えて

1

updatiそれが可能になるとき、私はドキュメントを読み違えたときに...悪い感じているこの回答を受け入れます

curl -XPUT 'http://maprvm:9200/maprdb/_mapping/tInfoclient' -d '{ 
      "properties": { 
       "Client": { 
        "properties": { 
         "d_naiss_cli": { 
          "type": "string", 
          "copy_to": "full_info" 
         }, 
         "pr_cli_20": { 
          "type": "string", 
          "copy_to": "full_info" 
         }, 
         "nom_cli_20": { 
          "type": "string", 
          "copy_to": "full_info" 
         }, 
         "full_info": { 
          "type":  "string" 
         }, 
         "dc_cli": { 
          "format": "dateOptionalTime", 
          "type": "date" 
         }, 
         "no_coEmprunteur": { 
          "type": "string" 
         }, 
         "cmpl_voie_cli": { 
          "type": "string" 
         }, 
         "loc_cli": { 
          "type": "string" 
         }, 
         "no_tel_cli": { 
          "type": "string" 
         }, 
         "no_ctrat": { 
          "type": "string" 
         }, 
         "no_tel_empcli": { 
          "type": "string" 
         }, 
         "voie_cli": { 
          "type": "string" 
         }, 
         "c_post_cli": { 
          "type": "string" 
         }, 
         "c_qual": { 
          "type": "string" 
         }, 
         "ad_e_mail": { 
          "type": "string" 
         }, 
         "no_telp": { 
          "type": "string" 
         }, 
         "ptel_empcli": { 
          "type": "string" 
         } 
        } 
       } 
      } 

}' 
+0

:NGマッピングタイプあなたはmappingsセクションと、すでにURLで指定されたもの以来のタイプ名を削除する必要があります:/ – kulssaka

関連する問題