Advertisement
Guest User

elasticsearch101

a guest
Nov 24th, 2014
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. INSERT DATA
  2.  
  3. curl -XPOST "http://localhost:9200/movies/movie" -d'{ "title": "The Godfather", "director": "Francis Ford Coppola", "year": 1972, "genres": ["Crime", "Drama"] }'
  4.  
  5. curl -XPOST "http://localhost:9200/movies/movie" -d'{ "title": "Lawrence of Arabia", "director": "David Lean", "year": 1962, "genres": ["Adventure", "Biography", "Drama"] }'
  6.  
  7. curl -XPOST "http://localhost:9200/movies/movie" -d'{ "title": "To Kill a Mockingbird", "director": "Robert Mulligan", "year": 1962, "genres": ["Crime", "Drama", "Mystery"] }'
  8.  
  9. curl -XPOST "http://localhost:9200/movies/movie" -d'{ "title": "Apocalypse Now", "director": "Francis Ford Coppola", "year": 1979, "genres": ["Drama", "War"] }'
  10.  
  11. curl -XPOST "http://localhost:9200/movies/movie" -d'{ "title": "Kill Bill: Vol. 1", "director": "Quentin Tarantino", "year": 2003, "genres": ["Action", "Crime", "Thriller"] }'
  12.  
  13. curl -XPOST "http://localhost:9200/movies/movie" -d'{ "title": "The Assassination of Jesse James by the Coward Robert Ford", "director": "Andrew Dominik", "year": 2007, "genres": ["Biography", "Crime", "Drama"] }'
  14.  
  15.  
  16. STRING QUERY
  17.  
  18. curl -XPOST "http://localhost:9200/movies/_search" -d'{ "query": { "query_string": { "query": "drama" } } }'
  19.  
  20.  
  21. SNAPSHOT
  22.  
  23. curl -XPUT "http://localhost:9200/_snapshot/testBackup" -d '{ "type": "fs", "settings": { "location": "/home/bplsilva/testBackup", "compress": true } }'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement