IndexController.java 17.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 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
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.CharUtils;
import com.yoho.search.base.utils.EventReportEnum;
import com.yoho.search.base.utils.ISearchConstants;
import com.yoho.search.base.utils.MD5Util;
import com.yoho.search.consumer.common.LogUtils;
import com.yoho.search.consumer.index.common.IYohoIndexService;
import com.yoho.search.consumer.index.common.impl.ProductIndexRebuildListener;
import com.yoho.search.consumer.index.fullbuild.ProductIndexIndexBuilder;
import com.yoho.search.consumer.index.increment.AbstractMqListener;
import com.yoho.search.consumer.index.rebuild.RebuildFlagService;
import com.yoho.search.consumer.job.IndexRebuildJob;
import com.yoho.search.consumer.job.ProductVectorFeatureJob;
import com.yoho.search.consumer.job.SuggestionJob;
import com.yoho.search.consumer.service.base.SuggestWordDefService;
import com.yoho.search.consumer.service.bo.ProductIndexBO;
import com.yoho.search.consumer.service.logic.productIndex.ProductIndexBOToMapService;
import com.yoho.search.consumer.suggests.common.KeywordType;
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 com.yoho.search.dal.model.SuggestWordDef;

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.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationEventPublisher;
import org.springframework.context.ApplicationEventPublisherAware;
import org.springframework.stereotype.Controller;
import org.springframework.util.Assert;
import org.springframework.web.bind.annotation.*;

import javax.servlet.http.HttpServletRequest;

