I have a project in a google application, I have a backend module that I use to run long backend processes. this is the configuration in the backend-module.yaml file:
module: backend-module
version: one
runtime: python27
api_version: 1
threadsafe: yes
instance_class: B8
basic_scaling:
max_instances: 11
idle_timeout: 10m
but when I run a lengthy process, I go through this error: This application is temporarily over its serving quota. Please try again later.
EDIT: I want to resize images stored in my cloud storage.
The code runs when I send an HTTP request to the specified URL.
so I used a module (basic scalling) to run this lengthy process ....
Billing is included in my application, so I thought I could run backends as much as I want. right?
BTW: my application does not crash, automatic modules still work well!