IndexController.java
14.9 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
package com.yoho.search.consumer.restapi;
import com.alibaba.fastjson.JSON;
import com.yoho.error.event.SearchEvent;
import com.yoho.error.event.SearchLogsEvent;
import com.yoho.search.base.utils.EventReportEnum;
import com.yoho.search.base.utils.ISearchConstants;
import com.yoho.search.consumer.index.common.IYohoIndexService;
import com.yoho.search.consumer.index.rebuild.RebuildFlagService;
import com.yoho.search.consumer.job.IndexRebuildJob;
import com.yoho.search.consumer.job.SuggestionCounterJob;
import com.yoho.search.consumer.job.SuggestionDiscoveryJob;
import com.yoho.search.consumer.service.base.ProductIndexService;
import com.yoho.search.consumer.service.bo.ProductIndexBO;
import com.yoho.search.consumer.service.logic.ProductIndexLogicService;
import com.yoho.search.consumer.suggests.counter.KeywordCounterService;
import com.yoho.search.core.es.model.ESBluk;
import com.yoho.search.core.es.utils.IgnoreSomeException;
import org.apache.commons.collections.CollectionUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.amqp.AmqpException;
import org.springframework.amqp.core.AmqpTemplate;
import org.springframework.amqp.core.Message;
import org.springframework.amqp.core.MessageProperties;
import org.springframework.amqp.support.converter.MessageConversionException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationEventPublisher;
import org.springframework.context.ApplicationEventPublisherAware;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletRequest;
import java.io.UnsupportedEncodingException;
import java.util.*;
import java.util.stream.Collectors;
/**
* 索引管理相关请求
*
* @author YOHO
*/
@Controller
public class IndexController implements ApplicationEventPublisherAware {
private static final Logger logger = LoggerFactory.getLogger(IndexController.class);
private static final Logger SEARCH_EVENT_LOG = LoggerFactory.getLogger("SEARCH_EVENT_LOG");
private static final String DEFAULT_CHARSET = "UTF-8";
@Autowired
private IYohoIndexService yohoIndexService;
@Autowired
private ProductIndexService productIndexService;
@Autowired
private ProductIndexLogicService productIndexLogicService;
@Autowired
private AmqpTemplate amqpTemplate;
@Autowired
private RebuildFlagService rebuildFlagService;
@Autowired
private IndexRebuildJob indexRebuildJob;
@Autowired
private SuggestionCounterJob suggestionCounterJob;
@Autowired
private SuggestionDiscoveryJob suggestionDiscoveryJob;
@Autowired
private KeywordCounterService keywordCounterService;
private ApplicationEventPublisher publisher;
@Override
public void setApplicationEventPublisher(ApplicationEventPublisher applicationEventPublisher) {
this.publisher = applicationEventPublisher;
}
@RequestMapping(value = "/testevent")
@ResponseBody
public Map<String, Object> testevent() {
publisher.publishEvent(new SearchLogsEvent("MqListener", EventReportEnum.INDEXCONTROLLER_INDEX_CREATE.getMoudleName(), "monitor", "test"));
// 记录上报的日志
SEARCH_EVENT_LOG.info("report to influxDb,EventName is [{}] ,MoudleName is [{}]", "MqListener_TEST", "consumer");
return getResultMap(200, "success");
}
@RequestMapping(value = "/index/create/{indexName}")
@ResponseBody
public Map<String, Object> create(@PathVariable String indexName, HttpServletRequest request) {
try {
yohoIndexService.createIndex(indexName, true);
} catch (Exception e) {
publisher.publishEvent(new SearchEvent(EventReportEnum.INDEXCONTROLLER_INDEX_CREATE.getEventName(), EventReportEnum.INDEXCONTROLLER_INDEX_CREATE.getFunctionName(),
EventReportEnum.INDEXCONTROLLER_INDEX_CREATE.getMoudleName(), "exception", IgnoreSomeException.filterSomeException(e), null));
return getResultMap(400, "create " + indexName + " error: " + e.getMessage());
}
return getResultMap(200, "create " + indexName + " success");
}
@RequestMapping(value = "/index/exist/{indexName}")
@ResponseBody
public Map<String, Object> exist(@PathVariable String indexName, HttpServletRequest request) {
try {
Boolean bool = yohoIndexService.indexExists(indexName);
if (bool) {
return getResultMap(200, indexName + "exist ");
}
return getResultMap(200, indexName + " not exist ");
} catch (Exception e) {
publisher.publishEvent(new SearchEvent(EventReportEnum.INDEXCONTROLLER_INDEX_EXIST.getEventName(), EventReportEnum.INDEXCONTROLLER_INDEX_EXIST.getFunctionName(),
EventReportEnum.INDEXCONTROLLER_INDEX_EXIST.getMoudleName(), "exception", IgnoreSomeException.filterSomeException(e), null));
return getResultMap(400, indexName + "not exist " + "error: " + e.getMessage());
}
}
@RequestMapping(value = "/index/rebuild/{indexName}")
@ResponseBody
public Map<String, Object> rebuild(@PathVariable String indexName, HttpServletRequest request) {
if (rebuildFlagService.isRebuilding()) {
return getResultMap(400, "current has index rebuilding,please wait......");
}
try {
boolean isExist = yohoIndexService.indexExists(indexName);
// 如果不存在,则创建索引
if (!isExist) {
yohoIndexService.createIndex(indexName, true);
}
yohoIndexService.rebuild(indexName);
} catch (Exception e) {
publisher.publishEvent(new SearchEvent(EventReportEnum.INDEXCONTROLLER_INDEX_REBUILD.getEventName(), EventReportEnum.INDEXCONTROLLER_INDEX_REBUILD.getFunctionName(),
EventReportEnum.INDEXCONTROLLER_INDEX_REBUILD.getMoudleName(), "exception", IgnoreSomeException.filterSomeException(e), null));
return getResultMap(400, "rebuild " + indexName + " error: " + e.getMessage());
}
return getResultMap(200, "rebuild " + indexName + " success");
}
@RequestMapping(value = "/index/refresh/{indexName}")
@ResponseBody
public Map<String, Object> updateIndex(@PathVariable String indexName, @RequestParam String ids) {
if (rebuildFlagService.isRebuilding()) {
return getResultMap(400, "current has index rebuilding, please wait......");
}
if (!ISearchConstants.INDEX_NAME_PRODUCT_INDEX.equals(indexName)) {
// 暂只支持productindex索引,后续可以考虑支持其他或所有索引
return getResultMap(400, "only productindex is supported");
}
if (ids == null || ids.trim().isEmpty()) {
return getResultMap(400, "the ids parameter is required");
}
try {
boolean isExist = yohoIndexService.indexExists(indexName);
// 如果不存在,则创建索引
if (!isExist) {
yohoIndexService.createIndex(indexName, true);
}
long begin = System.currentTimeMillis();
List<ESBluk> bulkList = new ArrayList<ESBluk>();
List<Integer> idList = Arrays.asList(ids.split(",")).stream().map(Integer::valueOf).collect(Collectors.toList());
List<Integer> updateIdList = new ArrayList<>();
List<ProductIndexBO> productIndexBOs = productIndexLogicService.getProductIndexs(idList);
if (CollectionUtils.isNotEmpty(productIndexBOs)) {
for (ProductIndexBO item : productIndexBOs) {
updateIdList.add(item.getProductId());
String jsonStr = JSON.toJSONString(productIndexService.beanToMap(item));
bulkList.add(new ESBluk(jsonStr, String.valueOf(item.getProductId()), indexName, indexName, false));
}
}
List<Integer> deleteIdList = idList.stream().filter(id -> !updateIdList.contains(id)).collect(Collectors.toList());
if (CollectionUtils.isNotEmpty(deleteIdList)) {
for (Integer id : deleteIdList) {
bulkList.add(new ESBluk(null, String.valueOf(id), indexName, indexName, true));
}
}
logger.info("[func=updateIndex][indexName={}][updateIdList={}][deleteIdList={}][bulkList={}]", indexName, updateIdList, deleteIdList, bulkList);
yohoIndexService.bulk(bulkList);
logger.info("[func=updateIndex][indexName={}][cost={}]", indexName, (System.currentTimeMillis() - begin));
} catch (Exception e) {
publisher.publishEvent(new SearchEvent(EventReportEnum.INDEXCONTROLLER_INDEX_REBUILD.getEventName(), EventReportEnum.INDEXCONTROLLER_INDEX_REBUILD.getFunctionName(),
EventReportEnum.INDEXCONTROLLER_INDEX_REBUILD.getMoudleName(), "exception", IgnoreSomeException.filterSomeException(e), null));
return getResultMap(400, "update " + indexName + " error: " + e.getMessage());
}
return getResultMap(200, "update " + indexName + " success");
}
@RequestMapping(value = "/index/rebuildAll")
@ResponseBody
public Map<String, Object> rebuildAll() {
if (rebuildFlagService.isRebuilding()) {
return getResultMap(400, "current has index rebuilding,please wait......");
}
indexRebuildJob.rebuildTblProductIndex();
indexRebuildJob.execute();
suggestionDiscoveryJob.execute();
suggestionCounterJob.execute();
indexRebuildJob.rebuildSuggestIndex();
return getResultMap(200, "rebuildAll success");
}
@RequestMapping(method = RequestMethod.POST, value = "/index/update/{indexName}")
@ResponseBody
public Map<String, Object> update(@PathVariable String indexName, @RequestBody String json, HttpServletRequest request) {
// 通过indexName得到消息地址,然后发消息
// 使用这个接口需要了解消息的格式
String channel = ISearchConstants.REDIS_CHANNEL_PRIFIX + indexName;
try {
amqpTemplate.convertAndSend(channel, createMessage(json));
} catch (AmqpException e) {
publisher.publishEvent(new SearchEvent(EventReportEnum.INDEXCONTROLLER_INDEX_UPDATE.getEventName(), EventReportEnum.INDEXCONTROLLER_INDEX_UPDATE.getFunctionName(),
EventReportEnum.INDEXCONTROLLER_INDEX_UPDATE.getMoudleName(), "exception", IgnoreSomeException.filterSomeException(e), null));
logger.error("[func=sendMessage][step=execption][e={}]", e.getMessage());
}
logger.info("[func=sendMessage][step=success][indexName={}][msg={}]", indexName, json);
return getResultMap(200, "update " + indexName + " success");
}
@RequestMapping(value = "/index/suggestion/flow")
@ResponseBody
public Map<String, Object> runSuggestionFlow() {
try {
if (rebuildFlagService.isRebuilding()) {
return getResultMap(400, "current has index rebuilding, please wait......");
}
suggestionDiscoveryJob.execute();
suggestionCounterJob.execute();
indexRebuildJob.rebuildSuggestIndex();
return getResultMap(200, "success");
} catch (Exception e) {
logger.error("[func=suggestionCounter][step=execption][e={}]", e.getMessage());
Map<String, Object> rtnMap = new HashMap<String, Object>();
rtnMap.put("code", 400);
rtnMap.put("msg", e.getMessage());
return rtnMap;
}
}
@RequestMapping(value = "/index/suggestionCounter")
@ResponseBody
public Map<String, Object> suggestionCounter(@RequestParam String flowName) {
try {
if (rebuildFlagService.isRebuilding()) {
return getResultMap(400, "current has index rebuilding, please wait......");
}
if ("all".equalsIgnoreCase(flowName)) {
suggestionCounterJob.execute();
return getResultMap(200, "success");
}
suggestionCounterJob.executeFlow(flowName);
return getResultMap(200, "success");
} catch (Exception e) {
logger.error("[func=suggestionCounter][step=execption][e={}]", e.getMessage());
Map<String, Object> rtnMap = new HashMap<String, Object>();
rtnMap.put("code", 400);
rtnMap.put("msg", e.getMessage());
return rtnMap;
}
}
@RequestMapping(value = "/index/suggestionDiscovery")
@ResponseBody
public Map<String, Object> suggestionDiscovery(@RequestParam String flowName) {
try {
if (rebuildFlagService.isRebuilding()) {
return getResultMap(400, "current has index rebuilding, please wait......");
}
if ("all".equalsIgnoreCase(flowName)) {
suggestionDiscoveryJob.execute();
} else {
suggestionDiscoveryJob.executeFlow(flowName);
}
return getResultMap(200, "success");
} catch (Exception e) {
logger.error("[func=suggestionCounter][step=execption][e={}]", e.getMessage());
Map<String, Object> rtnMap = new HashMap<String, Object>();
rtnMap.put("code", 400);
rtnMap.put("msg", e.getMessage());
return rtnMap;
}
}
@RequestMapping(value = "/index/suggestion/count")
@ResponseBody
public Map<String, Object> suggestionDetail(@RequestParam String keyword) {
try {
Integer countInES = keywordCounterService.countInES(keyword);
Map<String, Object> rtnMap = getResultMap(200, "success");
Map<String, Integer> data = new HashMap<>(10);
data.put("countInES", countInES);
rtnMap.put("data", data);
return rtnMap;
} catch (Exception e) {
logger.error(e.getMessage(), e);
Map<String, Object> rtnMap = new HashMap<String, Object>();
rtnMap.put("code", 400);
rtnMap.put("msg", e.getMessage());
return rtnMap;
}
}
private Message createMessage(String json) {
byte[] bytes = null;
try {
bytes = json.getBytes(DEFAULT_CHARSET);
} catch (UnsupportedEncodingException e) {
throw new MessageConversionException("Failed to convert Message content", e);
}
MessageProperties messageProperties = new MessageProperties();
messageProperties.setContentType(MessageProperties.CONTENT_TYPE_JSON);
messageProperties.setContentEncoding(DEFAULT_CHARSET);
if (bytes != null) {
messageProperties.setContentLength(bytes.length);
}
return new Message(bytes, messageProperties);
}
private Map<String, Object> getResultMap(final int code, final String message) {
Map<String, Object> rtnMap = new HashMap<String, Object>();
rtnMap.put("code", code);
rtnMap.put("msg", message);
return rtnMap;
}
}