Skip to content

Latest commit

 

History

History
17 lines (16 loc) · 411 Bytes

ae9ccfaa146731ab9176df90670db1c2.asciidoc

File metadata and controls

17 lines (16 loc) · 411 Bytes
resp = client.bulk(
    body=[
        {"index": {"_index": "test", "_id": "1"}},
        {"field1": "value1"},
        {"delete": {"_index": "test", "_id": "2"}},
        {"create": {"_index": "test", "_id": "3"}},
        {"field1": "value3"},
        {"update": {"_id": "1", "_index": "test"}},
        {"doc": {"field2": "value2"}},
    ],
)
print(resp)