我在ECS上托管的nodejs容器中运行以下代码。使用redis可以在本地很好地运行。在AWS中,它似乎已连接(如果我使用无效地址,则连接时会出错,因此我假设它已连接)。当我运行redis.get(
时,什么都没有发生。我已为ioredis启用调试,并且在尝试获取时收到1条消息:
2020-04-17T22:56:10.701Z ioredis:redis status[replica.virtual-happy-hour-redis.fnt3zc.usw2.cache.amazonaws.com:6379]: [empty] -> connecting
2020-04-17T22:56:11.042Z ioredis:redis status[10.200.0.37:6379]: connecting -> connect
2020-04-17T22:56:11.045Z ioredis:redis write command[10.200.0.37:6379]: 0 -> info([])
2020-04-17T23:02:02.627Z ioredis:redis queue command[10.200.0.37:6379]: 0 -> get([ 'friday' ])
# suspense is killing me....
这是代码
var Redis = require('ioredis'),
console.log('cache connecting to', CONFIG.CACHE_URL);
var redis = new Redis(CONFIG.CACHE_URL);
console.log('cache connected');
const getRoom = (roomName, callback) => {
let room;
console.log('getRoom', roomName); // this logs as expected, nothing after this does
try {
redis.get(roomName, (err, result) => {
if (err) {
console.log('get cache error', err);
} else {
if (result) {
console.log('cache result', result);
room = JSON.parse(result);
} else {
console.log('no cache', roomName);
room = defaultRoom(roomName);
redis.set(roomName, JSON.stringify(room));
}
}
if (callback) callback(room);
console.log('getRoom done');
});
} catch (ex) {
console.log('getRoom error', ex.toString());
}
};
我已经确认安全组,ElastiCache与我的ECS容器位于同一VPC中。我该怎么做才能解决此问题?
更新
我用
ioredis
替换了redis
,它仍然会发生,nada ... 最佳答案
固定它!我不知道自己(对AWS而言是新手)针对传输中的加密配置了ElastiCache。一旦我设置了身份验证 token 并将其与ioredis
结合使用,它就可以工作了!我又回来了!