Disclosure: Heroku is a DEV sponsor, but this post itself was not "sponsored" per se.
I chose to write this post because I wanted to provide some ...
For further actions, you may consider blocking this person and/or reporting abuse
Though i totally get your point, my feelings in the past few months have changed and i think the best way is to run lambdas/functions on a Digital Ocean maintained Kubernetes cluster. It literally means no restarts. In your current setup you would have a small restart of services due to the fact how Heroku works.
Yeah, this is understandable, but not a big concern based on what we need out of a service.
We do use AWS Lambda for some things. Ultimately our choices are a mix of what we care about and the natural evolution of our needs.
Since u are here, I would digress a bit to ask for a feature request, is there a way to move existing posts to a series?
Yep, here's some more info in this post for v1 editor: dev.to/ben/changelog-create-series...
For v2 editor, you would click on the ellipses on the right hand side to create a series.
Thankyou!
Hey Ben, what's your current monthly cost for running DEV on Heroku?
Our base Heroku cost with direct Heroku stuff is about $1200/mo, plus we have many other costs that don't map directly to Heroku (other cloud services). We have some fat to cut in some places, but the relative cost of software developer salaries leaves the tech costs as having a pretty minimal footprint.
How's the breakdown? You said DEV uses a Performance-L dyno which is $500/month.
How much do you pay for the managed Postgres instance? Also, I know that DEV uses Fastly, what's your average bill over there?
I'm trying out Fastly for my upcoming service, trying to have a gauge on my monthly expenses. 😁
At what kind of traffic? Daily impressions, etc?
Wow. Very impressed with the low spend.
Hi 🙂
Thanks for sharing.
Do you use Heroku Private Spaces? If not, it means your Heroku Postgres is publicly exposed to anyone how gets his hands on the credentials. Can you live with it?
How many requests per minute dose your dyno serve in the busy hours? Can you shed some light on this?
What? How is it exposed?
If you send me your db's connection string, I can just open my sql client and read/update whatever I want.
If your db is in a Private Space it is accessible only via a specific IP. So in this case, even of your db's connection string falls into the hand of an attacker, he cannot access the db.
Who would send one, one?
A private space costs $1000/month. Even a CEO wouldn't pay for that much for his/her side project.
Ah ok (-:
If it's in the context of a side project it's not really an issue.
I was thinking more in the direction of a production app.
If you're a student I encourage you to look into their educational discounts. They're quite generous.
heroku.com/github-students
Love the transparency, my dude!
I always thought DEV.to was on Digital Ocean.
Nope, they're another great sponsor and we use them in other ways here and there, but we've been on Heroku for the core app since day one.
Hey thanks for sharing the insight, was really interesting!
Especially pointing out the ease to switch add-ons, that was something I was afraid of: to depend on the add-ons once I start using Heroku.
We've switched for as simple reasons as wanting to log in in a different way (e.g. keep the same service, but switch from "add-on" to just "regular use of service"). Add-ons are great because of how easy it is to upgrade, downgrade, add, remove, etc. but sometimes there's a reason to go with a different route and all approaches are effective.
You got a good point there. For my next project that needs to be hosted, I'll give Heroku a try. Thank you for revising my fears 👍
When I do not want to worry about application infrastructures I go to the Heroku, the structy has taken great accounts for the Heroku, the focus of structy is to deliver quality solution and form development team, at that point Heroku has helped us a lot.
It is noteworthy that Heroku is not a cheap solution when the application grows, but is worth the investment
Recently deployed my first node server to heroku. It was up and running in minutes with a couple CLI commands. I was amazed
How is the development pipeline with Heroku working? Do you automatically push to production when a commit is pushed or pull request is merged to master?
Yes, this can be done in a few ways. But we don't really use the pipeline feature because we had already integrated something ourselves with Travis before that was stable release and we never switched. However, I want to consider migrating to the pipeline at some point because it does seem really simple and slick.