import java.nio.charset.StandardCharsets;
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 ProductIndexIndexBuilder productIndexIndexBuilder;
	@Autowired
	private AmqpTemplate amqpTemplate;
	@Autowired
	private RebuildFlagService rebuildFlagService;
	@Autowired
	private IndexRebuildJob indexRebuildJob;
	@Autowired
	private SuggestionJob suggestionJob;
	@Autowired
	private ProductVectorFeatureJob productVectorFeatureJob;
	@Autowired
	private SuggestWordDefService suggestWordDefService;
	@Autowired
	private KeywordCounterService keywordCounterService;
	@Autowired
	private ProductIndexRebuildListener productIndexRebuildListener;
	@Autowired
	private ProductIndexBOToMapService productIndexBOToMapService;

	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");
		}

		boolean isExist = yohoIndexService.indexExists(indexName);
		// 如果不存在,则创建索引
		if (!isExist) {
			return getResultMap(400, "the index not exist");
		}

		Exception exception = null;
		try {
			long begin = System.currentTimeMillis();
			productIndexRebuildListener.beforeRebuild();

			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 = productIndexIndexBuilder.getProductIndexBOs(idList);
			if (CollectionUtils.isNotEmpty(productIndexBOs)) {
				for (ProductIndexBO item : productIndexBOs) {
					updateIdList.add(item.getProductId());
					String jsonStr = JSON.toJSONString(productIndexBOToMapService.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));
			Map<String, Object> resultMap = getResultMap(200, "update " + indexName + " success");
			resultMap.put("data", productIndexBOs);
			resultMap.put("deleteIdList", deleteIdList);
			return resultMap;
		} catch (Exception e) {
			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());
		} finally {
			productIndexRebuildListener.afterRebuild(exception);
		}
	}

	@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();
		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......");
			}

			suggestionJob.executeAll();

			return getResultMap(200, "success");
		} catch (Exception e) {
			logger.error("[func=runSuggestionFlow][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)) {
				suggestionJob.executeCounter();
				return getResultMap(200, "success");
			}

			suggestionJob.executeCounterForSingleFlow(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)) {
				suggestionJob.executeDiscovery();
			} else {
				suggestionJob.executeDiscoveryForSingleFlow(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/suggestWordMgr")
	@ResponseBody
	public Map<String, Object> suggestWordMgr(@RequestParam String keyword, @RequestParam(defaultValue = "false") boolean isDelete) {
		Assert.notNull(keyword);
		try {
			SuggestWordDef suggestWordDef = suggestWordDefService.selectByKeyword(keyword);
			if (isDelete) {
				if (suggestWordDef == null) {
					throw new RuntimeException("The keyword is not found!");
				}

				if (!Integer.valueOf(1).equals(suggestWordDef.getStatus())) {
					throw new RuntimeException("The keyword has been deleted already!");
				}

				suggestWordDefService.updateStatusByPrimaryKey(suggestWordDef.getId(), 0);
				yohoIndexService.deleteIndexData(ISearchConstants.INDEX_NAME_SUGGEST, MD5Util.string2MD5(keyword.trim().toLowerCase()));
			} else {
				if (suggestWordDef != null) {
					throw new RuntimeException("The keyword has been added!");
				}

				suggestWordDef = keywordCounterService.countKeyword(keyword);
				suggestWordDef.setStatus(1);
				suggestWordDef.setType(KeywordType.Customized.getType());
				suggestWordDef.setWeight(KeywordType.Customized.getWeightValue());
				suggestWordDefService.insertBatch(Arrays.asList(suggestWordDef));

				Map<String, Object> dataMap = new HashMap<String, Object>();
				dataMap.put("keyword", keyword);
				dataMap.put("standardKeyword", CharUtils.standardized(keyword));
				dataMap.put("type", suggestWordDef.getType());
				dataMap.put("weight", suggestWordDef.getWeight());
				dataMap.put("count", suggestWordDef.getCount());
				dataMap.put("countForApp", suggestWordDef.getCountForApp());
				dataMap.put("countForBlk", suggestWordDef.getCountForBlk());

				yohoIndexService.addIndexData(ISearchConstants.INDEX_NAME_SUGGEST, MD5Util.string2MD5(keyword.trim().toLowerCase()), dataMap);
			}

			return getResultMap(200, "success");
		} 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;
		}
	}

	@RequestMapping(value = "/index/cleanExpiredProductVectorFeature")
	@ResponseBody
	public Map<String, Object> cleanExpiredProductVectorFeature() {
		try {
			productVectorFeatureJob.clean();
			return getResultMap(200, "success");
		} 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;
		}
	}

	@RequestMapping(value = "/index/updateProductIndexVector")
	@ResponseBody
	public Map<String, Object> updateProductIndexVector(@RequestParam(defaultValue = "false") boolean force) {
		try {
			if (force) {
				productVectorFeatureJob.doUpdateProductIndexVector();
			} else {
				productVectorFeatureJob.updateProductIndexVector();
			}
			return getResultMap(200, "success");
		} 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;
		}
	}

	@RequestMapping(value = "/index/closeIncrease")
	@ResponseBody
	public Map<String, Object> closeIncrease() {
		AbstractMqListener.closeIncrease();
		Map<String, Object> rtnMap = new HashMap<String, Object>();
		rtnMap.put("code", 200);
		rtnMap.put("msg", "closeIncrease success");
		return rtnMap;
	}

	@RequestMapping(value = "/index/openIncrease")
	@ResponseBody
	public Map<String, Object> openIncrease() {
		AbstractMqListener.openIncrease();
		Map<String, Object> rtnMap = new HashMap<String, Object>();
		rtnMap.put("code", 200);
		rtnMap.put("msg", "openIncrease success");
		return rtnMap;
	}

	/**
	 * 用于动态地变更日记级别。
	 * 
	 * @param loggerName
	 *            日志名称,有三类: 第一种是ROOT,对所有日志都起作用,
	 *            第二种是具体的日志名称,如CACHE_MATCH_REQUEST,
	 *            第三种就是全限定类名,如com.yoho.search.service
	 *            .servicenew.impl.ProductListServiceImpl。
	 * @param level
	 *            调整目标级别,支持ALL/TRACE/DEBUG/INFO/WARN/ERROR/OFF这些取值
	 * @param seconds
	 *            调整日志级别的有效时间,默认为60秒,最多只能为600秒,到了时间后变更为原来的日志级别。
	 * @return
	 */
	@RequestMapping(method = RequestMethod.GET, value = "/changeLogLevel")
	@ResponseBody
	public Map<String, Object> changeLogLevel(@RequestParam(defaultValue = "ROOT") String loggerName, @RequestParam(defaultValue = "INFO") String level,
			@RequestParam(defaultValue = "60") int seconds) {
		try {
			return getResultMap(200, LogUtils.changeLogLevel(loggerName, level, seconds));
		} catch (Exception e) {
			return getResultMap(500, e.getMessage());
		}
	}

	private Message createMessage(String json) {
		byte[] bytes = null;
		bytes = json.getBytes(StandardCharsets.UTF_8);
		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;
	}
}