Define "production-ready" - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T04:15:54Zhttp://stackoverflow.com/feeds/question/142799http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/142799/define-production-ready2Define "production-ready"crystalattice2008-09-27T02:41:43Z2009-04-28T16:21:20Z
<p>I have been curious about this for a while. What exactly is meant by "production-ready" or its variants? Most recently I was looking for information about sqlite and found <a href="http://stackoverflow.com/questions/3630/sqlite-vs-mysql">this thread</a>, where many people suggest sqlite isn't ready for production.</p>
<p>I know the difference between development/testing and production; my definition of production is anything that is provided to the customer or will be used by non-programmers. </p>
<p>However, there seem to be many items that aren't defined as production-ready. But in reality, they may be perfectly suited and people just have a predujice against them, e.g. sqlite, python, non-MS products, etc.</p>
<p>Small office vs. enterprise? Single user vs. multi-user? Client vs. server? Where do you draw the line?</p>
http://stackoverflow.com/questions/142799/define-production-ready/142806#1428061Answer by John Millikin for Define "production-ready"John Millikin2008-09-27T02:44:38Z2008-09-27T02:44:38Z<p>SQLite isn't to be used for production databases because it's explicitly designed without many of the features that are considered "required". For example, locks affect the entire database, there are no foreign keys, and until SQLite3 there weren't even any data types.</p>
<p>More generally, it means that a system that works fine for a very small number of users (1-5) in development will crash and burn when exposed to heavier loads.</p>
<p><hr /></p>
<p>I should mention that this depends on the environment an application is used in, as well. Going back to the SQLite example, it's perfect for in-production use if there's only one client. Mac OS X uses SQLite extensively through the CoreData framework -- I believe it handles things like the user's iTunes music database and iMail mailbox. Just don't try to use it like a real client-server database.</p>
http://stackoverflow.com/questions/142799/define-production-ready/142807#1428072Answer by Brad Wilson for Define "production-ready"Brad Wilson2008-09-27T02:45:08Z2008-09-27T02:45:08Z<p>General, "X is not production ready" means that there are issues with missing features, stability, and/or scalability, so that it's usable for less demanding scenarios but may fail for large scale deployments (Enterprise and Internet level deployments).</p>
http://stackoverflow.com/questions/142799/define-production-ready/142824#1428241Answer by Turnkey for Define "production-ready"Turnkey2008-09-27T02:53:43Z2008-09-27T02:53:43Z<p>As you suggest in the latter part of the question, "Production Ready" is not necessarily a definition of size of deployments, but rather is it fit for it's intended use and requirements. For example for a single-user client app, the SQLite might be production ready. The intended market will most often determine whether an app or system is production ready in its use of the app or system.</p>
http://stackoverflow.com/questions/142799/define-production-ready/142831#1428310Answer by Logan for Define "production-ready"Logan2008-09-27T02:58:44Z2008-09-27T02:58:44Z<p>As you mentioned yourself, the suitability of a tool depends on the problem. Don't believe any categorical statement about any particular tool's production readiness. No matter what tool you choose or how much you spend on it, it's probably going to be a pain.</p>
<p>The best thing you can do is try to understand why a particular tool wouldn't be suitable. If you find, say, sqlite to be appealing to develop on top of, play devil's advocate and see if you can honestly convince yourself to stay away. You can also hedge your bets by developing against an abstraction, so if you're ever forced to, you could swap a simpler, cheaper tool for a bigger, more expensive alternative.</p>
<p>As far as determining suitability goes, think about things like:</p>
<ul>
<li>software costs</li>
<li>hardware costs</li>
<li>scalability</li>
<li>stability</li>
<li>openness</li>
</ul>
<p>Finally, always value hard, empirical data over random unsubstantiated comments you find on the web. Pretty much every interesting web site out there has been built on at least some technology that I've avoided myself because I've prejudiced myself against it without really giving it a chance. The hard part isn't picking the right tools for the job, it's getting the tools you've chosen to work together properly to do the job at all.</p>
http://stackoverflow.com/questions/142799/define-production-ready/493134#4931342Answer by Jeff for Define "production-ready"Jeff2009-01-29T19:58:26Z2009-01-29T19:58:26Z<p>Depends on who you are.</p>
<p>Programmer's definition of "production-ready":</p>
<ul>
<li>it runs</li>
<li>it satisfies the project requirements</li>
<li>its design was well thought out</li>
<li>it's stable</li>
<li>it's maintainable</li>
<li>it's scalable</li>
<li>it's documented</li>
</ul>
<p>Management's definition of "production-ready":</p>
<ul>
<li>it runs</li>
<li>it'll turn a profit</li>
</ul>
<p>Sorry to rehash this old question, but I happened across it and just couldn't resist.</p>
http://stackoverflow.com/questions/142799/define-production-ready/798732#7987320Answer by BakerKawesa for Define "production-ready"BakerKawesa2009-04-28T16:12:16Z2009-04-28T16:12:16Z<p>*Production ready version = ready to use; can be made available to end users</p>
<p>*Development version = still undergoing development; can only be made available to developers</p>
http://stackoverflow.com/questions/142799/define-production-ready/798750#7987500Answer by JP for Define "production-ready"JP2009-04-28T16:19:14Z2009-04-28T16:19:14Z<p>Our internal definition of a build that we will ship to production is very simple ...</p>
<ul>
<li>No Severity 1 issues are outstanding; and,</li>
<li>No Severity 2 issues are outstanding
that are not marked "Known Shippable"</li>
</ul>
<p>The KS decision is made by me and one other person.</p>
http://stackoverflow.com/questions/142799/define-production-ready/798756#7987560Answer by JeeBee for Define "production-ready"JeeBee2009-04-28T16:21:20Z2009-04-28T16:21:20Z<p>When you won't lie awake at night wondering if it has died or gone horribly wrong, and indeed when you can leave work at 5.30, have some beers, sleep all night comfortably, amble into work the next morning, and be confident that nothing bad happened.</p>