I am trying to change the scaling of my google app engine task queue from automatic (requires response in 10 min) to manual (extends response to 24 hr). My app.yaml file contains
application: my-application
version: alpha-1
runtime: python27
api_version: 1
threadsafe: true
I altered it to
application: my-application
version: alpha-1
runtime: python27
api_version: 1
threadsafe: true
instance_class: B1
manual_scaling:
instances: 5
I cannot deploy this to test and am trying to test locally. Unfortunately the dev_appserver.py does not timeout after 10 minutes when I use the first app.yaml configuration (it should timeout). How should I test this? Or how can I scale properly?