Earlier quoted context omitted.
Where do you find sysadmins for high availability systems willing to work for $100K per year?
Depends on where you're living I suppose. In Chicago, a base of $100k/yr for a systems architect seems fair. In the Bay area and other areas that are more expensive, it will probably be more expensive, but I'm not as familiar with those markets. It certainly depends on the complexity of your product too.
Show HN: Build your own Heroku on your own servers
101–110 of 110 posts
Re: Show HN: Build your own Heroku on your own servers
#102Earlier quoted context omitted.
Depends on where you're living I suppose. In Chicago, a base of $100k/yr for a systems architect seems fair. In the Bay area and other areas that are more expensive, it will probably be more expensive, but I'm not as familiar with those markets. It certainly depends on the complexity of your product too.
ha. I was actually thinking of people I know in Chicago who charge huge amounts to admin trading systems.
Re: Show HN: Build your own Heroku on your own servers
#103Earlier quoted context omitted.
This is very cool stuff. Do you guys support (or do you plan to support) any type of cross-provider failover? I.e. if AWS goes down, auto re-deploy to Linode and handle the DNS re-routing, etc.?
Great point! Yes. We already configure DNS records for the stack (load balancers and servers). This allows us to take the same cut of code and build scripts and execute them against another provider like Linode or Joyent when AWS has issues automatically.
Re: Show HN: Build your own Heroku on your own servers
#104Re: Show HN: Build your own Heroku on your own servers
#105Earlier quoted context omitted.
Actually attended a local user group presentation on elastic beanstalk last night. Elastic Beanstalk not only handles auto scaling. You can set limits that enable it to launch a replacement server if your pages start responding slowly. The new console lets you easily add SSL certificates and schedule backups. I was pleasantly surprised how much Amazon has added to it in the last few years.
I confirm all this. Elastic Beanstalk is so good, I don't even touch EC2 anymore. All my webapps are now being deployed through it. It costs more due to fact that each environment needs its own load-balancer even if only one server is involved which is extra $18/month but it is still worth. If you deploy code that crashes webapp, just revert back to previous version. Problem fixed in a minute on all your servers. And…
As well as just supporting your preferred vendor (based on price, location, guaranteed location, SLA etc) it means that we can offer you a way to switch between vendors if that vendor has some down-time, or doesn't meet your changing requirements as you move forward.
Also, we are really trying to be as application centric as possible - everything stems from your application code - and then provide the ongoing management tools you need on top of that (for easy scaling, backups, scheduled tasks, migrations, reporting etc)
Great feedback from everyone! We didn't get a whole lot of sleep last night!
Re: Show HN: Build your own Heroku on your own servers
#106Re: Show HN: Build your own Heroku on your own servers
#107And that's a good thing. I realise Heroku is devsexy but having compared the two for a serious production app for bigco (a contest that EY won hands down) this architecture is long-term more resilient and adaptable.
So to me it's a sort of Engine Yard, BYO VMs. Ok. What is that, Devops as a Service? Nice look, btw.
Re: Show HN: Build your own Heroku on your own servers
#108Re: Show HN: Build your own Heroku on your own servers
#109Just looking at the stack docs put me more in mind of Engine Yard than Heroku: HAProxy, nginx, passenger, DB options etc. And that's a good thing. I realise Heroku is devsexy but having compared the two for a serious production app for bigco (a contest that EY won hands down) this architecture is long-term more resilient and adaptable. So to me it's a sort of Engine Yard, BYO VMs. Ok. What is that, Devops as a Servic…