【发布时间】:2021-10-31 23:53:34
【问题描述】:
我开发了一个简单的 python Azure 函数应用程序,使用 pyodbc 从公共 IP MS SQL 服务器中选择几行。我的函数应用程序在我的笔记本电脑上运行良好,但是当我在 Azure 云上发布它时它不起作用(我使用消费 - 无服务器计划,linux 环境)。通过日志记录,我知道它总是卡在 pyodbc.connect(...) 命令和超时。
#...
conn_str = f'Driver={driver};Server={server},{port};Database={database};Uid={user};Pwd={password};Encrypted=yes;TrustServerCertificate=no;Connection Timeout=30'
sql_query = f'SELECT * FROM {table_name}'
try:
conn = pyodbc.connect(conn_str) # always time-out here if running on Azure cloud!!!
logging.info(f'Inventory API - connected to {server}, {port}, {user}.')
except Exception as error:
logging.info(f'Inventory API - connection error: {repr(error)}.')
else:
with conn.cursor() as cursor:
cursor.execute(sql_query)
logging.info(f'Inventory API - executed query: {sql_query}.')
data = []
for row in cursor:
data.append({'Sku' : row.Sku, 'InventoryId' : row.InventoryId, 'LocationId' : row.LocationId, 'AvailableQuantity' : row.AvailableQuantity})
#...
捕获的日志记录:
Inventory API - connection error: OperationalError('HYT00', '[HYT00] [Microsoft][ODBC Driver 17 for SQL Server]Login timeout expired (0) (SQLDriverConnect)').
我已经在 requirements.txt 文件中包含了 pyodbc。我还在我的 SQL 服务器防火墙上允许我的函数应用程序的所有 outboundIpAddresses 和可能的OutboundIpAddresses。我的函数应用在 Azure 云上没有任何网络限制(或者至少在网络设置上是这样说的)。
我的配置文件:
driver={ODBC Driver 17 for SQL Server}
server=I tried both IP and full internet host name, both didn't work
有人可以给我一个提示吗?谢谢。
【问题讨论】: