-
|
Has anybody found a way to run this in google cloud? The Provided Docker Image Failed to StartUploaded the provided docker image to gcloud
Running as a gcloud job results in an exec format error
Gcloud built Image Started but Failed to Load ModulesBuilt a Python container using gcloud
Running the same job results in ModuleNotFoundError
|
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
|
Note that my first reply accidentally mentioned "elastalert2" - that was a mistake, I meant Vuegraf. I manage multiple projects and still had the other name in my head as I was writing this response. I've updated it below with the correct project name. The response is still correct. Vuegraf doesn't seem appropriate for a cloud "job", but I'll ignore that and assume you have a specific need to run a short-lived Vuegraf process. The |
Beta Was this translation helpful? Give feedback.
-
|
Thanks for the reply. I am rather noob with both python and containerized cloud services. So I appreciate your feedback and guidance as I try to get this script to run in a cloud environment, transferring data every minute (or so) from Emporia to InfluxDB. I also came to the conclusion that the Thank you, P.S.
|
Beta Was this translation helpful? Give feedback.
-
|
I'm gonna play around with adding a |
Beta Was this translation helpful? Give feedback.
-
|
I think a Kubernetes container deployment is closer to what you need. A cloud job is meant to process a queue of tasks, and for each task a container is spun up. These are intended to be short-lived processes and I believe GCP limits the duration of the container to < 1h. |
Beta Was this translation helpful? Give feedback.
I think a Kubernetes container deployment is closer to what you need.
A cloud job is meant to process a queue of tasks, and for each task a container is spun up. These are intended to be short-lived processes and I believe GCP limits the duration of the container to < 1h.