feat: AWS CloudSearch engine

pull/795/head
Nick 6 years ago
parent c9648371e6
commit 6eb6eecfa2

@ -1,6 +1,6 @@
const _ = require('lodash') const _ = require('lodash')
const AWS = require('aws-sdk') const AWS = require('aws-sdk')
const { pipeline } = require('stream') const { pipeline, Transform } = require('stream')
module.exports = { module.exports = {
async activate() { async activate() {
@ -20,6 +20,13 @@ module.exports = {
secretAccessKey: this.config.secretAccessKey, secretAccessKey: this.config.secretAccessKey,
region: this.config.region region: this.config.region
}) })
this.clientDomain = new AWS.CloudSearchDomain({
apiVersion: '2013-01-01',
endpoint: this.config.endpoint,
accessKeyId: this.config.accessKeyId,
secretAccessKey: this.config.secretAccessKey,
region: this.config.region
})
let rebuildIndex = false let rebuildIndex = false
@ -141,10 +148,30 @@ module.exports = {
*/ */
async query(q, opts) { async query(q, opts) {
try { try {
let suggestions = []
const results = await this.clientDomain.search({
query: q,
partial: true,
size: 50
}).promise()
if (results.hits.found < 5) {
const suggestResults = await this.clientDomain.suggest({
query: q,
suggester: 'default_suggester',
size: 5
}).promise()
suggestions = suggestResults.suggest.suggestions.map(s => s.suggestion)
}
return { return {
results: [], results: _.map(results.hits.hit, r => ({
suggestions: [], id: r.id,
totalHits: 0 path: _.head(r.fields.path),
locale: _.head(r.fields.locale),
title: _.head(r.fields.title),
description: _.head(r.fields.description)
})),
suggestions: suggestions,
totalHits: results.hits.found
} }
} catch (err) { } catch (err) {
WIKI.logger.warn('Search Engine Error:') WIKI.logger.warn('Search Engine Error:')
@ -157,16 +184,22 @@ module.exports = {
* @param {Object} page Page to create * @param {Object} page Page to create
*/ */
async created(page) { async created(page) {
await this.client.indexes.use(this.config.indexName).index([ await this.clientDomain.uploadDocuments({
{ contentType: 'application/json',
id: page.hash, documents: JSON.stringify([
locale: page.localeCode, {
path: page.path, type: 'add',
title: page.title, id: page.hash,
description: page.description, fields: {
content: page.content locale: page.localeCode,
} path: page.path,
]) title: page.title,
description: page.description,
content: page.content
}
}
])
}).promise()
}, },
/** /**
* UPDATE * UPDATE
@ -174,16 +207,22 @@ module.exports = {
* @param {Object} page Page to update * @param {Object} page Page to update
*/ */
async updated(page) { async updated(page) {
await this.client.indexes.use(this.config.indexName).index([ await this.clientDomain.uploadDocuments({
{ contentType: 'application/json',
id: page.hash, documents: JSON.stringify([
locale: page.localeCode, {
path: page.path, type: 'add',
title: page.title, id: page.hash,
description: page.description, fields: {
content: page.content locale: page.localeCode,
} path: page.path,
]) title: page.title,
description: page.description,
content: page.content
}
}
])
}).promise()
}, },
/** /**
* DELETE * DELETE
@ -191,12 +230,15 @@ module.exports = {
* @param {Object} page Page to delete * @param {Object} page Page to delete
*/ */
async deleted(page) { async deleted(page) {
await this.client.indexes.use(this.config.indexName).index([ await this.clientDomain.uploadDocuments({
{ contentType: 'application/json',
'@search.action': 'delete', documents: JSON.stringify([
id: page.hash {
} type: 'delete',
]) id: page.hash
}
])
}).promise()
}, },
/** /**
* RENAME * RENAME
@ -204,33 +246,122 @@ module.exports = {
* @param {Object} page Page to rename * @param {Object} page Page to rename
*/ */
async renamed(page) { async renamed(page) {
await this.client.indexes.use(this.config.indexName).index([ await this.clientDomain.uploadDocuments({
{ contentType: 'application/json',
'@search.action': 'delete', documents: JSON.stringify([
id: page.sourceHash {
} type: 'delete',
]) id: page.sourceHash
await this.client.indexes.use(this.config.indexName).index([ }
{ ])
id: page.destinationHash, }).promise()
locale: page.localeCode, await this.clientDomain.uploadDocuments({
path: page.destinationPath, contentType: 'application/json',
title: page.title, documents: JSON.stringify([
description: page.description, {
content: page.content type: 'add',
} id: page.destinationHash,
]) fields: {
locale: page.localeCode,
path: page.destinationPath,
title: page.title,
description: page.description,
content: page.content
}
}
])
}).promise()
}, },
/** /**
* REBUILD INDEX * REBUILD INDEX
*/ */
async rebuild() { async rebuild() {
WIKI.logger.info(`(SEARCH/AWS) Rebuilding Index...`)
const MAX_DOCUMENT_BYTES = Math.pow(2, 20)
const MAX_INDEXING_BYTES = 5 * Math.pow(2, 20) - Buffer.from('[').byteLength - Buffer.from(']').byteLength
const MAX_INDEXING_COUNT = 1000
const COMMA_BYTES = Buffer.from(',').byteLength
let chunks = []
let bytes = 0
const processDocument = async (cb, doc) => {
try {
if (doc) {
const docBytes = Buffer.from(JSON.stringify(doc)).byteLength
// -> Document too large
if (docBytes >= MAX_DOCUMENT_BYTES) {
throw new Error('Document exceeds maximum size allowed by AWS CloudSearch.')
}
// -> Current batch exceeds size hard limit, flush
if (docBytes + COMMA_BYTES + bytes >= MAX_INDEXING_BYTES) {
await flushBuffer()
}
if (chunks.length > 0) {
bytes += COMMA_BYTES
}
bytes += docBytes
chunks.push(doc)
// -> Current batch exceeds count soft limit, flush
if (chunks.length >= MAX_INDEXING_COUNT) {
await flushBuffer()
}
} else {
// -> End of stream, flush
await flushBuffer()
}
cb()
} catch (err) {
cb(err)
}
}
const flushBuffer = async () => {
WIKI.logger.info(`(SEARCH/AWS) Sending batch of ${chunks.length}...`)
try {
const resp = await this.clientDomain.uploadDocuments({
contentType: 'application/json',
documents: JSON.stringify(_.map(chunks, doc => ({
type: 'add',
id: doc.id,
fields: {
locale: doc.locale,
path: doc.path,
title: doc.title,
description: doc.description,
content: doc.content
}
})))
}).promise()
} catch (err) {
WIKI.logger.warn('(SEARCH/AWS) Failed to send batch to AWS CloudSearch: ', err)
}
chunks.length = 0
bytes = 0
}
await pipeline( await pipeline(
WIKI.models.knex.column({ id: 'hash' }, 'path', { locale: 'localeCode' }, 'title', 'description', 'content').select().from('pages').where({ WIKI.models.knex.column({ id: 'hash' }, 'path', { locale: 'localeCode' }, 'title', 'description', 'content').select().from('pages').where({
isPublished: true, isPublished: true,
isPrivate: false isPrivate: false
}).stream(), }).stream(),
this.client.indexes.use(this.config.indexName).createIndexingStream() new Transform({
objectMode: true,
transform: async (chunk, enc, cb) => await processDocument(cb, chunk),
flush: async (cb) => await processDocument(cb)
})
) )
WIKI.logger.info(`(SEARCH/AWS) Requesting Index Rebuild...`)
await this.client.indexDocuments({
DomainName: this.config.domain
}).promise()
WIKI.logger.info(`(SEARCH/AWS) Index rebuilt successfully.`)
} }
} }

Loading…
Cancel
Save