When i try to use this statement in Google App Engine
"from google.cloud import big query"
It produces the error No Module Named Cloud but it runs fine and update the big Query tables if i run it from local machine. I want to make it a cron job on google app engine but this is not working.
Please help as i am stuck in this Problem.
When i try to use this statement in Google App Engine
"from google.cloud import big query"
It produces the error No Module Named Cloud but it runs fine and update the big Query tables if i run it from local machine. I want to make it a cron job on google app engine but this is not working.
Please help as i am stuck in this Problem.
Environment: I am in the Standard Environment and its Python 2.7. I am not running the App Engine SDK development Server I am deploying the App live.
When i try to use this statement in Google App Engine
"from google.cloud import big query"
It produces the error No Module Named Cloud but it runs fine and update the big Query tables if i run it from local machine. I want to make it a cron job on google app engine but this is not working.
Please help as i am stuck in this Problem.
Environment:
I am in the Standard Environment and its Python 2.7. I am not running the App Engine SDK development Server I am deploying the App live.
When I run the Command "gcloud app browse"
it opens a Browser and gives the following error
Error: Server Error
The server encountered an error and could not complete your request.
When i try to use this statement in Google App Engine
"from google.cloud import big query"
It produces the error No Module Named Cloud but it runs fine and update the big Query tables if i run it from local machine. I want to make it a cron job on google app engine but this is not working.
Please help as i am stuck in this Problem.
Environment:
I am in the Standard Environment and its Python 2.7. I am not running the App Engine SDK development Server I am deploying the App live.
My Code is
import time
import uuid
from google.cloud import bigquery
client = bigquery.Client()
jobid = "jid" + str(uuid.uuid4())
query = "Select * FROM Table"
job = client.run_async_query(jobid, query)
When I run the Command "gcloud app browse"
it opens a Browser and gives the following error
Error: Server Error
The server encountered an error and could not complete your request.
When I try to use this statement in Google App Engine
from google.cloud import big query
It produces the error No Module Named Cloud but it runs fine and update the big Query tables if i run it from local machine.
I want to make it a cron job on google app engine but this is not working.
Environment: I am in the Standard Environment and its Python 2.7. I am not running the App Engine SDK development Server I am deploying the App live.
My Code is:
import time
import uuid
from google.cloud import bigquery
client = bigquery.Client()
jobid = "jid" + str(uuid.uuid4())
query = "Select * FROM Table"
job = client.run_async_query(jobid, query)
When I run the Command gcloud app browse
it opens a Browser and gives the following error:
Error: Server Error The server encountered an error and could not complete your request.[![Error Trace][1]][1]