Hacker News new | ask | show | jobs
by petercooper 3786 days ago
I think most developers are wary about putting their company's tech stack at the mercy of a profit-driven company that may abandon them.

Heroku? Salesforce bought them, still going, still very heavily used.

3 comments

IMO: Heroku is a bad example of vendor lock in. To use Heroku, no code changes were required which would prevent it from running else where. A counter-argument to my counter-argument, Heroku limitations (i.e. 30-second HTTP request timeouts) required code changes for any and all web apps to work on Heroku. Anyhow, code that runs on Heroku can run anywhere.

Parse, on the other hand, was both the code and the infrastructure.

EDIT: p.s. love your newsletters!

> Heroku limitations (i.e. 30-second HTTP request timeouts)

I see this as less of a limitation and more as Heroku forcing you to write your app in a scalable manner. Likewise with Heroku servers/dynos not coming with permanent storage and not letting you SSH into them.

Heavily? Heroku was making about 2M in annual revenues when it was bought by Salesforce, and I guess it didn't grow much since then.

Also, Heroku was essentially a great funnel for AWS. Start on Heroku, as soon as your footprint grows, move to AWS to save 2/3 of the cost.

Source: I worked at AWS and saw this happen over and over again.

For most applications, you're just hosting on Heroku. You can move your application. That's not really a dependency, unlike Parse, where their SDK is deep in your application code. (Oversimplifying what you'd need to do to move, though you can keep the simple deployment story with something like Ckoud 66) It's not a perfect analogy, but Heroku is like AWS EC2, whereas Parse is like AWS Lambda.