vote up 3 vote down star
2

Somehow I've got the feeling that many projects become heavily overengineered so every possible change-request can be tackled with the effect that the change-requests that occured are very hard to implement.

Somehow I get that feeling in nearly every project I'm currently working on. It is like everyone is thinking "which cool api, framework, etc. can we add to the project to tackle this and that aspect" without evaluating if it is practical or needed.

Does anyone else feel the same or what's the opinion of the community here?

flag
Yeah, but its fun. – Will Feb 27 at 18:03
If only the beancounters knew what we were really doing with that expensive time. ;) – Quibblesome Feb 27 at 18:06
You are explicitly asking for protracted discussion. There is no on good answer for this. At the very least it should be made a community wiki please. – EBGreen Feb 27 at 18:10

15 Answers

vote up 6 vote down check

I find that, while some older companies with 'senior' senior management tend to be extremely rigid with how their business code is created, newer companies completely lack a backbone of what software they use to get the job done.

The problem you describe sounds like people are viewing problems at too high a level and want to find a way to solve it in one go. Creating a working toolbox (think standard libraries) would help them out in the long run.

I particularly enjoy the UNIX way of things: Several tiny utilities that do one thing and do it really well.

link|flag
vote up 1 vote down

Yes. I think people nowadays think more about how something should be done, and whether "it's the right way ..." and so on, than just picking the simple solution which will equally get the job done. If you're not asked to expand it, then don't think about expanding it.

link|flag
vote up 2 vote down

Today's xkcd is the absolute truth: Signs your coders don't have enough work to do

I find that overengineering is a byproduct of boredom. I believe Jeff and Joel covered this in a podcast, but the idea is that coders who often overengineer may just be in a rut and need a change of pace (Jeff and Joel suggested that they be allowed to do different jobs like QA).

link|flag
vote up 0 vote down

As others have said, I've had too many 'small' projects become big ones and the short cuts taken become paint.

There is a place for a quick-and-dirty solution and in trying to follow the YAGNI mantra, I've created simple apps with no engineering.

With that though, you are not going to be able to jump into a million line system and develop the 'well engineered' system without practice on smaller systems.

I've taken to always following the developed architecture of our company in all projects because it helps me to work out solutions in line with the engineering principles we are trying to follow.

What you practice, you perform, so always do your best.

link|flag
vote up 2 vote down

I think this is a problem, but not as big as it seems and that there are good reasons for it.

The problem is that most projects that are underengineered will die a quick death while the overengineered ones can survive. Thus, when you look at still living project, there is survivorship bias.

And, even if you are a good architect that aims for "just good enough", if in doubt you will use the more flexibe, scalable, ... (i.e., overengineered) solution. Because the failure mode if you do not meet the requirements (whatever they may be) is usually much worse than what happens if you exceed them.

link|flag
+1 for the use of "survivorship bias". Very nice, Black Swan. 8) – duffymo Feb 27 at 20:06
+1 for the survivor idea. I fully understand. Still, the measure to carefully take is also the TIME and how worth is the engineering process. Before considering the benefits it will give. – lb Aug 25 at 9:12
vote up 0 vote down

Absolutely. But it's not just developers, it's users too. "I want this and that and the other in order to improve communication and increase productivity!".

I'm amazed at how many of these types of projects we've solved by just putting a shared folder on a file server.

link|flag
vote up 3 vote down

I've been bitten a few too many times by applications that I've thrown together quickly which have subsequently become "critical" apps. Then I have to almost rewrite the darned thing. I just assume now that it will become critical and so I "write it right" the first time. Saves me time and effort in the long term. So oddly, it's about laziness.

link|flag
vote up 3 vote down

The key thing to keep in mind here is time. A "simple" project that is knocked out of the park on day one by an Excel spreadsheet or a web page can quickly expand in both its audience and scope to become an unsustainable monster.

Under-engineering is a danger, too. The world is full of "practical" people who will mock any efforts that are contrary to their opinion. Nobody remembers the person who disagreed a year later when the "simple" solution can't be sustained.

The trick is to balance the right degree of engineering and be able to adjust when things change.

link|flag
Truly said, it's all about balance. – lb Aug 25 at 9:10
vote up 4 vote down

I think Dave Winer captured the cyclical nature of this phenomenon well:

The trick in each cycle is to fight complexity, so the growth can keep going. But you can't keep it out, engineers like complexity, not just because it provides them job security, also because they really just like it. But once the stack gets too arcane, the next generation throws their hands up and says "We're not going to deal with that mess."

link|flag
vote up 2 vote down

I've only encountered that with Java people: "Lets use spring!" And hibernate! I found this cool validation package as well! And this one will create XSLT to create XML forms to create the javascript!"

By the time I find all the jars and get them to play nice, there are dozens of classes I have to be familiar with. And then they want to abstract away all those pieces! "We might switch spring out. Or not use hibernate, so we should abstract those away". Add another dozen hacky wrapper classes.

By the time its all done, 50 lines of psuedo code has turned into several thousand lines of making the "cool stuff" work, and about 100 lines of business logic trapped within its hairy, hacky, bug-ridden hell.

I'm guilty of it myself, too, but thats only because I'm bored and have time to kill.

link|flag
I have a friend who mocks every Java app by saying "If I were writing this in Python I'd be done by now!" I'm doing the work to figure out if he's correct - I'll keep you posted. – duffymo Feb 27 at 18:17
Oh, cool! Here's my experience: Java: 3 devs (me + 2), 6-9 months (entire app). Python: 1 dev (me), about 2 days (core functionality). With another week, I'm very confident I could have easily added the rest. – Richard Levasseur Feb 27 at 20:10
That's my friend, too. 8( Don't rub it in. What kind of app? He was talking web apps talking to MySQL using Django. He didn't like the ORM stuff; he'd use hand-written, tuned SQL. – duffymo Feb 27 at 20:41
If you and my friend are right, then why is it that corporations haven't embraced Python? Do you think that Google's embrace of the language will break up the log jam? – duffymo Feb 27 at 20:42
It was an application email server built on top of James/Remedy. As cool as python is, its not the be-all-end-all. Java will be faster, niche libraries in java, syntax-religious-ness from devs, maturity, etc. I'm sure a fluent java person could give more reasons. – Richard Levasseur Feb 28 at 2:59
show 1 more comment
vote up 1 vote down

Overengineering is a danger in any project, large or small. When writing for code extensibility, there's always a trade-off between writing code that is sufficiently generic and extensible to allow for future development and code that is specific enough to make the task at hand easy.

Every "future hook" has a cost and should be evaluated in the light of that cost, the probability that it will ever be used, and the cost of refactoring later in the game. "More generic" is not always better.

As for using a hot, new framework or API, I think project managers should take a gentle hand in this. With development being such a fast-moving field, hands-on self-training is part of the price of doing business (but obviously should be kept reasonable.)

link|flag
vote up 3 vote down

Guilty as charged. Three levels of abstraction and six config files is just more fun to implement than a simple flow control branch.

link|flag
vote up 0 vote down

I'm yet to work on any real world problem but I've read enough people blogging about this to assume there is a problem.

link|flag
vote up 5 vote down

Definitely - I think people get 'robust and modular' and 'overengineered' mixed up far too often.

link|flag
vote up 16 vote down

Yes.

-- MarkusQ

link|flag
I especially liked your elaboration :) – Daniel Daranas Feb 27 at 18:28
Brevity is the soul of wit! – Andy Mikula Feb 27 at 18:36

Your Answer

Get an OpenID
or

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