我试图使用teradata模块从python连接到Teradata,但它导致TimedOut。
例外是:
(434, '[HY000] [Teradata][WSock32 DLL] (434) WSA E TimedOut: No response received when attempting to connect to the Teradata server')
有没有办法增加python编码方面的超时?
附上截图供参考:
使用udaExec.connect(method =“odbc”,system = host,username = username,password = password,LoginTimeout = 60,driver =“DRIVERNAME”)作为连接:
由于登录可能需要一些时间,因此您将面临错误。您需要添加一个参数LoginTimeout = 60来解决问题。