device_location_es.sql 915 B

12345678910111213141516171819202122232425262728293031323334353637
  1. 创建索引
  2. POST http://172.26.0.190:9200/device_location_index
  3. 给索引加mapping
  4. POST http://172.26.0.190:9200/device_location_index/device_location_type/_mapping
  5. {
  6. "device_location_type": {
  7. "properties": {
  8. "categoryCode": {
  9. "type": "string",
  10. "index": "not_analyzed"
  11. },
  12. "createTime": {
  13. "type": "date",
  14. "format": "yyyy-MM-dd HH:mm:ss"
  15. },
  16. "deviceSn": {
  17. "type": "string",
  18. "index": "not_analyzed"
  19. },
  20. "deviceTime": {
  21. "type": "date",
  22. "format": "yyyy-MM-dd HH:mm:ss"
  23. },
  24. "idCard": {
  25. "type": "string",
  26. "index": "not_analyzed"
  27. },
  28. "location": {
  29. "type": "geo_point"
  30. }
  31. }
  32. }
  33. }