Earlier quoted context omitted.
Dividing your architecture into separate components will probably cause you more downtime and have much worse performance. Less servers and components mean less things to break. Grab a dedicated server and host your shit on it (have a DB replica because losing data sucks, but that is easy). You will be able to run like that for much longer than you probably suspect and the chance of downtime will be massively reduced…
Workers are a must for any minimally sophisticated web application. You cannot degrade HTTP response time (and whole app server performance) just because you are performing work synchronously before the request finishes. Similarly, if the work you are performing has any value for your business, it must be retryable, and the queued items must be safely stored (i.e. don't use a single Redis server - use something distr…
Running costs for running a web app
181–190 of 225 posts
Re: Running costs for running a web app
#182Running a business is much, much more expensive than you'd expect if you've never done it before. I started one on $60 so I get the mindset which has people suggesting that this story represents prolifigate spending, but oh my goodness, it's practically a shoestring . There is an individual thing in the AR deployment which exists for no technical purpose to get us a piece of paper issued by Rackspace which we need fo…
What's more remarkable is the number of services and integrations that are necessary to keep a SaaS product running. Even on a shoestring budget, that's a lot of complexity to manage.
Re: Running costs for running a web app
#183Heroku is without a doubt one of the more expensive options out there. SSL being billed per month? Yikes. SSL really should be standard.
It can get worse. Azure websites charges $39/month per cert for full IP-based SSL
Re: Running costs for running a web app
#184Running a business is much, much more expensive than you'd expect if you've never done it before. I started one on $60 so I get the mindset which has people suggesting that this story represents prolifigate spending, but oh my goodness, it's practically a shoestring . There is an individual thing in the AR deployment which exists for no technical purpose to get us a piece of paper issued by Rackspace which we need fo…
I would also stress that there are other reasons to keep complexity down, like hating to do paperwork (or work of any kind).
Re: Running costs for running a web app
#185At our agency we tend to have a lot of low budget projects, plus we like to keep expenses low if there's a relatively small overhead in return. For saving on costs we use: - Bitbucket over Github (Private repos are free, although Github has more features, so it depends on how much you use really) - Email Hosting Zoho over Google (FREE): We tend to recommend Zoho to single entrepreneurs since it offers 10 accounts for…
Re: Running costs for running a web app
#186Running a business is much, much more expensive than you'd expect if you've never done it before. I started one on $60 so I get the mindset which has people suggesting that this story represents prolifigate spending, but oh my goodness, it's practically a shoestring . There is an individual thing in the AR deployment which exists for no technical purpose to get us a piece of paper issued by Rackspace which we need fo…
Re: Running costs for running a web app
#187Running a business is much, much more expensive than you'd expect if you've never done it before. I started one on $60 so I get the mindset which has people suggesting that this story represents prolifigate spending, but oh my goodness, it's practically a shoestring . There is an individual thing in the AR deployment which exists for no technical purpose to get us a piece of paper issued by Rackspace which we need fo…
I am sorry but what is AR deployment?
Re: Running costs for running a web app
#188Anyone here have any thoughts on AppEngine vs Heroku? I use AppEngine for my experimental projects because I can get a simple data model and some handlers running in minutes and a (supposedly automatically scalable) useful backend up in less than a day, and at very low cost. (Virtually free if I use an *.appspot.com domain). You do get lockin issues but don't you also get lockin from Heroku? Is there big advantages t…
Heroku offers more integration addon/services than App Engine ever does. Heroku was definitely invented to compete with App Engine. Google did not have a Cloud Platform at the beginning for you to create and integrate MySQL as a service with App Engine app.
https://web.archive.org/web/20071105005403/http://heroku.com...
It's fairly likely they were working on them in parallel without knowledge of each other, though.
Re: Running costs for running a web app
#189Re: Running costs for running a web app
#190This is the first time I have ever heard of Papertrail. I really hate loggly and am looking for a better option - can anyone shed any light on if this is a good option ? Which log aggregation services is everyone using ?