Es.php
7.7 KB
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
<?php
namespace Lib\Es;
use Elastic\Elasticsearch\ClientBuilder;
/**
* @see https://github.com/elastic/elasticsearch-php/tree/7.17
* @author:dc
* @time 2023/6/5 10:13
* Class Es
* @package GlobalSo\Tool\Es
*/
class Es {
// private $host = 'https://es-gqtfpyon.public.tencentelasticsearch.com:9200'; // 黑格那个服务器
// private $host = 'http://elastic:1qOtfZhqy4B7IXdIpl_W@192.168.80.129:9200';
// private $host = 'https://es-az664rii.public.tencentelasticsearch.com:9200'; // aicc 服务器
private $host = [
// 'http://elastic:1qOtfZhqy4B7IXdIpl_W@192.168.80.129:9200',
// 'https://ai-email:3mLbEKwDX9YjUDFm@172.19.0.56:9200'
// 'https://ai-email:3mLbEKwDX9YjUDFm@172.19.0.56:9200'
]; //内网地址 公网要加ip白名单
/**
* @var \Elastic\Elasticsearch\Client
*/
protected $client;
/**
* @var string
*/
protected $index;
/**
* Es constructor.
* @param $index
*/
public function __construct($index,array $host=[])
{
if($host){
$this->host = $host;
}
$this->index = $index;
$this->client = ClientBuilder::create()
->setHosts($this->host)
// ->setBasicAuthentication($user, $password)
// ->setCABundle('path/to/http_ca.crt')
->setSSLVerification(false) // 关闭 SSL 证书验证
->build();
}
/**
* 搜索
* @param array $body
* @param int $from
* @param int $size
* @param array $sort [key=>val,...]
* @return array
* @author:dc
* @time 2023/6/5 14:35
*/
public function search(array $body,int $from=0,int $size=20,array $sort= [],$track_total_hits=true){
$params = [
'index' => $this->getIndex(),
'body' => $body,
'from' => $from,
'size' => $size,
"track_total_hits"=> $track_total_hits // 确保返回总匹配文档数量
];
// 排序
if($sort){
if(empty($params['body']['sort'])) $params['body']['sort'] = [];
foreach ($sort as $k=>$s){
$params['body']['sort'][] = [ $k => [ 'order' => $s ] ];
}
}
try {
$staTime = microtime(true);
$response = $this->client->search($params);
$this->timeLog($staTime);
}catch (\Throwable $e) {
logs("搜索数据es:".$e->getMessage()." \n ".json_encode($params)."\n".$e->getTraceAsString());
return [];
}
return $response->asArray();
}
private function timeLog($staTime){
$endTime = microtime(true);
if($endTime-$staTime >= 2){
logs('查询es耗时:'.($endTime-$staTime).'s');
}
}
/**
* 统计数量
* @param array $body
* @author:dc
* @time 2025/3/4 9:47
*/
public function count(array $body){
$params = [
'index' => $this->getIndex(),
'body' => $body
];
try {
$staTime = microtime(true);
$response = $this->client->count($params);
$this->timeLog($staTime);
}catch (\Throwable $e) {
logs("搜索数据es:".$e->getMessage()." \n ".json_encode($params)."\n".$e->getTraceAsString());
return 0;
}
return $response->asArray()['count']??0;
}
/**
* @param array $param
* @return array|callable
* @author:dc
* @time 2023/6/9 15:50
*/
public function get(array $param){
$params = [
'index' => $this->getIndex()
];
if(!empty($param['id'])){
$params['id'] = $param['id'];
}
try {
$response = $this->client->get($params);
}catch (\Throwable $e) {
logs("读取数据es:".$e->getMessage()." \n ".json_encode($params));
return [];
}
return $response->asArray();
}
/**
* 获取索引
* @return string
* @author:dc
* @time 2023/6/5 10:51
*/
public function getIndex():string{
return $this->index;
}
/**
* 保存修改
* @param string $id
* @param array $data
* @return int
* @author:dc
* @time 2025/3/1 14:53
*/
public function save(string $id, array $data){
$params['index'] = $this->getIndex();
$params['id'] = $id;
$params['body'] = $data;
try {
$response = $this->client->index($params);
}catch (\Throwable $e) {
logs("创建或者修改es:".$e->getMessage());
return $e->getMessage();
}
return $response['_shards']['successful']?200:500;
}
/**
* 创建数据
* @param array $params
* @return int
* @author:dc
* @time 2025/3/1 14:25
*/
public function create(array $data, string $id = ''){
$params['index'] = $this->getIndex();
$params['body'] = $data;
if($id){
$params['id'] = $id;
}
try {
$response = $this->client->create($params);
}catch (\Throwable $e) {
logs("新增es:".$e->getMessage());
return 500;
}
return $response['_shards']['successful']?200:500;
}
/**
* 更新文档
* @param string $id
* @param array $data
* @return int
* @author:dc
* @time 2025/3/1 14:30
*/
public function update(string $id, array $data){
$params['index'] = $this->getIndex();
$params = [
'index' => $this->getIndex(),
'id' => $id,
'body' => [
'doc' => $data
]
];
try {
$response = $this->client->update($params);
}catch (\Throwable $e) {
logs("更新es:".$e->getMessage());
return 500;
}
return $response['_shards']['successful']?200:500;
}
/**
* 删除
* @param string $id
* @return array|callable|false
* @author:dc
* @time 2023/6/5 16:26
*/
public function delete(string $id){
try {
$response = $this->client->delete([
'index' => $this->getIndex(),
'id' => $id
]);
} catch (\Throwable $e) {
logs('删除es数据:'.$e->getMessage());
return false;
}
return $response->asArray();
}
/**
* @return \Elastic\Elasticsearch\Client
* @author:dc
* @time 2025/3/1 16:23
*/
public function getClient()
{
return $this->client;
}
/**
* 更新索引 Mapping
* @param array $params
* @author:dc
* @time 2023/6/29 11:17
*/
public function putMapping(array $params,array $setting=[]){
$params = [
"body" => [
"mappings" => $params,
]
];
$params['index'] = $this->getIndex();
if($setting){
$params['body']['settings'] = $setting;
}
try {
$response = $this->client->indices()->create($params);
}catch (\Throwable $e) {
logs('es 创建索引 映射:'.$e->getMessage());
return false;
}
return $response['acknowledged']??false;
}
/**
* @return array|false
* @author:dc
* @time 2024/1/9 10:12
*/
public function getMapping(){
$params = [];
$params['index'] = $this->getIndex();
try {
$response = $this->client->indices()->getMapping($params);
}catch (\Throwable $e) {
return [];
}
return $response[$this->getIndex()]['mappings']['properties']??[];
}
}