list_datasets() method does nothing in AWS Lambda
问题 I am trying to get the list of datasets from BigQuery inside the AWS lambda. But, while executing the client.list_datasets() method it does nothing and lambda is timed out. My code is as follows: from google.cloud.bigquery import Client from google.oauth2.service_account import Credentials credentials = Credentials.from_service_account_info( service_account_dict) client = Client( project=service_account_dict.get("project_id"), credentials=credentials ) datasets = client.list_datasets() print