123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- curl -XPUT http://127.0.0.1:19800/supplier_product_v2 -d '{
- "settings": {
- "index": {
- "search": {
- "showlog": {
- "threshold": {
- "query": {
- "trace": "100ms"
- },
- "fetch": {
- "tract": "100ms"
- }
- }
- }
- },
- "analysis": {
- "analyzer": {
- "my_ngram_title": {
- "filter": [
- "lowercase"
- ],
- "tokenizer": "my_ngram_title"
- },
- "my_ngram": {
- "tokenizer": "my_ngram"
- }
- },
- "tokenizer": {
- "my_ngram_title": {
- "token_chars": [
- "letter",
- "digit",
- "punctuation",
- "symbol"
- ],
- "min_gram": "1",
- "type": "nGram",
- "max_gram": "1"
- },
- "my_ngram": {
- "min_gram": "2",
- "type": "nGram",
- "max_gram": "2"
- }
- }
- },
- "number_of_shards": "15",
- "number_of_replicas": "0"
- }
- },
- "mappings": {
- "supplier_product": {
- "_id": {
- "path": "company_id"
- },
- "_all": {
- "enabled": false
- },
- "properties": {
- "id": {
- "type": "long"
- },
- "company_id": {
- "index": "not_analyzed",
- "type": "string"
- },
- "supplier": {
- "index": "not_analyzed",
- "type": "string",
- "fields": {
- "p_supplier": {
- "analyzer": "my_ngram",
- "type": "string"
- }
- }
- },
- "area_code": {
- "index": "not_analyzed",
- "type": "string"
- },
- "area": {
- "index": "not_analyzed",
- "type": "string"
- },
- "city": {
- "index": "not_analyzed",
- "type": "string"
- },
- "district": {
- "index": "not_analyzed",
- "type": "string"
- },
- "business_model": {
- "type": "byte"
- },
- "productlist": {
- "properties": {
- "name": {
- "analyzer": "my_ngram",
- "type": "string"
- },
- "brand": {
- "analyzer": "my_ngram_title",
- "type": "string"
- },
- "model": {
- "analyzer": "my_ngram_title",
- "type": "string"
- }
- }
- },
- "bid_num": {
- "type": "integer"
- }
- }
- }
- }
- }'
|