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
|
@Service public class RedisOptimizationService {
@Autowired private RedisMonitorService redisMonitorService; @Autowired private AlertService alertService; @Autowired private JedisPool jedisPool;
@Scheduled(fixedRate = 300000) public void autoOptimizeRedis() { try { String hostname = getHostname(); RedisMonitorData redisData = redisMonitorService.getRealTimeRedisData(hostname); if (redisData == null) { return; } if (redisData.getMemoryUsage() > 90) { executeEmergencyOptimization(redisData); } else if (redisData.getMemoryUsage() > 80) { executePreventiveOptimization(redisData); } if (redisData.getHitRate() < 80) { executeCacheOptimization(redisData); } } catch (Exception e) { log.error("自动Redis优化失败: {}", e.getMessage(), e); } }
private void executeEmergencyOptimization(RedisMonitorData redisData) { log.warn("执行紧急Redis优化: memoryUsage={}%", redisData.getMemoryUsage()); try { cleanupExpiredKeys(); performMemoryReclaim(); adjustMemoryPolicy(); cleanupBigKeys(); sendOptimizationNotification(redisData, "EMERGENCY_OPTIMIZATION"); } catch (Exception e) { log.error("执行紧急优化失败: {}", e.getMessage(), e); } }
private void executePreventiveOptimization(RedisMonitorData redisData) { log.info("执行预防性Redis优化: memoryUsage={}%", redisData.getMemoryUsage()); try { optimizeMemoryConfig(); adjustConnectionPoolConfig(); optimizePersistenceConfig(); sendOptimizationNotification(redisData, "PREVENTIVE_OPTIMIZATION"); } catch (Exception e) { log.error("执行预防性优化失败: {}", e.getMessage(), e); } }
private void executeCacheOptimization(RedisMonitorData redisData) { log.info("执行Redis缓存优化: hitRate={}%", redisData.getHitRate()); try { analyzeKeyspace(); optimizeKeyExpiration(); adjustCacheStrategy(); sendOptimizationNotification(redisData, "CACHE_OPTIMIZATION"); } catch (Exception e) { log.error("执行缓存优化失败: {}", e.getMessage(), e); } }
private void cleanupExpiredKeys() { log.info("清理Redis过期键"); try (Jedis jedis = jedisPool.getResource()) { jedis.eval("return redis.call('del', unpack(redis.call('keys', '*')) for k,v in pairs(redis.call('keys', '*')) do if redis.call('ttl', k) == -1 then redis.call('del', k) end end"); log.info("过期键清理完成"); } catch (Exception e) { log.error("清理过期键失败: {}", e.getMessage(), e); } }
private void performMemoryReclaim() { log.info("执行Redis内存回收"); try (Jedis jedis = jedisPool.getResource()) { jedis.memoryPurge(); log.info("内存回收完成"); } catch (Exception e) { log.error("执行内存回收失败: {}", e.getMessage(), e); } }
private void adjustMemoryPolicy() { log.info("调整Redis内存策略"); try (Jedis jedis = jedisPool.getResource()) { jedis.configSet("maxmemory-policy", "allkeys-lru"); log.info("内存策略调整完成"); } catch (Exception e) { log.error("调整内存策略失败: {}", e.getMessage(), e); } }
private void cleanupBigKeys() { log.info("清理Redis大键"); try (Jedis jedis = jedisPool.getResource()) { List<String> bigKeys = findBigKeys(jedis); for (String key : bigKeys) { try { jedis.del(key); log.info("删除大键: {}", key); } catch (Exception e) { log.warn("删除大键失败: {}, error={}", key, e.getMessage()); } } } catch (Exception e) { log.error("清理大键失败: {}", e.getMessage(), e); } }
private List<String> findBigKeys(Jedis jedis) { List<String> bigKeys = new ArrayList<>(); try { String cursor = "0"; do { ScanResult<String> result = jedis.scan(cursor, new ScanParams().count(100)); cursor = result.getCursor(); for (String key : result.getResult()) { try { long memoryUsage = jedis.memoryUsage(key); if (memoryUsage > 1024 * 1024) { bigKeys.add(key); } } catch (Exception e) { } } } while (!"0".equals(cursor)); } catch (Exception e) { log.error("查找大键失败: {}", e.getMessage(), e); } return bigKeys; }
private void optimizeMemoryConfig() { log.info("优化Redis内存配置"); try (Jedis jedis = jedisPool.getResource()) { jedis.configSet("maxmemory", "2gb"); jedis.configSet("maxmemory-policy", "allkeys-lru"); jedis.configSet("active-defrag-threshold-lower", "10"); jedis.configSet("active-defrag-threshold-upper", "100"); log.info("内存配置优化完成"); } catch (Exception e) { log.error("优化内存配置失败: {}", e.getMessage(), e); } }
private void adjustConnectionPoolConfig() { log.info("调整Redis连接池配置"); try (Jedis jedis = jedisPool.getResource()) { jedis.configSet("maxclients", "10000"); jedis.configSet("timeout", "300"); log.info("连接池配置调整完成"); } catch (Exception e) { log.error("调整连接池配置失败: {}", e.getMessage(), e); } }
private void optimizePersistenceConfig() { log.info("优化Redis持久化配置"); try (Jedis jedis = jedisPool.getResource()) { jedis.configSet("save", "900 1 300 10 60 10000"); jedis.configSet("appendonly", "yes"); jedis.configSet("appendfsync", "everysec"); log.info("持久化配置优化完成"); } catch (Exception e) { log.error("优化持久化配置失败: {}", e.getMessage(), e); } }
private void analyzeKeyspace() { log.info("分析Redis键空间"); try (Jedis jedis = jedisPool.getResource()) { String info = jedis.info("keyspace"); log.info("键空间信息: {}", info); analyzeKeyDistribution(jedis); } catch (Exception e) { log.error("分析键空间失败: {}", e.getMessage(), e); } }
private void analyzeKeyDistribution(Jedis jedis) { try { Map<String, Integer> keyTypes = new HashMap<>(); String cursor = "0"; do { ScanResult<String> result = jedis.scan(cursor, new ScanParams().count(100)); cursor = result.getCursor(); for (String key : result.getResult()) { try { String type = jedis.type(key); keyTypes.put(type, keyTypes.getOrDefault(type, 0) + 1); } catch (Exception e) { } } } while (!"0".equals(cursor)); log.info("键类型分布: {}", keyTypes); } catch (Exception e) { log.error("分析键分布失败: {}", e.getMessage(), e); } }
private void optimizeKeyExpiration() { log.info("优化Redis键过期策略"); try (Jedis jedis = jedisPool.getResource()) { jedis.configSet("hz", "10"); log.info("键过期策略优化完成"); } catch (Exception e) { log.error("优化键过期策略失败: {}", e.getMessage(), e); } }
private void adjustCacheStrategy() { log.info("调整Redis缓存策略"); try (Jedis jedis = jedisPool.getResource()) { jedis.configSet("maxmemory-policy", "allkeys-lru"); log.info("缓存策略调整完成"); } catch (Exception e) { log.error("调整缓存策略失败: {}", e.getMessage(), e); } }
private void sendOptimizationNotification(RedisMonitorData redisData, String optimizationType) { try { AlertMessage alert = new AlertMessage(); alert.setType("REDIS_OPTIMIZATION"); alert.setLevel("INFO"); alert.setMessage(String.format("Redis优化完成: 类型=%s, 内存使用率=%.2f%%, 命中率=%.2f%%", optimizationType, redisData.getMemoryUsage(), redisData.getHitRate())); 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"; } } }
|