vote up -2 vote down star
1

dartdog has been "exploring and developing an application in Python for mission critical work in the commercial banking arena" in this SO question: python-in-the-enterprise-pros-and-cons. He asked for help proving that Python is ready for mission critical banking work. Many people pointed to python.org/about/success. I voiced objections and was down-modded as flamebait.

I feel that all of the projects listed there are applications, not mission critical systems. Mythical Man Month defines these:

[A program] is complete in itself, ready to be run by the author on the system on which it was developed. That is the thing commonly produced in garages, and that is the object the individual programmer uses in estimating productivity. There are two ways a program can be converted into a more useful, but more costly, object... a programming product (a program that can be run, tested, repaired, and extended by anybody) and a programming system (a collection of interacting programs, coordinated in function and disciplined in format, so that the assemblage constitutes an entire facility for large tasks). Finally there is the programming systems product. This differs from the simple program in all of the above ways. It costs nine times as much. But it is the truly useful object, the intended product of most system programming efforts.

I love python for application programming. It's my favorite language. However, I outlined in that thread that companies are interested in building programming systems product (mission-critical systems), and this simply isn't feasible (YET) for most companies in practical business environments, because there aren't enough companies (with lots of money backing them) investing in and supporting Python. This explains what I observe in real life: Nobody is using python for mission-critical systems- Python is almost entirely used as an application language. Google and Eve Online are the notable exceptions. Eve Online is a game, they don't get sued if they have downtime. Google's services are nowhere near as mission critical as a banking transaction architecture, and even so Google has presumably addressed my concerns by hiring Python rockstars like Guido and Alex Martelli, so Google now has strategic influence over Python's future, and has the knowledge to maintain it on its own if need be. Google isn't gambling at all.

Alex Martelli chimed in:

