I\'m trying to figure out how to set the connection timeout in create_engine(), so far I\'ve tried:
create_engine()
create_engine(url, timeout=10)
for SQL Server use the Remote Query Timeout:
Remote Query Timeout
create_engine(db_url, connect_args={'Remote Query Timeout': 10})
default is 5 seconds.