I am having issues getting an exact match to work.
I am trying instructs here .
My test case is to have a single index with a single type with a single field which is not analyzed.
I add a record into it and attempt to use a filtered query with a single term match within it.
Yet i get no record back.
Test scripts here:-
printf "\nDelete the index to start from scratch\n";
curl -XDELETE 'http://192.168.134.179:9200/testnames2'
printf "\nCreate the index with a single type, and one field which is not_analyzed\n";
curl -XPOST http://192.168.134.179:9200/testnames2/test -d '{
"settings" : {
"number_of_shards" : 1
},
"mappings" : {
"hrname" : {
"_source" : { "enabled" : true },
"properties" : {
"raw_Lookup" : { "type" : "string", "index" : "not_analyzed" }
}
}
}
}'
printf "\nAdd one record into the index of the right type\n";
curl -XPUT 'http://192.168.134.179:9200/testnames2/hrname/1' -d '{
"raw_Lookup" : "Simon Taylor"
}'
printf "\nAttempt to get the field back using a filtered query using one term with the exact text i inputted\n";
curl -XGET 'http://192.168.134.179:9200/testnames2/_search/?pretty=true' -d '
{
"query" : {
"filtered" : {
"filter" : {
"term" : {
"raw_Lookup" : "Simon Taylor"
}
}
}
}
}
'
printf "\n";
Output of which is:-
Delete the index to start from scratch
{"acknowledged":true}
Create the index with a single type, and one field which is not_analyzed
{"_index":"testnames2","_type":"test","_id":"AVFKQxwER0bg8LfMuJ_8","_version":1,"_shards":{"total":2,"successful":1,"failed":0},"created":true}
Add one record into the index of the right type
{"_index":"testnames2","_type":"hrname","_id":"1","_version":1,"_shards":{"total":2,"successful":1,"failed":0},"created":true}
Attempt to get the field back using a filtered query using one term with the exact text i inputted
{
"took" : 1,
"timed_out" : false,
"_shards" : {
"total" : 5,
"successful" : 5,
"failed" : 0
},
"hits" : {
"total" : 0,
"max_score" : null,
"hits" : [ ]
}
}
I must be doing something simple wrong but i cant see it.