我有一个用python2.7编写的aws lambda函数。使用lambda函数,我试图连接到impala(安装在ec2示例上)。py lambda函数使用ibis连接到impala。
在尝试从lambda进行测试时,出现以下错误:
"errorType": "TTransportException",
"errorMessage": "Could not connect to xx.xx.xx.xx:21050"
代码:
hdfs = ibis.hdfs_connect(host=db_cfg["hdfs_host"], port=db_cfg["hdfs_port"], user=db_cfg["hdfs_user"])
client = ibis.impala.connect(host=db_cfg["impala_host"], port=db_cfg["impala_port"], hdfs_client=hdfs)
这不可能通过aws lambda实现吗?
暂无答案!
目前还没有任何答案,快来回答吧!