Trying to retrieve data from google big query data on a project.
query_response = query_request.query(projectId=PROJECTID, body=query_data).execute()
Nothing is wrong with the query except that whenever i make a call to it, i get
The API call urlfetch.Fetch() took too long to respond and was cancelled.
Traceback (most recent call last):
...
DeadlineExceededError: The API call urlfetch.Fetch() took too long to respond and was cancelled.
I have referred to this stackoverflow thread
from google.appengine.api import urlfetch
urlfetch.set_default_fetch_deadline(60)
in my code but still gets the error.