1
todays.list()가 오늘의 직업 만 반환하는 이유는 무엇입니까? 변수 t를 출력하면 오늘 실행 된 작업 만 제공합니다. 90 일 동안 더 많은 역사를 가지려면 어떻게해야합니까?Google bigquery api가 역사적인 직업을 표시하지 않음
credentials = GoogleCredentials.get_application_default()
# Construct the service object for interacting with the BigQuery API.
bigquery_service = build('bigquery', 'v2', credentials=credentials)
t=bigquery_service.jobs().list(projectId=project_id,allUsers=True,
projection='full',stateFilter=job_state.lower()).execute()
효과가있었습니다. 고맙습니다 –