logo
Browse Source

Make inserted data searchable immediately

Signed-off-by: Jael Gu <mengjia.gu@zilliz.com>
support-stopwords
Jael Gu 3 years ago
parent
commit
f43763110d
  1. 2
      es_index.py

2
es_index.py

@ -52,5 +52,5 @@ class ESIndex(PyOperator):
}
for i in range(len(docs))
]
res = elasticsearch.helpers.bulk(self.client, actions)
res = elasticsearch.helpers.bulk(self.client, actions, refresh=True)
return res

Loading…
Cancel
Save