Files
elasticsearch-js/docs/examples/ignore.asciidoc
github-actions[bot] 85459370bc [Backport 8.0] Update connecting documentation (#1667)
Co-authored-by: Tomas Della Vedova <delvedor@users.noreply.github.com>
2022-03-28 12:23:23 +02:00

65 lines
1.3 KiB
Plaintext

[[ignore_examples]]
=== Ignore
HTTP status codes which should not be considered errors for this request.
[source,js]
----
'use strict'
const { Client } = require('@elastic/elasticsearch')
const client = new Client({
cloud: { id: '<cloud-id>' },
auth: { apiKey: 'base64EncodedKey' }
})
async function run () {
const bulkResponse = await client.bulk({
refresh: true,
operations: [
// operation to perform
{ index: { _index: 'game-of-thrones' } },
// the document to index
{
character: 'Ned Stark',
quote: 'Winter is coming.'
},
{ index: { _index: 'game-of-thrones' } },
{
character: 'Daenerys Targaryen',
quote: 'I am the blood of the dragon.'
},
{ index: { _index: 'game-of-thrones' } },
{
character: 'Tyrion Lannister',
quote: 'A mind needs books like a sword needs a whetstone.'
}
]
})
if (bulkResponse.errors) {
console.log(bulkResponse)
process.exit(1)
}
// Let's search!
const result = await client.search({
index: 'game-of-thrones',
body: {
query: {
match: {
quote: 'fire'
}
}
}
}, {
ignore: [404]
})
console.log(result) // ResponseError
}
run().catch(console.log)
----