Hello,
I am testing the plugin Mapper Attachments 3.1.1 with ES 2.1.1, and using a set of xml files.
After indexing my files as base64 encoded, i query the cluster like this :
POST /test/divers/_search
{
"fields": ["file.name"],
"size" : 50,
"query": {
"match": {
"file.content": "DEPOT"
}
}
}
I got 7 hits files in return. When searching the same occurrence using notepad++, i got 10 hits files.
What can explain the difference ?
I also tried to use the keywords metadata. So, i stored information into that field but i don't know how to use it?
Can you help on this please ?
Antoine