- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 Spring boot 应用程序,它与两个不同的 Redis 集群(在 Amazon Elasticache 上)通信。我正在使用 spring-data-redis 1.6.4。这是我针对不同 Redis 配置的代码:
@Configuration
public class RedisConfig {
@Bean
@Primary
public JedisConnectionFactory clusterAJedisConnectionFactory() {
JedisConnectionFactory jedisConnectionFactory = new JedisConnectionFactory();
jedisConnectionFactory.setHostName(clusterAUrl);
jedisConnectionFactory.setPort(clusterAPort);
jedisConnectionFactory.setUsePool(true);
return jedisConnectionFactory;
}
@Bean
public JedisConnectionFactory clusterBJedisConnectionFactory() {
JedisConnectionFactory jedisConnectionFactory = new JedisConnectionFactory();
jedisConnectionFactory.setHostName(clusterBUrl);
jedisConnectionFactory.setPort(clusterBPort);
jedisConnectionFactory.setUsePool(true);
return jedisConnectionFactory;
}
@Bean(name="clusterARedisTemplate")
public RedisTemplate<String, Object> clusterARedisTemplate() {
RedisTemplate<String, Object> redisTemplate = new RedisTemplate<String, Object>();
redisTemplate.setConnectionFactory(clusterAJedisConnectionFactory());
redisTemplate.setKeySerializer( new StringRedisSerializer() );
redisTemplate.setHashValueSerializer( new GenericToStringSerializer< Object >( Object.class ) );
redisTemplate.setValueSerializer( new GenericToStringSerializer< Object >( Object.class ) );
return redisTemplate;
}
@Bean(name="clusterBRedisTemplate")
public RedisTemplate<String, Object> clusterBRedisTemplate() {
RedisTemplate<String, Object> redisTemplate = new RedisTemplate<String, Object>();
redisTemplate.setConnectionFactory(clusterBJedisConnectionFactory());
redisTemplate.setKeySerializer( new StringRedisSerializer() );
redisTemplate.setHashValueSerializer( new GenericToStringSerializer< Object >( Object.class ) );
redisTemplate.setValueSerializer( new GenericToStringSerializer< Object >( Object.class ) );
return redisTemplate;
}
}
然后,在我的代码中,我有类似这样的东西来使用它:
@Service
RedisService {
private final RedisConfig redisConfig;
private final ObjectMapper mapper;
@Autowired
public RedisCache(RedisConfig redisConfig, ObjectMapper mapper) {
this.redisConfig = redisConfig;
this.mapper = mapper;
}
@Async
public void saveValueInClusterA(String cacheKey, MyObject myObject) {
try {
String cacheValue = mapper.writeValueAsString(myObject);
redisConfig.clusterARedisTemplate().opsForValue().set(cacheKey, cacheValue, 1, TimeUnit.HOURS);
} catch ( Exception e ) {
LOGGER.error(...);
}
}
public MyObject getValueFromClusterA(String cacheKey) {
MyObject myObject = null;
try {
String cachedEntry = redisConfig.clusterARedisTemplate().opsForValue().get(cacheKey).toString();
myObject = mapper.readValue(cachedEntry, MyObject.class);
} catch ( Exception e ) {
LOGGER.error (...);
}
return myObject;
}
@Async
public void saveValueInClusterB(String cacheKey, MyObject myObject) {
try {
String cacheValue = mapper.writeValueAsString(myObject);
redisConfig.clusterBRedisTemplate().opsForValue().set(cacheKey, cacheValue, 1, TimeUnit.HOURS);
} catch ( Exception e ) {
LOGGER.error(...);
}
}
public MyObject getValueFromClusterB(String cacheKey) {
MyObject myObject = null;
try {
String cachedEntry = redisConfig.clusterBRedisTemplate().opsForValue().get(cacheKey).toString();
myObject = mapper.readValue(cachedEntry, MyObject.class);
} catch ( Exception e ) {
LOGGER.error (...);
}
return myObject;
}
}
这在正常负载下工作正常。然而,当我进行负载测试并进行线程转储时,我看到大多数线程都在等待这样的事情:
"XNIO-2 task-973" #1547 prio=5 os_prio=0 tid=0x00007f472c41d800 nid=0x2d4e waiting on condition [0x00007f4680851000]
java.lang.Thread.State: WAITING (parking)
at sun.misc.Unsafe.park(Native Method)
- parking to wait for <0x00000004ab53fb58> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2039)
at org.apache.commons.pool2.impl.LinkedBlockingDeque.takeFirst(LinkedBlockingDeque.java:583)
at org.apache.commons.pool2.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:442)
at org.apache.commons.pool2.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:363)
at redis.clients.util.Pool.getResource(Pool.java:48)
at redis.clients.jedis.JedisPool.getResource(JedisPool.java:99)
at redis.clients.jedis.JedisPool.getResource(JedisPool.java:12)
at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.fetchJedisConnector(JedisConnectionFactory.java:155)
at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.getConnection(JedisConnectionFactory.java:251)
at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.getConnection(JedisConnectionFactory.java:58)
at org.springframework.data.redis.core.RedisConnectionUtils.doGetConnection(RedisConnectionUtils.java:128)
at org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:91)
at org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:78)
at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:178)
at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:153)
at org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:86)
at org.springframework.data.redis.core.DefaultValueOperations.set(DefaultValueOperations.java:182)
at com.mypkg.services.RedisService.saveValueInClusterA(RedisService.java:97)
at com.mypkg.services.RedisService$$FastClassBySpringCGLIB$$aa4c9d31.invoke( )
at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204)
at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:651)
at com.mypkg.services.RedisService$$EnhancerBySpringCGLIB$$a879b180.saveValueInClusterA( )
at com.mypkg.services.impl.MyImpl.method2(MyImpl.java:745)
at com.mypkg.services.impl.MyImpl.method1(MyImpl.java:419)
at sun.reflect.GeneratedMethodAccessor487.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:302)
at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:190)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:157)
at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:52)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)
at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:59)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)
at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)
at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:208)
…..
…..
…..
…..
…..
…..
at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:284)
at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:263)
at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:81)
at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:174)
at io.undertow.server.Connectors.executeRootHandler(Connectors.java:202)
at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:793)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
Locked ownable synchronizers:
- <0x00000004b41253a0> (a java.util.concurrent.ThreadPoolExecutor$Worker)
我将最大池大小设置为 128,尽管 AWS 控制台显示在任何时候最多只有 35 个连接到 redis 集群。这里发生了什么?我的redis配置错了吗?或者我是否需要在每次使用后释放连接?我认为 Redis 模板会在内部处理所有这些。是我连接到多个 Redis 集群导致了一些问题吗?
谢谢。
最佳答案
底层连接池是一个阻塞池,如果池耗尽就会阻塞。如果您有足够的并发请求并且您的池大小小于并发请求数,则很容易发生这种情况。
增加池大小以解决该问题。
附带说明:您可能想要升级 Spring Data Redis 版本,因为 1.6.4 已经过时了很长一段时间。此外,切换到 Lettuce 驱动程序不需要池化。您的代码显示了不包括阻塞/事务性 Redis 命令的操作,因此您总共有两个连接应该没问题(一个连接到您的第一个 Elasticache,第二个连接到您的第二个 Elascticache)。
关于spring-boot - Spring RedisTemplate 的连接池问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47154659/
我是 Redis 的新手,想用我现有的 spring 应用程序来实现它。 我的问题是使用具有相同键的不同 redisTemplate 来存储不同类型的值。 例如 我在 spring 中定义了 redi
我正在使用 spring redistemplate @Autowired private RedisTemplate redisTemplate; RedisToken => token |
我对 Spring 和 Redis 都很陌生。我想知道有没有办法通过值获取KEY? My KEY is patterned like this: "{typeOfFile}:{id}:{filenam
我已经开始在 spring 应用程序中使用 RedisTemplate。 opsForHash() 有一个“put”方法,但它只需要三个参数。我想保存一些键值对。这在节点中非常简单,例如: redi
我正在尝试测试 RedisTemplate 中的过期方法。例如,我将 session 存储在 redis 中,然后尝试检索 session 并检查值是否相同。对于过期 session ,我使用 red
我必须根据需要为每个请求(写入/读取)创建 RedisTemplate。连接工厂是JedisConnectionFactory JedisConnectionFactory factory=new
我正在尝试使用 Redis 为我的实体存储一些缓存数据,例如,它内部有不同类型的字段, public class Job { private String id; private Da
我使用 spring 的 RedisTemplate。 我在 redis 中有一个哈希。 我想使用模板查询 redis,以获取其键在特定键集中的所有条目。 我注意到了方法: Map entries =
我正在使用 Spring RedisTemplate 来处理与 Redis 相关的操作。我能存储两种数据类型吗?例如,我想存储 Key、String 以及 Key、Integer。如何实现? 最佳答案
在我的SpringBoot项目中,当我使用如下注入(inject)RedisTemplate时,没问题。 @Repository public class CommonDBDaoImpl implem
首先项目A,也就是SpringBOOT项目中使用redisTemplate 来做REDIS的缓存时,你会发现存到REDIS里边的KEY和VALUE,redisTemplat使用jdkSerializ
我有一个 Spring boot 应用程序,它与两个不同的 Redis 集群(在 Amazon Elasticache 上)通信。我正在使用 spring-data-redis 1.6.4。这是我针对
在制作spring redis数据模板时,我使用: RedisTemplate template = new RedisTemplate<>(); 然后我还将反序列化器设置为自定义反序列化器,该反序列
我在 redis 中有不同的模型键。 我使用这些模板来存储值; public RedisTemplate model1RedisTemplate() { RedisTemplate r
尝试将 RedisTemplate bean 与 GenericJackson2JsonRedisSerializer 一起使用,但在调试时我注意到 Spring Session 使用了不同的 Red
我正在使用 Spring 的 RedisTemplate 与 Redis 交互。 目前,我存储在 Redis 中的数据使用 OpsForHash 操作,因为这最适合我存储的数据。 但现在我想添加不同结
有什么方法可以检查 RedisTemplate 中是否存在某个键?或者换句话说,RedisTemplate API 中是否有任何等效的 Redis exists 命令? 最佳答案 是的,你可以使用pu
当我调用get()方法时,发生异常 这是代码 @Service("RedisService") public class RedisServiceImpl implements RedisServic
我在我的 spring boot 应用程序 中使用 RedisTemplate 并且我能够使用 singleKey 进行读取。 String valueJson = (String) redisTem
我想为存储在 Redis 中的 key 设置一个 ttl,我是通过以下方式完成的: @Component public class RedisBetgeniusMarketService implem
我是一名优秀的程序员,十分优秀!