Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. echo '{
  2. "template" : "*",
  3. "mappings" : {
  4. "_default_" : {
  5. "bucket": {
  6. "type": "object",
  7. "index": "not_analyzed",
  8. "enabled": false
  9. }
  10. }
  11. }
  12. }' > testmapping.json
  13. curl -s -XPUT localhost:9200/_template/testmapping -d @testmapping.json; echo ""
  14. curl -s -XPUT localhost:9200/testindex; echo ""
  15. # Error about 'index' being invalid on 'object fields'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement