I've loaded an ES instance with some sample data and while the queries
in the documentation seem to work, I'm missing something when I try to
get the same queries to work against my data.
This query does not return any results:
curl -XGET localhost:9200/music/song/_search?q=artist:"Quarashi"
Here is how I loaded the data:
curl -XPOST http://localhost:9200/music/song -d '
{
song_id : "00000000000000009771",
title : "Malone Lives",
version : "Clean Version",
artist : "Quarashi",
year : "2002",
genre : "Pop",
label : "Time Bomb Recordings",
album_title : ""
}'
Sorry for the rather simply question, I'll ask more interesting
questions as I get further into this project.
Dan