Commit 027c2229 authored by 李小芳's avatar 李小芳

修改mapping

parent 0d607438
{ {
"dynamic": "strict", "mappings": {
"properties": { "properties": {
"id": { "id": {
"type": "long" "type": "long"
}, },
"name": { "name": {
"type": "string" "type": "keyword"
}, },
"mapping_type": { "mapping_type": {
"type": "string" "type": "keyword"
}, },
"is_online": { "is_online": {
"type": "boolean" "type": "boolean"
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
"type": "long" "type": "long"
}, },
"tag_names": { "tag_names": {
"type": "string", "type": "text",
"analyzer": "gm_default_index", "analyzer": "gm_default_index",
"search_analyzer": "gm_default_search" "search_analyzer": "gm_default_search"
}, },
...@@ -47,11 +47,11 @@ ...@@ -47,11 +47,11 @@
"type": "long" "type": "long"
}, },
"tags_v3_name": { "tags_v3_name": {
"type": "string", "type": "keyword"
"index":"not_analyzed"
}, },
"is_show_index": { "is_show_index": {
"type": "boolean" "type": "boolean"
} }
} }
}
} }
...@@ -111,11 +111,7 @@ def put_mapping(es, index_prefix, doc_type, mapping, delete=False): ...@@ -111,11 +111,7 @@ def put_mapping(es, index_prefix, doc_type, mapping, delete=False):
import copy import copy
mapping_copy = copy.deepcopy(mapping) mapping_copy = copy.deepcopy(mapping)
mapping_copy = _mapping_modify(es, doc_type, mapping_copy) mapping_copy = _mapping_modify(es, doc_type, mapping_copy)
return cl.put_mapping(index=index, doc_type="_doc", body=mapping_copy)
print(mapping_copy)
print(index)
print(doc_type)
return cl.put_mapping(index=index, doc_type=doc_type, body=mapping_copy)
def alias_shift(es, alias, old_index, new_index): def alias_shift(es, alias, old_index, new_index):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment