-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathElasticMethods.js
134 lines (119 loc) · 3.83 KB
/
ElasticMethods.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
var elasticsearch=require('elasticsearch');
var client;
/*This method will return the object of elastic search.
you can replace this url to cloud url also.
You can also pass an array of url.
*/
function getElasticObject(){
client = new elasticsearch.Client( {
hosts: [
'http://localhost:9200' //your local clusture url or cloud url. you can also add array of url
]
});
return client;
}
/**
* this will check whether you are connected to elastic server or not.
*/
function checkClustureHealth(elasticObject){
//Testing elastic cloud clusture health
elasticObject.cluster.health({},function(err,resp,status) {
console.log("-- Client Health --",resp);
});
}
/**
* this will create and index clusture on elastic server.
*/
function createClusture(elasticObject, indexName){
elasticObject.indices.create({
index: indexName
},function(err,resp,status) {
if(err) {
console.log(err);
}
else {
console.log("-- create",resp);
}
});
}
/**
* using this you can delete index
*/
function deleteIndex(elasticObject, indexName){
elasticObject.indices.delete({index: indexName},function(err,resp,status) {
console.log("-- deleted",resp);
});
}
//You can specify id field. If you do not specify it, elastic search will add one random id
//itself. So let elastic server take care of it. i am commenting it here. you can uncomment it
// if you want a custom id format.
// as output we are printing output from elastic server.
// id is good if you want to avoid duplicate data insert. for example: if you set id equals to 1
// first time data will be indexed but if you again try to index your data then it will not allow
// you to do so.
function createIndex(clientObject, indexName, typeName, documentBody){
clientObject.index({
index: indexName,
// id: '1',
type: typeName,
body: documentBody
},function(err,resp,status) {
console.log(resp);
});
}
/**delete document from elastic server */
function deleteDocument(clientObject, indexName, typeName, id){
clientObject.delete({
index: indexName,
id: id,
type: typeName
},function(err,resp,status) {
console.log(resp);
});
}
/**get the total count of documents */
function getDocumentCount(clientObject, indexName, typeName){
clientObject.count({index: indexName,type: typeName}
,function(err,resp,status) {
console.log("total count: ",resp);
});
}
/**
* here we are searching all the index where empname is Martand Singh.
* this is the basic index searching. Elastic search has a huge collection of
* queries. As this tutorial is just to show you how to connect and perform
* operation with node js & elastic search, So we will not go to very deep in elastic search.
*
*/
function searchIndex(clientObject, indexName, typeName){
clientObject.search({
index: indexName,
type: typeName,
body: {
query: {
match: { "empname": "Martand" }
},
}
},function (error, response,status) {
if (error){
console.log("search error: "+error)
}
else {
console.log("--- Response ---");
console.log(response);
console.log("--- Hits ---");
response.hits.hits.forEach(function(hit){
console.log(hit);
})
}
});
}
module.exports.getElasticObject = getElasticObject;
module.exports.checkClustureHealth = checkClustureHealth;
module.exports.createClusture = createClusture;
module.exports.deleteIndex = deleteIndex;
module.exports.createIndex = createIndex;
//module.exports.bulkInsert = bulkInsert;
module.exports.deleteDocument = deleteDocument;
module.exports.getDocumentCount = getDocumentCount;
module.exports.searchIndex = searchIndex;