标签: python django elasticsearch
我想将数据库详细信息插入Elasticsearch db。问题是我的表包含大量记录(15537),但是我无法插入,而且看来运行很慢。我使用的代码如下。 我正在使用Elasticsearch的批量API。
bulk(client=es, actions=(b.indexing() for b in City.objects.using('qoe').all().iterator()))