https://github.com/elastic/elasticsearch-js/issues/2241 notes that there is no body attribute on a response. This is mostly just a typo in the example, as `result` itself is a readable stream, unless `meta: true` is passed, in which case `result.body` will be a readable stream. Also dropped the callback-style stream processing example as it's a bit outdated.
100 lines
2.0 KiB
Plaintext
100 lines
2.0 KiB
Plaintext
[[as_stream_examples]]
|
|
=== asStream
|
|
|
|
Instead of getting the parsed body back, you will get the raw Node.js stream of
|
|
data.
|
|
|
|
[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',
|
|
query: {
|
|
match: {
|
|
quote: 'winter'
|
|
}
|
|
}
|
|
}, {
|
|
asStream: true
|
|
})
|
|
|
|
let payload = ''
|
|
result.setEncoding('utf8')
|
|
for await (const chunk of result) {
|
|
payload += chunk
|
|
}
|
|
console.log(JSON.parse(payload))
|
|
}
|
|
|
|
run().catch(console.log)
|
|
----
|
|
|
|
TIP: This can be useful if you need to pipe the {es}'s response to a proxy, or
|
|
send it directly to another source.
|
|
|
|
[source,js]
|
|
----
|
|
'use strict'
|
|
|
|
const { Client } = require('@elastic/elasticsearch')
|
|
const client = new Client({
|
|
cloud: { id: '<cloud-id>' },
|
|
auth: { apiKey: 'base64EncodedKey' }
|
|
})
|
|
const fastify = require('fastify')()
|
|
|
|
fastify.post('/search/:index', async (req, reply) => {
|
|
const { body, statusCode, headers } = await client.search({
|
|
index: req.params.index,
|
|
...req.body
|
|
}, {
|
|
asStream: true,
|
|
meta: true
|
|
})
|
|
|
|
reply.code(statusCode).headers(headers)
|
|
return body
|
|
})
|
|
|
|
fastify.listen(3000)
|
|
----
|