Below is how I index:
conn = ES(['127.0.0.1:9200'],bulk_size=bulk_count)
conn.index(tj,data['index'],data['type'],str(uuid4()),bulk=True)
I am using uuid but would rather have ES choose the index id for performance reasons. How do implement that in pyes so ES will auto create the index id?
Thanks