How do I find out memory requirement when deploy Python sample to Bluemix? -
i following example deploy sample python application bluemix bluemix-python-flask-sample
created project cloned repository configured pipeline deploy bluemix failed.
i checked error in deployment log, seem complain memory limit exceeded, server error, status code:400, error code 100005
.
how add statement in sample app output memory requirement know how needed?
thanks in advance help.
you have exceeded max app limit on bluemix account.
login bluemix account , check if app memory limit utilized. if have reached limit might have remove 1 or more of apps not using based on how memory space needed.
in python-flask-sample example guide, mentioned.
cf push your-app-name -m 128m
you can lower memory app running following.
cf scale your-app-name -m 128m
so 128 m allocated app while deploying on bluemix, ideally freeing 128 m should enough rid of error seeing. memory limit can changed needed.
additionally, limit during free trial phase. once enter credit card there no limit.
Comments
Post a Comment