# Fuzzy search can't get result

**URL:** https://discuss.elastic.co/t/fuzzy-search-cant-get-result/36733
**Category:** Elasticsearch
**Created:** [December 9, 2015, 11:23am UTC](https://discuss.elastic.co/t/fuzzy-search-cant-get-result/36733 "2015-12-09T11:23:24Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![makeyang](https://avatars.discourse-cdn.com/v4/letter/m/f05b48/32.png) [@makeyang](https://discuss.elastic.co/u/makeyang)
#### Post date: [December 9, 2015, 11:23am UTC](https://discuss.elastic.co/t/fuzzy-search-cant-get-result/36733/1 "2015-12-09T11:23:24Z")

</div>

mapping is:  
"companyName": {  
"type": "string",  
"index": "not\_analyzed"  
}  
doc is:  
{"companyName":"屈臣氏有限责任公司"}

query 1 is:  
QueryBuilders.fuzzyQuery("companyName", "屈臣氏有限责任公司")  
this query can get doc  
query 2 is:  
QueryBuilders.fuzzyQuery("companyName", "屈臣氏有限责").fuzziness(Fuzziness.TWO)  
this query can't get doc

why?  
in definitive guide Fuzziness.TWO 2 for strings of more than five characters  
the doc and query 2 is only 4 characters, why can't I get doc?

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [July 5, 2017, 11:32pm UTC](https://discuss.elastic.co/t/fuzzy-search-cant-get-result/36733/2 "2017-07-05T23:32:20Z")

</div>


