微服务










ElasticSearch 7.5.x



POST /customer/external/_bulk
{"index":{"_id": "1"}}
{"name" : "Jone Doe"}
{"index":{"_id": "2"}}
{"name" : "Jone Li"}

POST /_bulk
{ "delete": {"_index": "website" ,"_type": "blog","_id": "123"}}
{ "create": {"_index": "website", "_type": "blog","_id": "123"}}
{ "title": "My first blog post"}
{ "index": {"_index": "website", "_type": "blog" }}
{ "title": "My second blog post" }
{ "update": {"_index": "website", "_type": "blog","_id": "123"} }
{ "doc" : {"title" : "My updated blog post"} }
样本测试数据

raw.githubusercontent.com/elastic/elasticsearch/master/docs/src/test/resources/accounts.json

576

被折叠的 条评论
为什么被折叠?



