PUT /fault_order_detail_test
{
"settings": {
"number_of_shards": 1,
"number_of_replicas": 1
}
, "mappings": {
"fault_order_detail_test":{
"properties":{
"id":{"type":"keyword"}
,"fault_desc":{"type":"keyword"}
,"fault_desc1":{"type":"text"}
}
}
}
}
PUT /fault_order_detail_test/_settings
{ "index" : { "max_result_window" : 1000000}}
GET /fault_order_detail_test/_search
添加字段
PUT /niuniu/_mapping/niuniu
{
"properties": {
"name1": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
}
}
}