Kibana 3.1, Lucene query.
So I'm doing wildcard queries in the form of
entName:treeb*
Which will return documents with treebeard
and treebark
as values for entName
.
I also have a field treeMail, which is set to be not analysed in ES. Wildcard queries don't seem to work though.
treeMail:treebeard@treemail.com
treeMail:treeb*@treemail.com
treeMail:treebeard@*
treeMail:treebeard*treemail.com
Only the first one returns any results.
in reality our field with the @ in the value isn't actually an email address and should just be processed as a string.
Any ideas as to why this isn't returning results as expected? I've had other issues in the past where wildcards didn't work as expected with special characters.