infomation.txt 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. ## 情报数据,对应clickhouse
  2. curl -H 'Content-Type: application/json' -XPUT http://192.168.3.149:9200/infomation -d '{
  3. "settings": {
  4. "index": {
  5. "analysis": {
  6. "analyzer": {
  7. "my_ngram": {
  8. "tokenizer": "my_ngram"
  9. },
  10. "douhao": {
  11. "type": "pattern",
  12. "pattern": ","
  13. }
  14. },
  15. "tokenizer": {
  16. "my_ngram": {
  17. "min_gram": "2",
  18. "type": "nGram",
  19. "max_gram": "2"
  20. }
  21. }
  22. },
  23. "number_of_shards": "2",
  24. "number_of_replicas": "0"
  25. }
  26. },
  27. "mappings": {
  28. "dynamic":false,
  29. "properties": {
  30. "id": {
  31. "type": "keyword"
  32. },
  33. "title": {
  34. "type": "text",
  35. "analyzer": "my_ngram"
  36. },
  37. "summary": {
  38. "type": "text",
  39. "analyzer": "my_ngram"
  40. },
  41. "content": {
  42. "type": "text",
  43. "analyzer": "my_ngram"
  44. },
  45. "basis": {
  46. "type": "text",
  47. "analyzer": "my_ngram"
  48. },
  49. "valuedecrip": {
  50. "type": "text",
  51. "analyzer": "my_ngram"
  52. },
  53. "starttime": {
  54. "type": "long"
  55. },
  56. "endtime": {
  57. "type": "long"
  58. },
  59. "data_sourcetype": {
  60. "type": "keyword"
  61. },
  62. "class": {
  63. "type": "keyword"
  64. },
  65. "area": {
  66. "type": "keyword"
  67. },
  68. "city": {
  69. "type": "keyword"
  70. },
  71. "publishtime": {
  72. "type": "long"
  73. },
  74. "createtime": {
  75. "type": "long"
  76. },
  77. "rule_id": {
  78. "type": "keyword"
  79. },
  80. "topclass": {
  81. "type": "keyword"
  82. },
  83. "subclass": {
  84. "type": "keyword"
  85. },
  86. "tag_set": {
  87. "properties": {
  88. "wuye": {
  89. "properties":{
  90. "scale": {
  91. "type": "long"
  92. },
  93. "period": {
  94. "type": "long"
  95. },
  96. "property_form": {
  97. "type": "text",
  98. "analyzer": "douhao"
  99. },
  100. "changehand": {
  101. "type": "float"
  102. },
  103. "changehandindex": {
  104. "type": "long"
  105. },
  106. "isfirsthand": {
  107. "type": "long"
  108. },
  109. "owner_type": {
  110. "type": "integer"
  111. },
  112. "isfile": {
  113. "type": "long"
  114. }
  115. }
  116. }
  117. }
  118. },
  119. "datajson_expiredate": {
  120. "type": "long"
  121. },
  122. "datajson_toptype": {
  123. "type": "keyword"
  124. },
  125. "datajson_subtype": {
  126. "type": "keyword"
  127. },
  128. "datajson_buyertel": {
  129. "type": "keyword"
  130. },
  131. "datajson_winnertel": {
  132. "type": "keyword"
  133. },
  134. "datajson": {
  135. "type": "text",
  136. "analyzer": "my_ngram"
  137. },
  138. "datajson_id": {
  139. "type": "keyword"
  140. },
  141. "business_label": {
  142. "type": "keyword"
  143. }
  144. }
  145. }
  146. }'