基本的に、インデックスタイプのすべてのレコードを表示しようとしています。これで、クエリでmatch_all()を使用すると、elasticsearchはデフォルトで10件の結果を表示します。スクロールを使用してすべての結果を表示できます。私はスクロールAPIを実装しようとしていますが、機能させることができません。それは10の結果だけを示しています、私のコード:
module.exports.searchAll = function (searchData, callback) {
client.search({
index: 'test',
type: 'records',
scroll: '10s',
//search_type: 'scan', //if I use search_type then it requires size otherwise it shows 0 result
body: {
query: {
"match_all": {}
}
}
}, function (err, resp) {
client.scroll({
scrollId: resp._scroll_id,
scroll: '10s'
}, callback(resp.hits.hits));
});
}
誰か助けてもらえますか?
レコードが返されなくなるまで、client.scroll
を繰り返し呼び出す必要があります。良い elasticsearchのドキュメントの例 があります。以下のコード例を再現しましたが、質問に合わせて少し修正しました
var allRecords = [];
// first we do a search, and specify a scroll timeout
client.search({
index: 'test',
type: 'records',
scroll: '10s',
body: {
query: {
"match_all": {}
}
}
}, function getMoreUntilDone(error, response) {
// collect all the records
response.hits.hits.forEach(function (hit) {
allRecords.Push(hit);
});
if (response.hits.total !== allRecords.length) {
// now we can call scroll over and over
client.scroll({
scrollId: response._scroll_id,
scroll: '10s'
}, getMoreUntilDone);
} else {
console.log('all done', allRecords);
}
});
@Ceilingfishに感謝します。これは、awaitを使用した上記の修正ES6バージョンです。
let allRecords = [];
// first we do a search, and specify a scroll timeout
var { _scroll_id, hits } = await esclient.search({
index: 'test',
type: 'records',
scroll: '10s',
body: {
query: {
"match_all": {}
},
_source: false
}
})
while(hits && hits.hits.length) {
// Append all new hits
allRecords.Push(...hits.hits)
console.log(`${allRecords.length} of ${hits.total}`)
var { _scroll_id, hits } = await esclient.scroll({
scrollId: _scroll_id,
scroll: '10s'
})
}
console.log(`Complete: ${allRecords.length} records retrieved`)
async/awaitでスクロールを使用してNode.jsクライアントを使用してエラスティック検索からすべてのデータを取得するためのクエリ
const elasticsearch = require('@elastic/elasticsearch');
async function esconnection(){
let es = await new elasticsearch.Client({
node: "http://192.168.1.1:7200"
});
return es;
}
async function getAllUserList(){
try{
let userArray = [];
let query ={
"query":{
"match_all": {}
}
}
let es = await esconnection();
let {body}= await es.search({
index: 'esIndex',
type :"esIndexType",
scroll :'2m', //# Specify how long a consistent view of the index should be maintained for scrolled search
size: 100, // # Number of hits to return (default: 10)
body: query
});
let sid = body['_scroll_id']
let scroll_size = body['hits']['total']
let dataLength = body['hits']['hits'].length
while (scroll_size > 0){
for(let i=0; i<dataLength;i++){
if(body['hits']['hits'][i])
{
let userData = (body['hits']['hits'][i]['_source'])
userArray.Push(userData)
}
}
sid = body['_scroll_id']
body = await es.scroll({
scrollId: sid,
scroll: '10s'
})
body=body.body
scroll_size = (body['hits']['hits']).length;
}
es.close();
return userArray;
} catch(error){
console.log("Code not working properly: ",`${error}`)
}
}
Elasticの結果が10000を超えると、NodeJSが失敗しました。これは私がスクロールを使用した方法です。
async function getResultsFromElastic() {
let responseAll = {};
responseAll["hits"] = {};
responseAll.hits.hits = [];
const responseQueue = [];
searchQuery = {
index: 'test',
type: 'records',
body: {
query: {
"match_all": {}
}
}
}
searchQuery.scroll='10s';
searchQuery.size=10000;
responseQueue.Push(await esclient.search(searchQuery));
while (responseQueue.length) {
const response = responseQueue.shift();
responseAll.hits.hits = responseAll.hits.hits.concat(response.hits.hits);
if (response.hits.total == responseAll.hits.hits.length) {
break;
}
// get the next response if there are more to fetch
responseQueue.Push(
await esclient.scroll({
scrollId: response._scroll_id,
scroll: '30s'
})
);
}
return responseAll;
}
var EsHelper = function() {
this.esUrl = esUrl;
this.indexName = "myIndex";
this.type = "myIndexType";
this.elasticClient = new elasticsearch.Client({
Host: esUrl
});
};
EsHelper.prototype.scrollData = function(response, allHits) {
return new Promise((resolve, reject) => {
response.hits.hits.forEach((hit) => allHits.Push(hit));
if (response.hits.total !== allHits.length) {
this.elasticClient.scroll({
scroll_id: response._scroll_id,
scroll: '10s',
}).then((response) => {
resolve(this.scrollData(response, allHits));
}).catch((error) => reject(error));
} else {
resolve(allHits);
}
});
};
EsHelper.prototype.runSearchWithScroll = function(query) {
var allHits = [];
return this.elasticClient.search({
index: this.indexName,
type: this.type,
scroll: '10s',
body: query
})
.then((response) => (this.scrollData(response, allHits)))
.then((result) => {
return result;
});
};
もっと良い方法は?
ここには問題を解決する多くのよく書かれた答えがあります。しかし、誰かがすぐに使える解決策を探しているなら、彼らはここに向かい、このパッケージを使用できます- https://github.com/alcacoop/elasticsearch-scroll-stream
使い方はいたってシンプルで美しく機能します。以下は私が彼らの公式ドキュメントから取った例です。
const elasticsearch = require('elasticsearch');
const ElasticsearchScrollStream = require('elasticsearch-scroll-stream');
const client = new elasticsearch.Client();
const es_stream = new ElasticsearchScrollStream(client, {
index: 'your-index',
type: 'your-type',
scroll: '10s',
size: '50',
_source: ['name'],
q: 'name:*'
});
es_stream.pipe(process.stdout);
es_stream.on('data', function(data) {
// Process your results here
});
es_stream.on('end', function() {
console.log("End");
});