vote up 3 vote down star
2

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 this thread, where many people suggest sqlite isn't ready for production.

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.

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.

Small office vs. enterprise? Single user vs. multi-user? Client vs. server? Where do you draw the line?

flag

52% accept rate

8 Answers

vote up 1 vote down

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.

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.


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.

link|flag
vote up 2 vote down

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).

link|flag
vote up 1 vote down

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.

link|flag
vote up 0 vote down

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.

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.

As far as determining suitability goes, think about things like:

  • software costs
  • hardware costs
  • scalability
  • stability
  • openness

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.

link|flag
vote up 2 vote down

Depends on who you are.

Programmer's definition of "production-ready":

  • it runs
  • it satisfies the project requirements
  • its design was well thought out
  • it's stable
  • it's maintainable
  • it's scalable
  • it's documented

Management's definition of "production-ready":

  • it runs
  • it'll turn a profit

Sorry to rehash this old question, but I happened across it and just couldn't resist.

link|flag
vote up 0 vote down

*Production ready version = ready to use; can be made available to end users

*Development version = still undergoing development; can only be made available to developers

link|flag
vote up 0 vote down

Our internal definition of a build that we will ship to production is very simple ...

  • No Severity 1 issues are outstanding; and,
  • No Severity 2 issues are outstanding that are not marked "Known Shippable"

The KS decision is made by me and one other person.

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.