snowflake python connector - Time to make database connection
问题 Python code is taking around 2-3 secs to make the snowflake database connection. Is it expected behaviour ? OR are there any parameters which will speed up connection time. Here is the sample code: import snowflake.connector import time t1=time.time() print("Start time :"+str(t1)) try: conn = snowflake.connector.connect( user=user, password=password, account=account, warehouse=warehouse, # database=DATABASE, # schema=SCHEMA ) cur = conn.cursor() except Exception as e: logging.error(