Guest User

Untitled

a guest
Oct 16th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. PUT stackoverflow
  2. {
  3. "settings": {
  4. "analysis": {
  5. "filter": {
  6. "english_stop": {
  7. "type": "stop",
  8. "stopwords": "_english_"
  9. },
  10. "dutch_stop": {
  11. "type": "stop",
  12. "stopwords": "_dutch_"
  13. }
  14. },
  15. "analyzer": {
  16. "eng_stop": {
  17. "type": "stop",
  18. "stopwords": "_english_"
  19. },
  20. "dutch_stop": {
  21. "type": "stop",
  22. "stopwords": "_dutch_"
  23. },
  24. "all_lang_stop": {
  25. "tokenizer": "lowercase",
  26. "filter": [
  27. "english_stop",
  28. "dutch_stop"
  29. ]
  30. }
  31. }
  32. }
  33. },
  34. "mappings": {
  35. "record": {
  36. "properties": {
  37. "field": {
  38. "type": "keyword",
  39. "fields": {
  40. "english": {"type": "text", "analyzer": "eng_stop" },
  41. "dutch": {"type": "text", "analyzer": "dutch_stop" },
  42. "word_cloud": {"type": "text", "analyzer": "all_lang_stop"}
  43. }
  44. }
  45. }
  46. }
  47. }
  48. }
  49.  
  50. "mappings": {
  51. "record": {
  52. "properties": {
  53. "english": {"type": "text", "analyzer": "eng_stop", copy_to: "word_cloud"},
  54. "dutch": {"type": "text", "analyzer": "dutch_stop", copy_to: "word_cloud"},
  55. "word_cloud": {"type": "text", "analyzer": "all_lang_stop"}
  56. }
  57. }
  58. }
Add Comment
Please, Sign In to add comment