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 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549
|
@Service public class DiskPerformanceOptimizationService {
@Autowired private DiskMonitorService diskMonitorService; @Autowired private AlertService alertService;
@Scheduled(fixedRate = 300000) public void autoOptimizeDiskPerformance() { try { String hostname = getHostname(); List<DiskMonitorData> diskDataList = diskMonitorService.getRealTimeDiskData(); for (DiskMonitorData diskData : diskDataList) { if (diskData.getIoUtilization() > 90) { executeEmergencyOptimization(diskData); } else if (diskData.getIoUtilization() > 70) { executePreventiveOptimization(diskData); } } } catch (Exception e) { log.error("自动磁盘性能优化失败: {}", e.getMessage(), e); } }
private void executeEmergencyOptimization(DiskMonitorData diskData) { log.warn("执行紧急磁盘性能优化: deviceName={}, ioUtilization={}%", diskData.getDeviceName(), diskData.getIoUtilization()); try { adjustIoScheduler(diskData.getDeviceName()); optimizeIoQueueDepth(diskData.getDeviceName()); adjustIoPriority(diskData.getDeviceName()); cleanupIoCache(diskData.getMountPoint()); sendOptimizationNotification(diskData, "EMERGENCY_OPTIMIZATION"); } catch (Exception e) { log.error("执行紧急优化失败: {}", e.getMessage(), e); } }
private void executePreventiveOptimization(DiskMonitorData diskData) { log.info("执行预防性磁盘性能优化: deviceName={}, ioUtilization={}%", diskData.getDeviceName(), diskData.getIoUtilization()); try { optimizeFileSystemParameters(diskData.getMountPoint()); adjustIoParameters(diskData.getDeviceName()); optimizeCacheStrategy(diskData.getMountPoint()); sendOptimizationNotification(diskData, "PREVENTIVE_OPTIMIZATION"); } catch (Exception e) { log.error("执行预防性优化失败: {}", e.getMessage(), e); } }
private void adjustIoScheduler(String deviceName) { log.info("调整IO调度器: deviceName={}", deviceName); try { String currentScheduler = getCurrentIoScheduler(deviceName); log.info("当前IO调度器: {}", currentScheduler); String optimalScheduler = getOptimalIoScheduler(deviceName); if (!optimalScheduler.equals(currentScheduler)) { setIoScheduler(deviceName, optimalScheduler); log.info("IO调度器已调整为: {}", optimalScheduler); } } catch (Exception e) { log.error("调整IO调度器失败: {}", e.getMessage(), e); } }
private String getCurrentIoScheduler(String deviceName) { try { Path schedulerPath = Paths.get("/sys/block/" + deviceName + "/queue/scheduler"); if (Files.exists(schedulerPath)) { String content = Files.readString(schedulerPath); Pattern pattern = Pattern.compile("\\[(\\w+)\\]"); Matcher matcher = pattern.matcher(content); if (matcher.find()) { return matcher.group(1); } } } catch (Exception e) { log.error("获取当前IO调度器失败: {}", e.getMessage(), e); } return "unknown"; }
private String getOptimalIoScheduler(String deviceName) { if (isSSD(deviceName)) { return "noop"; } else { return "deadline"; } }
private boolean isSSD(String deviceName) { try { Path rotationalPath = Paths.get("/sys/block/" + deviceName + "/queue/rotational"); if (Files.exists(rotationalPath)) { String content = Files.readString(rotationalPath).trim(); return "0".equals(content); } } catch (Exception e) { log.error("判断SSD失败: {}", e.getMessage(), e); } return false; }
private void setIoScheduler(String deviceName, String scheduler) { try { ProcessBuilder pb = new ProcessBuilder("echo", scheduler, ">", "/sys/block/" + deviceName + "/queue/scheduler"); Process process = pb.start(); int exitCode = process.waitFor(); if (exitCode == 0) { log.info("IO调度器设置成功: deviceName={}, scheduler={}", deviceName, scheduler); } else { log.error("IO调度器设置失败: deviceName={}, scheduler={}", deviceName, scheduler); } } catch (Exception e) { log.error("设置IO调度器失败: {}", e.getMessage(), e); } }
private void optimizeIoQueueDepth(String deviceName) { log.info("优化IO队列深度: deviceName={}", deviceName); try { int currentDepth = getCurrentQueueDepth(deviceName); log.info("当前队列深度: {}", currentDepth); int optimalDepth = calculateOptimalQueueDepth(deviceName); if (optimalDepth != currentDepth) { setQueueDepth(deviceName, optimalDepth); log.info("队列深度已调整为: {}", optimalDepth); } } catch (Exception e) { log.error("优化IO队列深度失败: {}", e.getMessage(), e); } }
private int getCurrentQueueDepth(String deviceName) { try { Path depthPath = Paths.get("/sys/block/" + deviceName + "/queue/nr_requests"); if (Files.exists(depthPath)) { String content = Files.readString(depthPath).trim(); return Integer.parseInt(content); } } catch (Exception e) { log.error("获取当前队列深度失败: {}", e.getMessage(), e); } return 128; }
private int calculateOptimalQueueDepth(String deviceName) { if (isSSD(deviceName)) { return 256; } else { return 128; } }
private void setQueueDepth(String deviceName, int depth) { try { ProcessBuilder pb = new ProcessBuilder("echo", String.valueOf(depth), ">", "/sys/block/" + deviceName + "/queue/nr_requests"); Process process = pb.start(); int exitCode = process.waitFor(); if (exitCode == 0) { log.info("队列深度设置成功: deviceName={}, depth={}", deviceName, depth); } else { log.error("队列深度设置失败: deviceName={}, depth={}", deviceName, depth); } } catch (Exception e) { log.error("设置队列深度失败: {}", e.getMessage(), e); } }
private void adjustIoPriority(String deviceName) { log.info("调整IO优先级: deviceName={}", deviceName); try { setIoPriority(deviceName, 1); } catch (Exception e) { log.error("调整IO优先级失败: {}", e.getMessage(), e); } }
private void setIoPriority(String deviceName, int priority) { try { ProcessBuilder pb = new ProcessBuilder("ionice", "-c", "1", "-n", String.valueOf(priority), "-p", "1"); Process process = pb.start(); int exitCode = process.waitFor(); if (exitCode == 0) { log.info("IO优先级设置成功: deviceName={}, priority={}", deviceName, priority); } else { log.error("IO优先级设置失败: deviceName={}, priority={}", deviceName, priority); } } catch (Exception e) { log.error("设置IO优先级失败: {}", e.getMessage(), e); } }
private void cleanupIoCache(String mountPoint) { log.info("清理IO缓存: mountPoint={}", mountPoint); try { ProcessBuilder pb = new ProcessBuilder("sync"); Process process = pb.start(); process.waitFor(); ProcessBuilder pb2 = new ProcessBuilder("echo", "3", ">", "/proc/sys/vm/drop_caches"); Process process2 = pb2.start(); process2.waitFor(); log.info("IO缓存清理完成"); } catch (Exception e) { log.error("清理IO缓存失败: {}", e.getMessage(), e); } }
private void optimizeFileSystemParameters(String mountPoint) { log.info("优化文件系统参数: mountPoint={}", mountPoint); try { optimizeFileSystemMountOptions(mountPoint); optimizeFileSystemCache(mountPoint); } catch (Exception e) { log.error("优化文件系统参数失败: {}", e.getMessage(), e); } }
private void optimizeFileSystemMountOptions(String mountPoint) { try { ProcessBuilder pb = new ProcessBuilder("mount", "|", "grep", mountPoint); Process process = pb.start(); BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream())); String line = reader.readLine(); if (line != null) { log.info("当前挂载选项: {}", line); if (line.contains("ext4")) { optimizeExt4MountOptions(mountPoint); } else if (line.contains("xfs")) { optimizeXfsMountOptions(mountPoint); } } } catch (Exception e) { log.error("优化文件系统挂载选项失败: {}", e.getMessage(), e); } }
private void optimizeExt4MountOptions(String mountPoint) { log.info("优化ext4挂载选项: mountPoint={}", mountPoint); }
private void optimizeXfsMountOptions(String mountPoint) { log.info("优化xfs挂载选项: mountPoint={}", mountPoint); }
private void optimizeFileSystemCache(String mountPoint) { try { adjustFileSystemCacheParameters(); } catch (Exception e) { log.error("优化文件系统缓存失败: {}", e.getMessage(), e); } }
private void adjustFileSystemCacheParameters() { try { ProcessBuilder pb1 = new ProcessBuilder("echo", "10", ">", "/proc/sys/vm/dirty_ratio"); Process process1 = pb1.start(); process1.waitFor(); ProcessBuilder pb2 = new ProcessBuilder("echo", "5", ">", "/proc/sys/vm/dirty_background_ratio"); Process process2 = pb2.start(); process2.waitFor(); log.info("文件系统缓存参数调整完成"); } catch (Exception e) { log.error("调整文件系统缓存参数失败: {}", e.getMessage(), e); } }
private void adjustIoParameters(String deviceName) { log.info("调整IO参数: deviceName={}", deviceName); try { adjustIoReadAhead(deviceName); adjustIoWriteCache(deviceName); } catch (Exception e) { log.error("调整IO参数失败: {}", e.getMessage(), e); } }
private void adjustIoReadAhead(String deviceName) { try { ProcessBuilder pb = new ProcessBuilder("echo", "1024", ">", "/sys/block/" + deviceName + "/queue/read_ahead_kb"); Process process = pb.start(); process.waitFor(); log.info("IO预读调整完成: deviceName={}", deviceName); } catch (Exception e) { log.error("调整IO预读失败: {}", e.getMessage(), e); } }
private void adjustIoWriteCache(String deviceName) { try { ProcessBuilder pb = new ProcessBuilder("echo", "1", ">", "/sys/block/" + deviceName + "/queue/write_cache"); Process process = pb.start(); process.waitFor(); log.info("IO写缓存调整完成: deviceName={}", deviceName); } catch (Exception e) { log.error("调整IO写缓存失败: {}", e.getMessage(), e); } }
private void optimizeCacheStrategy(String mountPoint) { log.info("优化缓存策略: mountPoint={}", mountPoint); try { optimizePageCache(); optimizeBufferCache(); } catch (Exception e) { log.error("优化缓存策略失败: {}", e.getMessage(), e); } }
private void optimizePageCache() { try { ProcessBuilder pb = new ProcessBuilder("echo", "1", ">", "/proc/sys/vm/swappiness"); Process process = pb.start(); process.waitFor(); log.info("页面缓存优化完成"); } catch (Exception e) { log.error("优化页面缓存失败: {}", e.getMessage(), e); } }
private void optimizeBufferCache() { try { ProcessBuilder pb = new ProcessBuilder("echo", "1", ">", "/proc/sys/vm/drop_caches"); Process process = pb.start(); process.waitFor(); log.info("缓冲区缓存优化完成"); } catch (Exception e) { log.error("优化缓冲区缓存失败: {}", e.getMessage(), e); } }
private void sendOptimizationNotification(DiskMonitorData diskData, String optimizationType) { try { AlertMessage alert = new AlertMessage(); alert.setType("DISK_OPTIMIZATION"); alert.setLevel("INFO"); alert.setMessage(String.format("磁盘性能优化完成: 类型=%s, 设备=%s, IO利用率=%.2f%%", optimizationType, diskData.getDeviceName(), diskData.getIoUtilization())); alert.setTimestamp(new Date()); alertService.sendAlert(alert); } catch (Exception e) { log.error("发送优化通知失败: {}", e.getMessage(), e); } }
private String getHostname() { try { return InetAddress.getLocalHost().getHostName(); } catch (UnknownHostException e) { return "unknown"; } } }
|