How to increase number of nodes

2015-06-08 Thread tushar
I am getting out of memory error due to which all my shards are failing. I need to restart my server every time this error shows up. I tried increasing the Heap size to 10GB where my total server memory is 16GB is this a problem. -- Please update your bookmarks! We have moved to https://disc

Elasticsearch fuzziness and wildcard in one query

2015-01-21 Thread tushar
I am trying to implement fuzziness and wild card in a single query. I tried the below code but no success "match" : { "Keyword" : { "query" : "B*a*c*k* O*b*a*", "operator" : "and", "fuzziness" : "9", "analyze_wildcard": true } } But when I try the same query from postman its working http:/

Fuzziness ans wildcard in one query

2015-01-21 Thread tushar
I am trying to implement fuzziness and wild card in a single query. I tried the below code but no success "match" : { "Keyword" : { "query" : "B*a*c*k* O*b*a*", "operator" : "and", "fuzziness" : "9", "analyze_wildcard": true } } But when