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
| @Service @Slf4j public class HighPerformanceBatchInsertService {
@Autowired private DataMapper dataMapper;
@Autowired private DataSource dataSource;
@Autowired private MeterRegistry meterRegistry;
private final ThreadPoolExecutor executor; private final CountDownLatch latch; private final AtomicLong successCount = new AtomicLong(0); private final AtomicLong failureCount = new AtomicLong(0); private final List<Exception> exceptions = Collections.synchronizedList(new ArrayList<>());
public HighPerformanceBatchInsertService() { this.executor = new ThreadPoolExecutor( 16, 32, 60L, TimeUnit.SECONDS, new LinkedBlockingQueue<>(1000), new ThreadFactoryBuilder() .setNameFormat("batch-insert-%d") .setDaemon(false) .build(), new ThreadPoolExecutor.CallerRunsPolicy() );
this.latch = new CountDownLatch(0); }
public BatchInsertResult batchInsert(List<DataEntity> dataList, BatchInsertConfig config) { long startTime = System.currentTimeMillis();
try { validateBatchInsertParams(dataList, config);
List<List<DataEntity>> batches = preprocessData(dataList, config);
resetCounters(batches.size());
processBatchesInParallel(batches, config);
waitForCompletion(config.getTimeoutSeconds());
BatchInsertResult result = buildResult(startTime);
log.info("批量插入完成: 总数={}, 成功={}, 失败={}, 耗时={}ms", dataList.size(), successCount.get(), failureCount.get(), System.currentTimeMillis() - startTime);
return result;
} catch (Exception e) { log.error("批量插入失败", e); throw new BusinessException("批量插入失败: " + e.getMessage()); } finally { cleanup(); } }
private void processBatchesInParallel(List<List<DataEntity>> batches, BatchInsertConfig config) { for (int i = 0; i < batches.size(); i++) { List<DataEntity> batch = batches.get(i); int batchIndex = i;
executor.submit(() -> { try { processBatch(batch, batchIndex, config); } catch (Exception e) { log.error("批次处理失败: batchIndex={}", batchIndex, e); failureCount.addAndGet(batch.size()); exceptions.add(e); } }); } }
private void processBatch(List<DataEntity> batch, int batchIndex, BatchInsertConfig config) { Connection connection = null; PreparedStatement statement = null;
try { connection = dataSource.getConnection(); connection.setAutoCommit(false);
String sql = buildBatchInsertSql(config.getTableName(), batch.get(0)); statement = connection.prepareStatement(sql);
for (DataEntity entity : batch) { setBatchInsertParameters(statement, entity); statement.addBatch(); }
int[] results = statement.executeBatch();
connection.commit();
int successCountInBatch = Arrays.stream(results) .filter(result -> result >= 0) .sum();
successCount.addAndGet(successCountInBatch);
recordPerformanceMetrics(batch.size(), batchIndex);
log.debug("批次处理完成: batchIndex={}, size={}, success={}", batchIndex, batch.size(), successCountInBatch);
} catch (Exception e) { try { if (connection != null) { connection.rollback(); } } catch (SQLException rollbackException) { log.error("事务回滚失败", rollbackException); }
log.error("批次处理异常: batchIndex={}", batchIndex, e); failureCount.addAndGet(batch.size()); exceptions.add(e);
} finally { closeResources(connection, statement); } }
private List<List<DataEntity>> preprocessData(List<DataEntity> dataList, BatchInsertConfig config) { List<DataEntity> validData = validateData(dataList);
List<DataEntity> cleanedData = cleanData(validData);
List<List<DataEntity>> batches = splitIntoBatches(cleanedData, config.getBatchSize());
log.info("数据预处理完成: 原始={}, 有效={}, 清洗后={}, 批次={}", dataList.size(), validData.size(), cleanedData.size(), batches.size());
return batches; }
private List<DataEntity> validateData(List<DataEntity> dataList) { return dataList.stream() .filter(this::isValidData) .collect(Collectors.toList()); }
private List<DataEntity> cleanData(List<DataEntity> dataList) { return dataList.stream() .map(this::cleanDataEntity) .collect(Collectors.toList()); }
private List<List<DataEntity>> splitIntoBatches(List<DataEntity> dataList, int batchSize) { List<List<DataEntity>> batches = new ArrayList<>();
for (int i = 0; i < dataList.size(); i += batchSize) { int endIndex = Math.min(i + batchSize, dataList.size()); List<DataEntity> batch = dataList.subList(i, endIndex); batches.add(new ArrayList<>(batch)); }
return batches; }
private String buildBatchInsertSql(String tableName, DataEntity entity) { StringBuilder sql = new StringBuilder(); sql.append("INSERT INTO ").append(tableName).append(" (");
Field[] fields = entity.getClass().getDeclaredFields(); for (int i = 0; i < fields.length; i++) { if (i > 0) sql.append(", "); sql.append(fields[i].getName()); }
sql.append(") VALUES (");
for (int i = 0; i < fields.length; i++) { if (i > 0) sql.append(", "); sql.append("?"); }
sql.append(")");
return sql.toString(); }
private void setBatchInsertParameters(PreparedStatement statement, DataEntity entity) throws SQLException { Field[] fields = entity.getClass().getDeclaredFields();
for (int i = 0; i < fields.length; i++) { Field field = fields[i]; field.setAccessible(true);
try { Object value = field.get(entity); statement.setObject(i + 1, value); } catch (IllegalAccessException e) { throw new SQLException("设置参数失败: " + field.getName(), e); } } }
private void recordPerformanceMetrics(int batchSize, int batchIndex) { Counter.builder("batch.insert.count") .tag("batch_size", String.valueOf(batchSize)) .register(meterRegistry) .increment();
Gauge.builder("batch.insert.index") .register(meterRegistry, batchIndex, Number::doubleValue); }
private void waitForCompletion(int timeoutSeconds) throws InterruptedException { if (!latch.await(timeoutSeconds, TimeUnit.SECONDS)) { log.warn("批量插入超时: timeout={}s", timeoutSeconds); } }
private BatchInsertResult buildResult(long startTime) { BatchInsertResult result = new BatchInsertResult(); result.setTotalCount(successCount.get() + failureCount.get()); result.setSuccessCount(successCount.get()); result.setFailureCount(failureCount.get()); result.setSuccessRate((double) successCount.get() / result.getTotalCount()); result.setDuration(System.currentTimeMillis() - startTime); result.setThroughput((double) result.getTotalCount() / result.getDuration() * 1000); result.setExceptions(new ArrayList<>(exceptions));
return result; }
private void resetCounters(int batchCount) { successCount.set(0); failureCount.set(0); exceptions.clear(); latch = new CountDownLatch(batchCount); }
private void cleanup() { executor.shutdown(); try { if (!executor.awaitTermination(60, TimeUnit.SECONDS)) { executor.shutdownNow(); } } catch (InterruptedException e) { executor.shutdownNow(); Thread.currentThread().interrupt(); } }
private void closeResources(Connection connection, PreparedStatement statement) { try { if (statement != null) { statement.close(); } } catch (SQLException e) { log.warn("关闭PreparedStatement失败", e); }
try { if (connection != null) { connection.close(); } } catch (SQLException e) { log.warn("关闭Connection失败", e); } }
private boolean isValidData(DataEntity entity) { return entity != null && entity.getId() != null; }
private DataEntity cleanDataEntity(DataEntity entity) { return entity; }
private void validateBatchInsertParams(List<DataEntity> dataList, BatchInsertConfig config) { if (dataList == null || dataList.isEmpty()) { throw new IllegalArgumentException("数据列表不能为空"); }
if (config == null) { throw new IllegalArgumentException("配置不能为空"); }
if (config.getBatchSize() <= 0) { throw new IllegalArgumentException("批次大小必须大于0"); } } }
|