Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2015
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. mapping = {
  2. "my_index": {
  3. "date_detection": False,
  4. "dynamic_templates": [{
  5. "string_fields": {
  6. "mapping": {
  7. "type": "string",
  8. "fields": {
  9. "raw": {
  10. "index": "not_analyzed",
  11. "ignore_above": 256,
  12. "type": "string"
  13. }
  14. }
  15. },
  16. "match_mapping_type": "string",
  17. "match": "*"
  18. }
  19. }]
  20. }
  21. }
  22.  
  23. records = es.search(index="my_index",doc_type="marksheet",body={ "aggs": { "student_name": { "terms": { "field": "name.raw","order": { "total_score" : "desc" } }, "aggs": { "total_score": { "sum": { "field": "score" } } } } } } )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement