80 lines
1.2 KiB
Plaintext
80 lines
1.2 KiB
Plaintext
// This file is autogenerated, DO NOT EDIT
|
|
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
|
|
|
[source, js]
|
|
----
|
|
const response = await client.bulk({
|
|
operations: [
|
|
{
|
|
update: {
|
|
_id: "1",
|
|
_index: "index1",
|
|
retry_on_conflict: 3,
|
|
},
|
|
},
|
|
{
|
|
doc: {
|
|
field: "value",
|
|
},
|
|
},
|
|
{
|
|
update: {
|
|
_id: "0",
|
|
_index: "index1",
|
|
retry_on_conflict: 3,
|
|
},
|
|
},
|
|
{
|
|
script: {
|
|
source: "ctx._source.counter += params.param1",
|
|
lang: "painless",
|
|
params: {
|
|
param1: 1,
|
|
},
|
|
},
|
|
upsert: {
|
|
counter: 1,
|
|
},
|
|
},
|
|
{
|
|
update: {
|
|
_id: "2",
|
|
_index: "index1",
|
|
retry_on_conflict: 3,
|
|
},
|
|
},
|
|
{
|
|
doc: {
|
|
field: "value",
|
|
},
|
|
doc_as_upsert: true,
|
|
},
|
|
{
|
|
update: {
|
|
_id: "3",
|
|
_index: "index1",
|
|
_source: true,
|
|
},
|
|
},
|
|
{
|
|
doc: {
|
|
field: "value",
|
|
},
|
|
},
|
|
{
|
|
update: {
|
|
_id: "4",
|
|
_index: "index1",
|
|
},
|
|
},
|
|
{
|
|
doc: {
|
|
field: "value",
|
|
},
|
|
_source: true,
|
|
},
|
|
],
|
|
});
|
|
console.log(response);
|
|
----
|