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
| @Component @Slf4j public class GracefulShutdownManager {
@Autowired private ApplicationContext applicationContext;
@Autowired private ShutdownHookRegistry shutdownHookRegistry;
@Autowired private HealthCheckService healthCheckService;
@Autowired private ServiceRegistry serviceRegistry;
private volatile boolean shutdownInProgress = false; private volatile boolean shutdownCompleted = false; private final CountDownLatch shutdownLatch = new CountDownLatch(1);
private final List<ShutdownHook> shutdownHooks = new ArrayList<>(); private final AtomicInteger activeRequests = new AtomicInteger(0); private final AtomicInteger activeTasks = new AtomicInteger(0);
@PostConstruct public void initializeGracefulShutdown() { try { registerSignalHandlers();
registerShutdownHooks();
startHealthCheck();
registerService();
log.info("优雅停机管理器初始化完成");
} catch (Exception e) { log.error("优雅停机管理器初始化失败", e); throw new RuntimeException("优雅停机管理器初始化失败", e); } }
private void registerSignalHandlers() { SignalHandler sigtermHandler = signal -> { log.info("收到SIGTERM信号,开始优雅停机"); initiateGracefulShutdown("SIGTERM"); }; Signal.handle(new Signal("TERM"), sigtermHandler);
SignalHandler sigintHandler = signal -> { log.info("收到SIGINT信号,开始优雅停机"); initiateGracefulShutdown("SIGINT"); }; Signal.handle(new Signal("INT"), sigintHandler);
SignalHandler sighupHandler = signal -> { log.info("收到SIGHUP信号,重新加载配置"); reloadConfiguration(); }; Signal.handle(new Signal("HUP"), sighupHandler);
log.info("信号处理器注册完成"); }
private void registerShutdownHooks() { shutdownHooks.add(new DatabaseConnectionPoolShutdownHook());
shutdownHooks.add(new CacheConnectionShutdownHook());
shutdownHooks.add(new MessageQueueShutdownHook());
shutdownHooks.add(new ScheduledTaskShutdownHook());
shutdownHooks.add(new FileResourceShutdownHook());
shutdownHooks.add(new NetworkConnectionShutdownHook());
log.info("停机钩子注册完成: 数量={}", shutdownHooks.size()); }
private void startHealthCheck() { healthCheckService.start(); log.info("健康检查服务启动完成"); }
private void registerService() { serviceRegistry.register(); log.info("服务注册完成"); }
public void initiateGracefulShutdown(String reason) { if (shutdownInProgress) { log.warn("停机已在进行中,忽略重复的停机请求: reason={}", reason); return; }
shutdownInProgress = true; log.info("开始优雅停机: reason={}", reason);
try { publishShutdownEvent(ShutdownEvent.STARTED, reason);
removeFromLoadBalancer();
stopAcceptingNewRequests();
waitForActiveRequestsToComplete();
waitForActiveTasksToComplete();
executeShutdownHooks();
unregisterService();
publishShutdownEvent(ShutdownEvent.COMPLETED, reason);
shutdownCompleted = true; shutdownLatch.countDown();
log.info("优雅停机完成: reason={}", reason);
} catch (Exception e) { log.error("优雅停机过程中发生异常: reason={}", reason, e); publishShutdownEvent(ShutdownEvent.FAILED, reason + ": " + e.getMessage()); } }
private void removeFromLoadBalancer() { try { healthCheckService.markUnhealthy();
loadBalancerService.removeInstance();
Thread.sleep(2000);
log.info("已从负载均衡器移除");
} catch (Exception e) { log.error("从负载均衡器移除失败", e); } }
private void stopAcceptingNewRequests() { try { stopHttpServer();
stopMessageListeners();
stopScheduledTasks();
log.info("已停止接收新请求");
} catch (Exception e) { log.error("停止接收新请求失败", e); } }
private void waitForActiveRequestsToComplete() { int maxWaitTime = 30; int waitTime = 0;
while (activeRequests.get() > 0 && waitTime < maxWaitTime) { try { Thread.sleep(1000); waitTime++;
if (waitTime % 5 == 0) { log.info("等待现有请求完成: 活跃请求数={}, 等待时间={}s", activeRequests.get(), waitTime); }
} catch (InterruptedException e) { Thread.currentThread().interrupt(); break; } }
if (activeRequests.get() > 0) { log.warn("等待现有请求完成超时: 活跃请求数={}", activeRequests.get()); } else { log.info("现有请求已完成"); } }
private void waitForActiveTasksToComplete() { int maxWaitTime = 60; int waitTime = 0;
while (activeTasks.get() > 0 && waitTime < maxWaitTime) { try { Thread.sleep(1000); waitTime++;
if (waitTime % 10 == 0) { log.info("等待活跃任务完成: 活跃任务数={}, 等待时间={}s", activeTasks.get(), waitTime); }
} catch (InterruptedException e) { Thread.currentThread().interrupt(); break; } }
if (activeTasks.get() > 0) { log.warn("等待活跃任务完成超时: 活跃任务数={}", activeTasks.get()); } else { log.info("活跃任务已完成"); } }
private void executeShutdownHooks() { log.info("开始执行停机钩子: 数量={}", shutdownHooks.size());
for (ShutdownHook hook : shutdownHooks) { try { log.info("执行停机钩子: {}", hook.getClass().getSimpleName()); hook.shutdown(); log.info("停机钩子执行完成: {}", hook.getClass().getSimpleName());
} catch (Exception e) { log.error("停机钩子执行失败: {}", hook.getClass().getSimpleName(), e); } }
log.info("所有停机钩子执行完成"); }
private void unregisterService() { try { serviceRegistry.unregister(); log.info("服务注销完成");
} catch (Exception e) { log.error("服务注销失败", e); } }
private void publishShutdownEvent(ShutdownEvent event, String reason) { try { ShutdownEventData eventData = new ShutdownEventData(); eventData.setEvent(event); eventData.setReason(reason); eventData.setTimestamp(LocalDateTime.now()); eventData.setActiveRequests(activeRequests.get()); eventData.setActiveTasks(activeTasks.get());
applicationContext.publishEvent(eventData);
} catch (Exception e) { log.error("发布停机事件失败", e); } }
private void reloadConfiguration() { try { log.info("开始重新加载配置");
configurationService.reload();
log.info("配置重新加载完成");
} catch (Exception e) { log.error("配置重新加载失败", e); } }
private void stopHttpServer() { try { TomcatWebServer tomcatWebServer = (TomcatWebServer) applicationContext.getBean(WebServer.class); tomcatWebServer.stop();
log.info("HTTP服务器已停止");
} catch (Exception e) { log.error("停止HTTP服务器失败", e); } }
private void stopMessageListeners() { try { messageListenerService.stopAllListeners();
log.info("消息监听器已停止");
} catch (Exception e) { log.error("停止消息监听器失败", e); } }
private void stopScheduledTasks() { try { scheduledTaskService.stopAllTasks();
log.info("定时任务已停止");
} catch (Exception e) { log.error("停止定时任务失败", e); } }
public void incrementActiveRequests() { activeRequests.incrementAndGet(); }
public void decrementActiveRequests() { activeRequests.decrementAndGet(); }
public void incrementActiveTasks() { activeTasks.incrementAndGet(); }
public void decrementActiveTasks() { activeTasks.decrementAndGet(); }
public boolean isShutdownInProgress() { return shutdownInProgress; }
public boolean isShutdownCompleted() { return shutdownCompleted; }
public void waitForShutdown() throws InterruptedException { shutdownLatch.await(); } }
|