Vasanth Srivatsa
How to set minimum RAM & CPU for a single instance?
I'll be running some further test to determine what could be the underlying issue and get back to you by either closing the ticket, with my results posted.
Or ask further questions. Thank you 🙂
25 replies
How to set minimum RAM & CPU for a single instance?
your app is fee to use as little or as much of the plans resources it wants at any given timeAh! I see. That means my app already has 8GB memory if it wants to use right? Then I wonder how come it's slow on Railway being near to the database and faster in Heroku being farther from the database 😂
25 replies
How to set minimum RAM & CPU for a single instance?
Because right now, on Heroku we've got 4GB RAM and our Python based recommendation engine is working fine even after it's really far from database's physical location.
In fact, Railway offers the same physical location to our database provider, but still Gunicorn kills the workers threads frequently and the whole performance is really slow.
25 replies
How to set minimum RAM & CPU for a single instance?
So, it may look like we're idling from an HTTP requests standpoint, but the server would be performing internal calculations (running a recommendation engine written in Python + SQLAlchemy).
25 replies
How to set minimum RAM & CPU for a single instance?
So, our service is a Flask based WhatsApp chatbot that recommends people to each other. So, the CPU & RAM usage doesn't directly co-relate to the number of HTTP requests we'll be getting.
As these requests won't be from real people, but rather from WhatsApp webhooks.
25 replies
How to set minimum RAM & CPU for a single instance?
Two questions here:
1. We are using Heroku at the moment and looking forward to entirely ditching Heroku in favor of Railway, but our services seem to be running at lower memory available (while they're not handling any web requests) than compared to Heroku on a per instance basis. Is there a way we can set minimum memory & CPU below which it doesn't scale down, even if there's not traffic?
25 replies