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
|
@Service public class BatchUpdateService {
@Autowired private DataSource dataSource;
@Autowired private BatchUpdateConfigService configService;
@Autowired private BatchUpdateProgressService progressService;
private final int DEFAULT_BATCH_SIZE = 1000; private final int MAX_BATCH_SIZE = 10000;
public BatchUpdateResult batchUpdate(String tableName, String updateSql, Map<String, Object> parameters) { try { BatchUpdateResult result = new BatchUpdateResult(); result.setTableName(tableName); result.setStartTime(new Date());
BatchUpdateConfig config = configService.getConfig(tableName); if (config == null) { config = createDefaultConfig(tableName); }
long totalCount = getTotalCount(tableName, updateSql, parameters); result.setTotalCount(totalCount);
if (totalCount == 0) { result.setStatus(BatchUpdateStatus.COMPLETED); result.setEndTime(new Date()); return result; }
int batchSize = Math.min(config.getBatchSize(), MAX_BATCH_SIZE); int totalBatches = (int) Math.ceil((double) totalCount / batchSize); result.setTotalBatches(totalBatches);
executeBatchUpdate(tableName, updateSql, parameters, batchSize, totalBatches, result);
result.setStatus(BatchUpdateStatus.COMPLETED); result.setEndTime(new Date());
log.info("分批更新完成: 表={}, 总数量={}, 批次={}", tableName, totalCount, totalBatches); return result;
} catch (Exception e) { log.error("分批更新失败", e); throw new DataUpdateException("分批更新失败", e); } }
private void executeBatchUpdate(String tableName, String updateSql, Map<String, Object> parameters, int batchSize, int totalBatches, BatchUpdateResult result) { try { int processedBatches = 0; int processedCount = 0;
while (processedBatches < totalBatches) { try { int batchCount = executeSingleBatch(tableName, updateSql, parameters, processedBatches * batchSize, batchSize);
processedCount += batchCount; processedBatches++;
result.setProcessedBatches(processedBatches); result.setProcessedCount(processedCount); result.setProgress((double) processedBatches / totalBatches * 100);
progressService.updateProgress(result);
Thread.sleep(configService.getSleepInterval());
} catch (Exception e) { log.error("批次更新失败: 批次={}", processedBatches, e);
result.addFailedBatch(processedBatches);
if (configService.isStopOnError()) { throw e; }
processedBatches++; } }
} catch (Exception e) { log.error("执行分批更新失败", e); result.setStatus(BatchUpdateStatus.FAILED); result.setErrorMessage(e.getMessage()); throw e; } }
private int executeSingleBatch(String tableName, String updateSql, Map<String, Object> parameters, int offset, int batchSize) { try (Connection connection = dataSource.getConnection()) {
String pagedSql = buildPagedSql(updateSql, offset, batchSize);
try (PreparedStatement statement = connection.prepareStatement(pagedSql)) {
setParameters(statement, parameters);
int updateCount = statement.executeUpdate();
log.debug("批次更新完成: 表={}, 偏移={}, 大小={}, 更新数量={}", tableName, offset, batchSize, updateCount);
return updateCount; }
} catch (SQLException e) { log.error("执行单批次更新失败", e); throw new DataUpdateException("执行单批次更新失败", e); } }
private String buildPagedSql(String updateSql, int offset, int batchSize) { return updateSql + " LIMIT " + offset + ", " + batchSize; }
private void setParameters(PreparedStatement statement, Map<String, Object> parameters) throws SQLException { int index = 1; for (Map.Entry<String, Object> entry : parameters.entrySet()) { statement.setObject(index++, entry.getValue()); } }
private long getTotalCount(String tableName, String updateSql, Map<String, Object> parameters) { try (Connection connection = dataSource.getConnection()) {
String countSql = buildCountSql(updateSql);
try (PreparedStatement statement = connection.prepareStatement(countSql)) {
setParameters(statement, parameters);
try (ResultSet resultSet = statement.executeQuery()) { if (resultSet.next()) { return resultSet.getLong(1); } } }
} catch (SQLException e) { log.error("获取总数据量失败", e); throw new DataUpdateException("获取总数据量失败", e); }
return 0; }
private String buildCountSql(String updateSql) { return "SELECT COUNT(*) FROM (" + updateSql.replaceFirst("UPDATE", "SELECT * FROM") + ") t"; }
private BatchUpdateConfig createDefaultConfig(String tableName) { BatchUpdateConfig config = new BatchUpdateConfig(); config.setTableName(tableName); config.setBatchSize(DEFAULT_BATCH_SIZE); config.setSleepInterval(100); config.setStopOnError(false); config.setMaxRetryCount(3);
return config; } }
|