Search code examples
google-cloud-datalab

Unable to run a job in datalab


I would like to run a job in datalab using this code :

stepOneResult  = bq.Query(pagesEvents).execute(table_name=tableName, table_mode='create', use_cache=True, priority='interactive', allow_large_results=True)

I get this error when running the code :

     79       except Exception as e:
---> 80         raise e
     81       if query_result['jobComplete']:
     82         if 'totalBytesProcessed' in query_result:

RequestException: Not found: Job applied-arcanum-861:job_jLcsPiRqwcWiL4X1oTVnA-GKBgk

Any ideas on what is going on here or how to fix it? Thanks!


Solution

  • Try catching the exception and inspecting it. There is a 'content' field that should have more info.

    Is the target table in a different project?