Guido being hit by anything would be a tragedy, to me personally (as he's a friend), to his family, and to the world in general. Python of course would go on (as did Perl when Larry Wall had cancer, fortunately currently in remission), probably switching to a lead-committee approach similar to what Perl has now and BSD and Apache had for a long time. Linux is in a similar situation wrt Thorvalds -- the lead committee has been driving for a long time, albeit on delegation from Linus -- and that has NOT stopped banks from adopting it, esp. once IBM started marketing it!_)

Emphasis added by me. Did banks really adopt linux before it was commercially backed?

There are strategic business criteria for a platform that many programmers don't grok. Is a bank, or a defense contractor, going to use a technology that is controlled by a company which they have no influence over? What if Python 4 goes in a new direction, and is not suitable for their goals? But Python 2 and 3 are no longer maintained. That's a strategic nightmare. When you have Microsoft backing you, you don't have this problem, Microsoft is trusted and stable and guarantees that the technology isn't going to change directions, and guarantees maintenance for 10+ years, and you can pay them to help you migrate to their new platforms. They're expensive, but they are dependable and you can trust that your project won't be doomed because of them.

So, I feel that, in 2009, Python is a poor choice for mission-critical systems. At best, its not a crystal clear choice, and carries some risk. In 2012, maybe it will be feasible, but the latest and greatest MS will likely beat it out. Do you disagree?

flag

3  
should be community wiki – SilentGhost Sep 3 at 15:26
1  
I put lots of effort into this post, and this topic is extremely relevant to software engineering. Please don't close it. – Dustin Getz Sep 3 at 15:29
8  
should be a blog post, not a question – Javier Sep 3 at 15:43
2  
Argumentative and subjective and interesting to read and highly relevant to what all of us are doing every day. – Jay Sep 3 at 16:11
2  
From the Stackoverflow FAQ: "Avoid asking questions that are subjective, argumentative, or require extended discussion. This is not a discussion board, this is a place for questions that can be answered!" This is clearly subjective and requires extended discussion. – Brian Neal Sep 3 at 20:21
show 9 more comments

closed as subjective and argumentative by Javier, SilentGhost, Alex Martelli, R. Bemrose, crashmstr Sep 3 at 21:07

7 Answers

vote up 3 vote down check

Is "collection of interacting programs" an essential part of this question?

Almost everything you see in the success page will have more than one executable entry point, making it a "collection".

I'm not sure how you can determine (from a success story) that a project is an "application" not a "collection of interacting programs".

Our application has dozens of interacting programs. It's just a web site. It has bulk loaders, analyzers, extractors, and administrative stuff to keep it running. Which is it? An "application" because it's just a web site? Or a "system" because it's a "collection of interacting programs".

I don't get the distinction. Can you provide concrete, specific examples?


I don't get the sliding scale of "more mission-critical than". Can you define this more clearly in the question?

If our web site fails to deliver, we suffer a loss, and possibly a law suit. Does that pass the "mission-critical" test? How much more "mission-critical" is insurance than banking? Is insurance an 8 and banking a 10? Based on what?

I don't get the distinction. Can you provide concrete, specific examples?


Banks have been using Open Source since long before "Open Source" was a buzzword. Indeed, IBM provided open source code through their SHARE organization and DEC provided code through DECUS. Open source -- like Python -- has been a part of the American Information Technology landscape since day 1 of using computers to process data.

Python's state in the enterprise is the same as all other open source components like Apache, PERL, Linux and old DECUS and SHARE applications.

It's all used. It's all trusted until it breaks, then it's fixed or replaced.


"But Python 2 and 3 are no longer maintained. That's a strategic nightmare"

Wrong. You have the source. That's no nightmare at all.

A nightmare is a customer coming to me with 10's of thousands of lines of VB5 that they can no longer compile. Microsoft hung them out to dry. It's Mission critical software that they cannot touch with a 10-foot pole. They have one PC that still runs the tools. When that PC breaks, that's a nightmare. Their only option is a complete from-the-ground-up rewrite. Which they can't afford. What good did it do them that the tools were backed by a big company?

A nightmare is a customer coming to me with 100's of thousands of lines of COBOL that they can no longer trust. They're no longer sure what it does. It's the backbone of the business. IBM still supports the toolset, but the application has been out of control for 30 years. What good does it do them that the tools are backed by a big company?

link|flag
have you read MMM? Maybe I'm not articulate enough to explain it, but 'just a web site' is obviously not on the same order of complexity as financial transaction systems – Dustin Getz Sep 3 at 15:41
Read MMM several times. We clearly pass the "collection of interacting programs" test. Yet, you say we're still lack something that makes us "enterprise". We're an actuarial application -- it's far more complex than accounting. It deals in future risks, making it more visible to basic profitability. Can you define that something we're lacking? Can you provide a concrete, specific criteria that defines "Enterprise"? – S.Lott Sep 3 at 15:44
you're getting lost in semantics. You argue that 'mission-critical' is subjective, fine, but certainly our banking backbone architecture is orders of magnitude more mission-critical than your website. Using Python carries risk, and that risk is increasingly unacceptable in increasingly mission critical systems. – Dustin Getz Sep 3 at 15:47
1  
@Dustin, what kind of risk are you talking about? – Nadia Alramli Sep 3 at 15:49
"you're getting lost in semantics" I'm trying to understand the semantics. I don't get your definitions of "enterprise" and "mission-critical". Examples would help. Specific software product names would help more. – S.Lott Sep 3 at 16:21
show 3 more comments
vote up 1 vote down

I might point out that Sungard Front Arena, which is a platform for trading floor systems, makes extensive use of Python in its system architecture. London Stock Exchange, which placed a great deal of trust in Accenture and a silver-tongued account manager, used .Net to run their shiny new market ticker system, which subsequently crashed and had the market out for a day.

link|flag
vote up 0 vote down

Is there some kind of respected assessment that banks use? Has Python been assessed and found wanting? Or is there in fact no accepted standard? If I said "python is a mission-critical language" who could prove that it is not?

I've seen programs in many languages exhibit programming bugs. I've seen infrastructure (network, database) fail. I've never seen the python language (syntax) fail. I have never seen the python runtime engine fail to run the program it was given.

In other words, I think it's not the language that we should be worried about.

I see no reason why a python application could not be built to meet the most demanding standards for mission critical applications, That it has much more to do with team composition and development process than programming language.

As far as being open-source, all that means is that your code escrow is guaranteed (just checkout the source) and that no company can fail in such a way that it takes python off the market. You already own it as much as anyone else on earth does. That doesn't give you someone to blame, but it also won't leave you high-and-dry.

link|flag
vote up 0 vote down

I've seen so many large enterprises make decisions on software platforms that had nothing to do with long-term stability or the future maintainability of the software that I'm not sure this whole argument is any more than theoretical.

link|flag
meh. I'm bringing it up because this exact problem has come up internally where I work. I used to be in the 'don't worry about it python rocks' camp, but the BD folks managed to convince me. – Dustin Getz Sep 3 at 22:27
vote up 5 vote down

Your question boils down to: do businesses currently trust Python enough to run critical software upon it?

The answer is clearly "yes". Consider, for example, Django. A version of Django is used by washingtonpost.com. Django and Python are reliable and scalable enough to handle some serious load.

I personally wrote a REST-based web service for a famous Seattle-based streaming content company, using Django and Python. It was rock-solid reliable; it just worked and kept on working. And, I had no problem getting approval to use Python and Django for the project. (That was the first Python-based web service there but it wouldn't surprise me if they added others.)

Python is not only well-established, but complete source code is available. A business knows that if they ever did have a serious problem, they can hire someone to fix it; it is not possible to be trapped in a corner with a fatal bug and no way to fix it. Some businesses may not get this, but others clearly do.

Do all businesses trust Python enough for critical stuff? No. Do some? Clearly yes.

See also the slides from the Pycon 2009 talk Python in the Enterprise.

See also the Slashdot discussion Python Moving into the Enterprise.

See also You Used Python to Write WHAT?

link|flag
vote up 4 vote down

First thing that comes to my mind, since you emphasize IBM backing, is OS/2. How did IBM being big, etc. help companies that got stuck in that dead end?

link|flag
4  
And what about Sun, now that they're part of Oracle? What happens to strategic investments in Solaris? What about Digital Equipment Corporation? Their RDB product got absorbed into Oracle. What happened to folks that invested strategic applications based on RDB? – S.Lott Sep 3 at 16:03
I'm not arguing that a big company eliminates risk, I'm arguing that it significantly reduces it as compared to no company backing it at all, because they become vested in the project's success. – Dustin Getz Sep 3 at 18:17
Tell the folks orphaned on OS/2 that there was less risk with a closed-source solution backed by IBM than an open source solution (like Linux) where they have unfettered access to the source. I'm sure they'll agree that their risk may have been lower. They're actual loss, however, trumps the risk factor. – S.Lott Sep 3 at 20:49
its not my intent to debate open vs closed. OSS has a ton of advantages. but I do think that significant financial backing of any project, open or closed, adds stability and reduces business risk. as far as risk vs results, you can't minimize results, but you can minimize risk. – Dustin Getz Sep 4 at 13:26
vote up 2 vote down

"Eve Online is a game, they don't get sued if they have downtime."

While this is technically true it's kind of dismissive of games. The pain of downtime is no different from downtime for a "serious" application, though it is indeed less critical than banking or other things that you can get sued for, you can lose customers over it. I work for another MMO company (not CCP, makers of EVE) and all of our billing code is done in Python, with various database logic tied up in Oracle stored procedures. The data our code handles is sensitive, because it boils down to people being charged real money (or us being charged back) so it's definitely "mission-critical" for us.

To me, arguing the "enterprise-readiness" of a programming language is akin to arguing the "desktop-readiness" of an OS. Most people will say "well, it works at my company, so it's ready", but tons of naysayers will come and point out various minor flaws that end up becoming large flaws in an unforgiving environment like a mission-critical application or a computer in the hands of a newcomer. Ultimately, this makes "enterprise-readiness" completely subjective.

link|flag
if Eve online dies, a company goes bankrupt. If our banking system dies, there are tremendous international economic consequences. – Dustin Getz Sep 3 at 15:43
Yes, but I'm not about to suggest that the world's entire banking system start using Python. I figure they use some ancient mainframe language, or even C! What I am suggesting is that companies who do handle applications that are critical to their company, thus critical THEIR mission, give Python a look. I think you are poorly defining "mission critical", but like I said, it's a nebulous term to begin with. – kennyb Sep 3 at 16:04
Not to put words in Dustin's mouth, but: If I'm playing a computer game and it crashes and my entire game is lost, I moan and curse the programmers, and then I start it up again and begin a new game. Half an hour later I don't particularly care that the game crashed on me. Even if we're talking about an on-line game, and a day's worth of play by thousands of players is lost, okay, lots of people curse the programmers, but the next day their back to playing. (continued next comment ...) – Jay Sep 3 at 16:16
But if a bank system crashes and a day's worth of transactions are lost, this is more than an annoying inconvenience. Huge sums of money could be thrown into limbo. People's lives could quite literally be ruined -- like if someone was getting the check for his inheritance that day or payout from his insurance company. A game that crashes now and then might not even hurt the game company that much -- people might put up with it if the game is fun to play. But if a bank system crashes once and money is lost, the bank would surely lose many customers. Twice in a year? They're in deep trouble. – Jay Sep 3 at 16:22
@Jay, all understood. But where is the risk in using Python? How does it differ from any other programming language for that matter? Dustin is arguing that there is a risk but what is it? – Nadia Alramli Sep 3 at 16:24
show 7 more comments

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