数据采集
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

es_mapping_tpdaren.go 2.2 KiB

10 months ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. package md
  2. const ZhiosTpdarenEsIndex = "zhios_tpdaren"
  3. const ZhiosTpdarenEsIndexNew = "zhios_tpdaren_new"
  4. const ZhiosTpdarenEsMapping = `
  5. {
  6. "settings" : {
  7. "number_of_shards" : 2,
  8. "number_of_replicas" : 1
  9. },
  10. "mappings":{
  11. "properties":{
  12. "id":{
  13. "type": "integer"
  14. },
  15. "is_hot":{
  16. "type": "integer"
  17. },
  18. "video_type":{
  19. "type": "keyword"
  20. },
  21. "appid":{
  22. "type": "keyword"
  23. },
  24. "description":{
  25. "type": "keyword"
  26. },
  27. "episode":{
  28. "type": "integer"
  29. },
  30. "channel_theater_id":{
  31. "type": "integer"
  32. },
  33. "douyin_theater_id":{
  34. "type": "integer"
  35. },
  36. "kuaishou_theater_id":{
  37. "type": "integer"
  38. },
  39. "update_time":{
  40. "type": "integer"
  41. },
  42. "image_url":{
  43. "type": "keyword"
  44. },
  45. "is_end":{
  46. "type": "integer"
  47. },
  48. "pay_episode":{
  49. "type": "integer"
  50. },
  51. "material":{
  52. "type": "keyword"
  53. },
  54. "online_time":{
  55. "type": "keyword"
  56. },
  57. "time":{
  58. "type": "integer"
  59. },
  60. "type":{
  61. "type": "keyword"
  62. },
  63. "title":{
  64. "type": "keyword"
  65. },
  66. "data":{
  67. "type": "text"
  68. }
  69. }
  70. }
  71. }`
  72. const ZhiosTpdarenNewEsMapping = `
  73. {
  74. "settings" : {
  75. "number_of_shards" : 2,
  76. "number_of_replicas" : 1
  77. },
  78. "mappings":{
  79. "properties":{
  80. "id":{
  81. "type": "keyword"
  82. },
  83. "is_close":{
  84. "type": "integer"
  85. },
  86. "is_hot":{
  87. "type": "integer"
  88. },
  89. "video_type":{
  90. "type": "keyword"
  91. },
  92. "cate":{
  93. "type": "keyword"
  94. },
  95. "appid":{
  96. "type": "keyword"
  97. },
  98. "description":{
  99. "type": "keyword"
  100. },
  101. "episode":{
  102. "type": "integer"
  103. },
  104. "channel_theater_id":{
  105. "type": "integer"
  106. },
  107. "douyin_theater_id":{
  108. "type": "integer"
  109. },
  110. "kuaishou_theater_id":{
  111. "type": "integer"
  112. },
  113. "update_time":{
  114. "type": "integer"
  115. },
  116. "image_url":{
  117. "type": "keyword"
  118. },
  119. "is_end":{
  120. "type": "integer"
  121. },
  122. "pay_episode":{
  123. "type": "integer"
  124. },
  125. "material":{
  126. "type": "keyword"
  127. },
  128. "online_time":{
  129. "type": "keyword"
  130. },
  131. "time":{
  132. "type": "integer"
  133. },
  134. "type":{
  135. "type": "keyword"
  136. },
  137. "title":{
  138. "type": "keyword"
  139. },
  140. "data":{
  141. "type": "text"
  142. }
  143. }
  144. }
  145. }`