10 changed files with 248 additions and 22 deletions
@ -0,0 +1,58 @@
|
||||
package com.logpm.factory.jobhandler; |
||||
|
||||
|
||||
import com.logpm.factory.mt.entity.MtOrderLogEntity; |
||||
import com.logpm.factory.mt.mapper.MtOrderLogFailRetryMapper; |
||||
import com.logpm.factory.mt.service.MtOrderLogFailRetryService; |
||||
import com.logpm.factory.oupai.entity.OpFailRetryPushPackageEntity; |
||||
import com.xxl.job.core.biz.model.ReturnT; |
||||
import com.xxl.job.core.handler.annotation.XxlJob; |
||||
import lombok.AllArgsConstructor; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springframework.stereotype.Component; |
||||
|
||||
import java.util.List; |
||||
|
||||
@Slf4j |
||||
@Component |
||||
@AllArgsConstructor |
||||
public class MtOrderLogFailRetryJob { |
||||
|
||||
private final MtOrderLogFailRetryService mtOrderLogFailRetryService; |
||||
|
||||
private final MtOrderLogFailRetryMapper mtOrderLogFailRetryMapper; |
||||
|
||||
// 多次循环处理的时候,每次最大处理的数据量
|
||||
private static final Integer loopHandleQuantity = 500; |
||||
|
||||
/** |
||||
* 梦天数据推送失败的进行定时重推 |
||||
* @return |
||||
*/ |
||||
@XxlJob("MtOrderLogFailRetryJob") |
||||
public ReturnT<String> execute(String param) { |
||||
|
||||
try { |
||||
batchHandleData(null, loopHandleQuantity); |
||||
}catch (Exception exception){ |
||||
log.error("OpFailPackageRetryJob error:{}",exception.getMessage()); |
||||
} |
||||
|
||||
return ReturnT.SUCCESS; |
||||
} |
||||
|
||||
/** |
||||
* 批次处理 |
||||
* @param startId |
||||
* @param quantity |
||||
*/ |
||||
private void batchHandleData(Long startId, Integer quantity) { |
||||
List<MtOrderLogEntity> batchData = mtOrderLogFailRetryMapper.selectWaitData(quantity, startId); |
||||
|
||||
mtOrderLogFailRetryService.retry(batchData); |
||||
|
||||
if (batchData.size() == quantity) { |
||||
batchHandleData(batchData.get(quantity - 1).getId(), quantity); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,16 @@
|
||||
package com.logpm.factory.mt.mapper; |
||||
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.logpm.factory.mt.entity.MtOrderLogEntity; |
||||
import org.apache.ibatis.annotations.Mapper; |
||||
|
||||
import java.util.List; |
||||
|
||||
@Mapper |
||||
public interface MtOrderLogFailRetryMapper extends BaseMapper<MtOrderLogEntity>{ |
||||
void updateStatusToCompleteByIds(List<Long> ids); |
||||
void updateStatusToExpireByIds(List<Long> ids, String date); |
||||
|
||||
List<MtOrderLogEntity> selectWaitData(Integer limit, Long startId); |
||||
} |
@ -0,0 +1,32 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" > |
||||
<mapper namespace="com.logpm.factory.mt.mapper.MtOrderLogFailRetryMapper"> |
||||
<update id="updateStatusToCompleteByIds"> |
||||
UPDATE logpm_factory.mt_order_log |
||||
SET push_status = 2 |
||||
WHERE id IN |
||||
<foreach collection="ids" item="id" open="(" separator="," close=")" > |
||||
#{id} |
||||
</foreach> |
||||
</update> |
||||
|
||||
<update id="updateStatusToExpireByIds"> |
||||
UPDATE logpm_factory.mt_order_log |
||||
SET push_status = 3 |
||||
WHERE id IN |
||||
<foreach collection="ids" item="id" open="(" separator="," close=")" > |
||||
#{id} |
||||
</foreach> |
||||
AND create_time <![CDATA[ < ]]> #{date} |
||||
</update> |
||||
|
||||
<select id="selectWaitData" resultType="com.logpm.factory.mt.entity.MtOrderLogEntity"> |
||||
SELECT * FROM logpm_factory.mt_order_log |
||||
WHERE push_status = 1 |
||||
<if test="startId != null"> |
||||
id > #{startId} |
||||
</if> |
||||
ORDER BY id |
||||
LIMIT #{limit} |
||||
</select> |
||||
</mapper> |
@ -0,0 +1,9 @@
|
||||
package com.logpm.factory.mt.service; |
||||
|
||||
import com.logpm.factory.mt.entity.MtOrderLogEntity; |
||||
|
||||
import java.util.List; |
||||
|
||||
public interface MtOrderLogFailRetryService { |
||||
void retry(List<MtOrderLogEntity> waitData); |
||||
} |
@ -0,0 +1,93 @@
|
||||
package com.logpm.factory.mt.service.impl; |
||||
|
||||
import com.alibaba.nacos.shaded.com.google.gson.Gson; |
||||
import com.logpm.factory.comfac.dto.OrderStatusDTO; |
||||
import com.logpm.factory.mt.entity.MtOrderLogEntity; |
||||
import com.logpm.factory.mt.service.MtOrderLogFailRetryService; |
||||
import com.logpm.factory.oupai.entity.OpFailRetryPushPackageEntity; |
||||
import com.logpm.factory.oupai.mapper.OpFailRetryPushPackageMapper; |
||||
import com.logpm.factory.oupai.service.IOuPaiFactoryService; |
||||
import lombok.AllArgsConstructor; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springframework.scheduling.annotation.Async; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
import java.text.SimpleDateFormat; |
||||
import java.util.ArrayList; |
||||
import java.util.Calendar; |
||||
import java.util.Date; |
||||
import java.util.List; |
||||
|
||||
@Slf4j |
||||
@Service |
||||
@AllArgsConstructor |
||||
public class MtOrderLogFailRetryServiceImpl implements MtOrderLogFailRetryService { |
||||
protected OpFailRetryPushPackageMapper opFailRetryPushPackageMapper; |
||||
|
||||
protected IOuPaiFactoryService ouPaiFactoryService; |
||||
|
||||
protected final int MAX_RETRY_TIMES = 7; |
||||
|
||||
@Async |
||||
@Override |
||||
public void retry(List<MtOrderLogEntity> waitData){ |
||||
ArrayList<Long> completeIds = new ArrayList<>(); |
||||
ArrayList<Long> failIds = new ArrayList<>(); |
||||
|
||||
waitData.forEach(opFailRetryPushPackageEntity -> executeRetry(opFailRetryPushPackageEntity, completeIds, failIds)); |
||||
|
||||
updatePushStatus(completeIds, failIds); |
||||
} |
||||
|
||||
/** |
||||
* 更新推送状态 |
||||
* @param completeIds |
||||
* @param failIds |
||||
*/ |
||||
protected void updatePushStatus(ArrayList<Long> completeIds, ArrayList<Long> failIds){ |
||||
if (!completeIds.isEmpty()) { |
||||
opFailRetryPushPackageMapper.updateStatusToCompleteByIds(completeIds); |
||||
} |
||||
if (!failIds.isEmpty()) { |
||||
opFailRetryPushPackageMapper.updateStatusToExpireByIds(failIds, getExpireTime()); |
||||
} |
||||
} |
||||
|
||||
/** |
||||
* 获取过期的时间 |
||||
* |
||||
* @return |
||||
*/ |
||||
protected String getExpireTime(){ |
||||
Calendar calendar = Calendar.getInstance(); |
||||
Date date = new Date(); |
||||
|
||||
calendar.setTime(date); |
||||
calendar.add(Calendar.DATE, -MAX_RETRY_TIMES); |
||||
|
||||
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); |
||||
|
||||
return sdf.format(calendar.getTime()); |
||||
} |
||||
|
||||
/** |
||||
* 执行重试 |
||||
* @param mtOrderLogEntity |
||||
* @param completeIds |
||||
*/ |
||||
protected void executeRetry(MtOrderLogEntity mtOrderLogEntity, ArrayList<Long> completeIds, ArrayList<Long> failIds) { |
||||
try { |
||||
OrderStatusDTO orderStatusDTO = new Gson().fromJson(mtOrderLogEntity.getResBody(), OrderStatusDTO.class); |
||||
|
||||
boolean res = ouPaiFactoryService.retryHandleStatusData(orderStatusDTO); |
||||
|
||||
if (res) { |
||||
completeIds.add(mtOrderLogEntity.getId()); |
||||
} else { |
||||
failIds.add(mtOrderLogEntity.getId()); |
||||
} |
||||
} catch (Exception e) { |
||||
log.error("executeRetry error: {}", e.getMessage()); |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue