Guest User

Untitled

a guest
Sep 1st, 2017
513
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. POST users/user
  2. {
  3. "name" :"SMITH",
  4. "emails" : [
  5. ]
  6. }
  7.  
  8. POST users/user
  9. {
  10. "name" :"SMITH",
  11. "emails" : [
  12. ]
  13. }
  14.  
  15. POST users/_search
  16. {
  17. "size": 0,
  18. "aggs": {
  19. "duplicateCount": {
  20. "terms": {
  21. "script": {
  22. "inline": "doc['emails.keyword'].value + '_' + doc['name.keyword'].value"
  23. }
  24. }
  25. }
  26. }
  27. }
  28.  
  29. "aggregations": {
  30. "duplicateCount": {
  31. "doc_count_error_upper_bound": 0,
  32. "sum_other_doc_count": 0,
  33. "buckets": [
  34. {
  35. "key": "[email protected]_SMITH",
  36. "doc_count": 1
  37. },
  38. {
  39. "key": "[email protected]_SMITH",
  40. "doc_count": 1
  41. }
  42. ]
  43. }
  44. }
Advertisement
Add Comment
Please, Sign In to add comment