I do consulting on this. You are likely in the price range where you could benefit from it.
You should also check the archive for some of the optimizations I have talked about publicly. But if you want to hit me up off list, I can usually give you an estimate of how much reduction can be made just by looking at your Google Analytics, and a few hours of your apps logs.
Most clients see a reduction of about 30% on an 8 Hour consult. During that consult we’d discuss code logic, your team would make the code changes. If my team makes the code changes it will cost a bit more. We have on rare instances seen up to 80% reductions in hosting costs, but 30% is very typical, and even companies that have done a lot of optimizations often are surprised to see 25%. If I can’t fine enough to offset my consulting price in 90 days, I won’t charge you for the consult.
-Brandon
Brandon Wirtz |
| |||
| ||||
--
You received this message because you are subscribed to the Google Groups "Google App Engine" group.
To post to this group, send email to google-a...@googlegroups.com.
To unsubscribe from this group, send email to google-appengi...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
I'm a big fan of Python 2.7, but I wouldn't dream of telling someone running
this large of an App to move to it right now. I've seen what happens when
the scheduler gets things wrong, and that "increased latency" results in
"massive time outs".
Python 2.7 is awesome if all of your requests are under 7 seconds. But our
experience has been that if you have more than 1 in 50 requests taking more
than 7 seconds python 2.7 will buckle under load.
I blame the scheduler, and that might not be the problem, but I know that
when you start having Long requests things start timing out, and it appears
to be that the scheduler is willing to stack things poorly, under load these
timeouts cascade.
-Brandon
--