es_mappings.py 886 B

123456789101112131415161718192021222324252627282930313233343536
  1. index_name = "meta_articles_v1"
  2. settings = {
  3. "number_of_shards": 3,
  4. "number_of_replicas": 1,
  5. "analysis": {
  6. "analyzer": {
  7. "ik_smart": {"type": "ik_smart"},
  8. "ik_max_word": {"type": "ik_max_word"},
  9. }
  10. }
  11. }
  12. mappings = {
  13. "properties": {
  14. "auto_id": {
  15. "type": "long",
  16. "doc_values": True,
  17. },
  18. "article_id": {"type": "long"},
  19. "platform": {"type": "keyword"},
  20. "out_account_id": {"type": "keyword"},
  21. "title": {
  22. "type": "text",
  23. "analyzer": "ik_max_word",
  24. "search_analyzer": "ik_smart",
  25. "fields": {
  26. "keyword": {"type": "keyword", "ignore_above": 256}
  27. }
  28. },
  29. "created_at": {
  30. "type": "date",
  31. "format": "yyyy-MM-dd HH:mm:ss||epoch_millis"
  32. }
  33. }
  34. }