尝试使用 node-redshift 从节点连接到 redshift 时超时
Posted
技术标签:
【中文标题】尝试使用 node-redshift 从节点连接到 redshift 时超时【英文标题】:Timeout when trying to connect to redshift from node using node-redshift 【发布时间】:2021-01-12 08:47:37 【问题描述】:我正在尝试从我的 nodejs 代码连接到 redshift,以运行从 S3 复制到 redshift 的代码。 我使用下面的代码为此使用 node-redshift 包。
var Redshift = require('node-redshift');
var client =
user: 'awsuser',
database: 'dev',
password: 'zxxxx',
port: '5439',
host: 'redshift-cluster-1.xxxxxxxxxx.us-east-1.redshift.amazonaws.com',
;
var redshiftClient = new Redshift(client);
var pg_query = "copy test1 from 's3://aws-bucket/" + file_name + "ACCESS_KEY_ID 'xxxxxxx' SECRET_ACCESS_KEY 'xxxxxxxxxx';";
redshiftClient.query(pg_query, raw: true, function (err1, pgres)
if (err1)
console.log('error here');
console.error(err1);
else
//upload successful
console.log('success');
);
);
我也尝试过使用显式连接,但无论如何我都会收到如下超时错误 错误:错误:连接 ETIMEDOUT XXX.XX.XX.XX:5439
redshift 集群被分配给一个角色以获得 S3 完全访问权限,并且还分配了默认安全组。
我错过了什么吗?
【问题讨论】:
【参考方案1】:确保您的集群是公开可见的。集群应该位于某个子网中。对于该子网,VPC 中安全组的入站规则应该有一个条目,说明允许所有 IP 在端口 5439 上连接到您的 Redshift 集群。
如果您的公共 IP 存在于该集合中,那么只有您可以连接到集群。
假设您有 SQL Workbench/J,它允许您连接到 redshift 集群。如果你能连接到这个SQL客户端,你可以忽略上面的事情,因为这意味着你的IP可以通过SQL Workbench/J连接到redshift集群。
【讨论】:
以上是关于尝试使用 node-redshift 从节点连接到 redshift 时超时的主要内容,如果未能解决你的问题,请参考以下文章
无法使用 sequelize 从本地节点应用程序连接到 heroku postgresql 数据库