Elasticsearch insensitive search accents
问题 I'm using Elastic search with Python. I can't find a way to make insensitive search with accents. For example: I have two words. " Camión " and " Camion ". When a user search for "camion" I'd like the two results show up. Creating index: es = Elasticsearch([{u'host': u'127.0.0.1', u'port': b'9200'}]) es.indices.create(index='name', ignore=400) es.index( index="name", doc_type="producto", id=p.pk, body={ 'title': p.titulo, 'slug': p.slug, 'summary': p.summary, 'description': p.description,