Hello @Srujan Mara
Does the external resource logs the call ? is it rejected ?
Please try to whitelist the correct IP of your Databricks Cluster
Find the IP :
import requests
try:
response = requests.get('https://api.ipify.org')
response.raise_for_status() # Raise an exception for bad status codes
public_ip = response.text
print(f"Your outbound IP address is: {public_ip}")
except requests.exceptions.RequestException as e:
print(f"An error occurred: {e}")
Also i suppose you have increased the timeout right ?
--
I hope this helps!
Kindly mark the answer as Accepted and Upvote in case it helped!
Regards