[Fixed]-ElasticSearch – bulk indexing for a completion suggester in python

1👍

I think I figured it out (..phew)

In the indexing function, I need to use the following to enable to the prefix completion suggester:

name_suggest = self.name

instead of:

name_suggest = {'input': something.here }

which seems to be used for more custom cases.

Thanks to this video that helped!

👤Anupam

Leave a comment