Files
elasticsearch-js/lib/Transport.js
delvedor 11b0d50751 WIP: initial prototype
- Added asStream option
- Better handling of request object
2018-11-15 17:50:56 +01:00

241 lines
7.6 KiB
JavaScript

'use strict'
const debug = require('debug')('elasticsearch')
const once = require('once')
const ms = require('ms')
const {
ConnectionError,
TimeoutError,
NoLivingConnectionsError,
ResponseError
} = require('./errors')
const noop = () => {}
const kRemainingAttempts = Symbol('elasticsearch-remaining-attempts')
class Transport {
constructor (opts = {}) {
this.emit = opts.emit
this.connectionPool = opts.connectionPool
this.serializer = opts.serializer
this.maxRetries = opts.maxRetries
this.requestTimeout = toMs(opts.requestTimeout)
this.suggestCompression = opts.suggestCompression === true
this.sniffInterval = opts.sniffInterval
this.sniffOnConnectionFault = opts.sniffOnConnectionFault
this.sniffEndpoint = opts.sniffEndpoint
this._sniffEnabled = typeof this.sniffInterval === 'number'
this._nextSniff = this._sniffEnabled ? (Date.now() + this.sniffInterval) : 0
this._isSniffing = false
if (opts.sniffOnStart === true) {
this.sniff()
}
}
// TODO: should be able to send a stream of json data
request (params, callback) {
callback = once(callback)
const result = { body: null, statusCode: null, headers: null, warnings: null }
const attempts = params[kRemainingAttempts] || params.maxRetries || this.maxRetries
const connection = this.getConnection()
if (connection === null) {
return callback(new NoLivingConnectionsError('There are not living connections'), result)
}
params.headers = params.headers || {}
// handle json body
if (params.body != null) {
if (typeof params.body !== 'string') {
try {
params.body = this.serializer.serialize(params.body)
} catch (err) {
return callback(err, result)
}
}
params.headers['Content-Type'] = 'application/json'
params.headers['Content-Length'] = '' + Buffer.byteLength(params.body)
// handle ndjson body
} else if (params.bulkBody != null) {
if (typeof params.bulkBody !== 'string') {
try {
params.body = this.serializer.ndserialize(params.bulkBody)
} catch (err) {
return callback(err, result)
}
} else {
params.body = params.bulkBody
}
params.headers['Content-Type'] = 'application/x-ndjson'
params.headers['Content-Length'] = '' + Buffer.byteLength(params.body)
}
if (this.suggestCompression === true) {
params.headers['Accept-Encoding'] = 'gzip,deflate'
}
// serializes the querystring
params.querystring = this.serializer.qserialize(params.querystring)
// handles request timeout
params.timeout = toMs(params.requestTimeout || this.requestTimeout)
// TODO: expose nicely the node metadata (also in response an error)
this.emit('request', params, connection)
// perform the actual http request
const request = connection.request(params, (err, response) => {
if (err != null) {
// if there is an error in the connection
// let's mark the connection as dead
this.connectionPool.markDead(connection)
if (this.sniffOnConnectionFault === true) {
this.sniff()
}
// retry logic
if (attempts > 0) {
debug(`Retrying request, there are still ${attempts} attempts`, params)
params[kRemainingAttempts] = attempts - 1
return this.request(params, callback)
}
const error = err instanceof TimeoutError
? err
: new ConnectionError(err.message, params)
this.emit('error', error, params)
return callback(error, result)
}
const { statusCode, headers } = response
result.statusCode = statusCode
result.headers = headers
if (headers['warning'] != null) {
// split the string over the commas not inside quotes
result.warnings = headers['warning'].split(/(?!\B"[^"]*),(?![^"]*"\B)/)
}
if (params.asStream === true) {
result.body = response
callback(null, result)
return
}
var payload = ''
// collect the payload
response.setEncoding('utf8')
response.on('data', chunk => { payload += chunk })
response.on('error', err => callback(new ConnectionError(err.message, params), result))
response.on('end', () => {
const isHead = params.method === 'HEAD'
// we should attempt the payload deserialization only if:
// - a `content-type` is defined and is equal to `application/json`
// - the request is not a HEAD request
// - the payload is not an empty string
if (headers['content-type'] != null &&
headers['content-type'].indexOf('application/json') > -1 &&
isHead === false &&
payload !== ''
) {
try {
result.body = this.serializer.deserialize(payload)
} catch (err) {
this.emit('error', err, params)
return callback(err, result)
}
} else {
// cast to boolean if the request method was HEAD
result.body = isHead === true ? true : payload
}
// we should ignore the statusCode if the user has configured the `ignore` field with
// the statusCode we just got or if the request method is HEAD and the statusCode is 404
const ignoreStatusCode = (Array.isArray(params.ignore) && params.ignore.indexOf(statusCode) > -1) ||
(isHead === true && statusCode === 404)
if (ignoreStatusCode === false &&
(statusCode === 502 || statusCode === 503 || statusCode === 504)) {
// if the statusCode is 502/3/4 we should run our retry strategy
// and mark the connection as dead
this.connectionPool.markDead(connection)
if (attempts > 0) {
debug(`Retrying request, there are still ${attempts} attempts`, params)
params[kRemainingAttempts] = attempts - 1
return this.request(params, callback)
}
} else {
// everything has worked as expected, let's mark
// the connection as alive (or confirm it)
this.connectionPool.markAlive(connection)
}
this.emit('response', params, result)
if (ignoreStatusCode === false && statusCode >= 400) {
callback(new ResponseError(result), result)
} else {
// cast to boolean if the request method was HEAD
if (isHead === true && statusCode === 404) {
result.body = false
}
callback(null, result)
}
})
})
return {
abort: () => {
request.abort()
debug('Request aborted', params)
}
}
}
getConnection () {
const now = Date.now()
if (this._sniffEnabled === true && now > this._nextSniff) {
this.sniff()
}
this.connectionPool.resurrect(now)
return this.connectionPool.getConnection()
}
sniff (callback = noop) {
if (this._isSniffing === true) return
this._isSniffing = true
debug('Started sniffing request')
this.request({
method: 'GET',
path: this.sniffEndpoint
}, (err, body) => {
this._isSniffing = false
if (this._sniffEnabled === true) {
this._nextSniff = Date.now() + this.sniffInterval
}
if (err != null) {
this.emit('error', err)
debug('Sniffing errored', err)
return callback(err)
}
debug('Sniffing ended successfully', body)
const hosts = this.connectionPool.nodesToHost(body.nodes)
this.connectionPool.update(hosts)
callback(null, hosts)
})
}
}
function toMs (time) {
if (typeof time === 'string') {
return ms(time)
}
return time
}
module.exports = Transport