123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- ## 情报数据,对应clickhouse
- curl -H 'Content-Type: application/json' -XPUT http://192.168.3.149:9200/infomation -d '{
- "settings": {
- "index": {
- "analysis": {
- "analyzer": {
- "my_ngram": {
- "tokenizer": "my_ngram"
- },
- "douhao": {
- "type": "pattern",
- "pattern": ","
- }
- },
- "tokenizer": {
- "my_ngram": {
- "min_gram": "2",
- "type": "nGram",
- "max_gram": "2"
- }
- }
- },
- "number_of_shards": "2",
- "number_of_replicas": "0"
- }
- },
- "mappings": {
- "dynamic":false,
- "properties": {
- "id": {
- "type": "keyword"
- },
- "title": {
- "type": "text",
- "analyzer": "my_ngram"
- },
- "summary": {
- "type": "text",
- "analyzer": "my_ngram"
- },
- "content": {
- "type": "text",
- "analyzer": "my_ngram"
- },
- "basis": {
- "type": "text",
- "analyzer": "my_ngram"
- },
- "valuedecrip": {
- "type": "text",
- "analyzer": "my_ngram"
- },
- "starttime": {
- "type": "long"
- },
- "endtime": {
- "type": "long"
- },
- "data_sourcetype": {
- "type": "keyword"
- },
- "class": {
- "type": "keyword"
- },
- "area": {
- "type": "keyword"
- },
- "city": {
- "type": "keyword"
- },
- "publishtime": {
- "type": "long"
- },
- "createtime": {
- "type": "long"
- },
- "rule_id": {
- "type": "keyword"
- },
- "topclass": {
- "type": "keyword"
- },
- "subclass": {
- "type": "keyword"
- },
- "tag_set": {
- "properties": {
- "wuye": {
- "properties":{
- "scale": {
- "type": "long"
- },
- "period": {
- "type": "long"
- },
- "property_form": {
- "type": "text",
- "analyzer": "douhao"
- },
- "changehand": {
- "type": "float"
- },
- "changehandindex": {
- "type": "long"
- },
- "isfirsthand": {
- "type": "long"
- },
- "owner_type": {
- "type": "integer"
- },
- "isfile": {
- "type": "long"
- }
- }
- }
- }
- },
- "datajson_expiredate": {
- "type": "long"
- },
- "datajson_toptype": {
- "type": "keyword"
- },
- "datajson_subtype": {
- "type": "keyword"
- },
- "datajson_buyertel": {
- "type": "keyword"
- },
- "datajson_winnertel": {
- "type": "keyword"
- },
- "datajson": {
- "type": "text",
- "analyzer": "my_ngram"
- },
- "datajson_id": {
- "type": "keyword"
- },
- "business_label": {
- "type": "keyword"
- }
-
- }
- }
- }'
|