Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. {
  2. "template" : "*",
  3. "order" : 10,
  4. "mappings" : {
  5. "couchbaseCheckpoint" : {
  6. "_source" : {
  7. "includes" : ["doc.*"]
  8. },
  9. "dynamic_templates": [
  10. {
  11. "store_no_index": {
  12. "match": "*",
  13. "mapping": {
  14. "store" : "no",
  15. "index" : "no",
  16. "include_in_all" : false
  17. }
  18. }
  19. }
  20. ]
  21. },
  22. "_default_" : {
  23. "_source" : {
  24. "includes" : ["meta.*"]
  25. },
  26. "properties" : {
  27. "meta" : {
  28. "type" : "object",
  29. "include_in_all" : false
  30. }
  31. }
  32. }
  33. }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement