2016-05-30 8 views
0

以下のマッピングを試してみるたびにエラーが発生します。ルートマッピング定義にサポートされていないパラメータがあります

"copy_to"に必要なことはありますか?

PUT myindex/mytype/_mapping 
{ 
    "mappings": { 
    "properties": { 
    "manufacturer": { 
    "type": "string", 
    "copy_to": "full_make_model_name" 
    }, 
    "name": { 
    "type": "string", 
    "copy_to": "full_make_model_name" 
    }, 
    "full_make_model_name": { 
    "type": "string", 
    "index": "analyzed" 
    } 
} 
} 
} 

答えて

1

試してみてください。

PUT myindex/_mapping/mytype 
{ 
    "properties": { 
    "manufacturer": { 
    "type": "string", 
    "copy_to": "full_make_model_name" 
    }, 
    "name": { 
    "type": "string", 
    "copy_to": "full_make_model_name" 
    }, 
    "full_make_model_name": { 
    "type": "string", 
    "index": "analyzed" 
    } 
} 
} 

https://www.elastic.co/guide/en/elasticsearch/reference/2.3/indices-put-mapping.html#indices-put-mapping

+0

また、これは私のために動作しません。 : – sunkuet02

+0

同じエラーが発生していますか? – alpert

+0

はい。同じエラー!:( – sunkuet02

関連する問題