Reputation: 7539
I ask this question, because Heroku or CloudControl are not really explicit on how a free application can consume their ressources?!
The application will use event driven based server (Node or Tornado), and event driven is monothreaded, so here is my questions:
ThreadPoolExecutor
that can use another thread in case of time consuming operations, will the free offer allow me to use this option? Or i will be limited for one thread only?Upvotes: 2
Views: 124
Reputation: 883
cloudControl works with containers (LXC), the application is started within such a container and the resources CPU, Memory, Network are restricted to the configured scaling options. Memory is a hard limit, for CPU and Network you get a guaranteed share, if more is available, you get more.
Inside the container you can start and use what you want and need. If you can handle the requests with this limited resources and don't need fault tolerance, you can stick with the free tier.
Upvotes: 1