ElasticSearch批量添加父子文档

时间:2018-07-23 01:51:39

标签: elasticsearch parent-child

 IndexResponse response = client.prepareIndex(index, parentType).setSource(parentJson, XContentType.JSON).get();
 client.prepareIndex(index, childType).setParent(response.getId()).setSource(childJson, XContentType.JSON).get(**strong text**);

我想找到同时批量添加父子文档的方式。

0 个答案:

没有答案