Software Development

Ye Olde Monolith

As a professional software engineer, you probably have encountered an architectural stumbling block known as a MONOLITH#1. A monolith is essentially a single tier application in enterprise architecture. Forget about the traditional break-down of Java EE application, where they break down an Uber-WAR file into presentation, business-logic and database tiers. That is just gloss over our very eyes, a single WAR file deployed to an application server is, at best, a monolith.

In my contracting experience, I have witnessed many types of monoliths at various stages of software development lifecycle. Unfortunately, I have been towards to the later end of SDLC where the monolith application is already in maintenance mode or has been reiterated several times. It is the nature of contracting that the conditions of bit rot have already been set and they are irreversible.

A monolith has the following characteristics:

  1. The application code is generally unfathomable, because the modules are inextricably interlinked making analysis absurdly complex.
  2. The time of development cycles gradually increase through each milestone release
  3. There is a vast swathe of code and modules. I would say over 500,000 lines of code and over 250 modules is de-rigour.
  4. The ratio of unit test classes to regular code is alarmingly very low, sometimes much less than 5%.
  5. Usually there are only one or two persons in the organisation who has any clue how the whole monolith hangs together.
  6. There is a culture of resistance to change. Sometimes that culture is political.
  7. People have passed through the eye of the needle many times over

Initialisation

How do MONOLITHS come to being? Who is responsible? I have my suspicions about the origin. In my experience, they are started when a business generates and builds software from a brownfield #2 environment.

How does a monolith actually start? It starts with basic requirement or what appears to be fundamental and then deviates into the asylum from the beginning date. The weird thing is that it does not matter if you have average engineers or a crack team of skunk workers, with at least 10 years’ experience and, say, that each person had worked as technical architectural leaders in the past. Software, unfortunately, is very subjective. We have all opinions on the best framework, the best library and we are limited by the constraints we have in our knowledge at the time of the monolith’s conception.

Why do I call the initial conditions brownfield? Because there is rarely a case in a prototype or stareter version where we build everything from scratch. A monolith starts with a dependency like Java EE, if the code is written in Java. It will be different if your monolith is written in PHP, Python, Groovy, Scala or Ruby.

In the era before Agile, the monolith came to being through a Big Upfront-Design (BUFD), Project Initiation Document (PID) and New Enterprise Architecture Document (NEAD).

Here is an extract of old proposal document that I have:

Universal Trade Desk Add-OnExecutive Summary:
What is UTD and why are we building it?
How is it being implemented?
When will it be delivered and what will be included?
Where are we now?
Summary and future development / roadmap

UTD Objective

“This new application will be a near real-time Trading Desk Add-On to provide consolidated single source of Trade Data in a format understandable by X-QuantLib Exposure Library (X-QEL). The contents of UTD will be updated upon trade lifecycle events and will be available via an API. Traders will be migrated from LEGACY-Y to UTD in progressive steps. UTD will be available across the Web and also Desktop profiles.”

From the above sample description, which was written in 2009, I have changed some terms, you can see exacting business knowledge [jargon] is required#5. If I went back in 2016 and looked at this application, it would likely be a monolith and I doubt that I would find the original document that described the start of the journey. In fact, I have engaged in a few contracts and the client cannot longer lend their on the original BUFD.

architecture-monolith-box
Figure 1: The sad story of the Ye Olde Monolith.

Throwaway software and lost versions

A long while ago, when I was learning to program computer games at secondary school, we shared a simple school computer that used floppy disks for storage. I learnt the BASIC programming language. One of the commands that I knew was SAVE A:GAMEFILE.BAS that saves current state of the program code to a file, where A: represents the location of the floppy disk device. One day, I got so far into my day’s programming in between lessons in maths, English, physics, geography, chemistry etc.; I forgot to save the program at regular intervals. I was so excited and in the flow of the interactive that I can’t remember what happened, maybe the PC crashed or I ran out to the next lesson or something else. In any case, I lost my entire work; I was really annoyed about it. I eventually retyped everything from my memory, but here’s the thing, I figured out how to do it better. Second time around I improved the game with a better subroutine and new concepts.

Culture

A monolith is characterised by the culture that creates it. As soon as code is written, some say, you are already in a technical debt. In effect, writing code even with unit tests is like taking an option on the future. If you know that code is just a prototype then you can afford to cut corners and deliver the fast working example of the application that impresses the stakeholder.

Monoliths rarely get thrown away or restarted. There is an early day scenario where the majority of the application should be rebuilt from scratch, but because of business pressures like cost, time-to-market and finance, nobody ever does this. Over time the monolith keeps growing and stretching further into the distance.

After person years this mountain of code keeps growing every day, every month and every year. Why? Because a monolith is nothing except a transformation of a viable business model, in other words as long the business can makes profit then it will self-sustain.

Monoliths to date are also a victim of software engineering trends. We can look at the technology and the libraries. The biggest Java monoliths probably were created long before Spring Framework, Guice and CDI. Java did not have annotations or even generics. Even the best practice of the times change with time. By 2016, the J2EE design patterns are woefully past their sell-by date. I would add controllers written against Apache Struts version 1.0 to mix.

At best, the monoliths were never modularised or designed for best practice of components#3.

Conway’s Law

Conway’s Law asserts that organisations are constrained to produce application designs that mirror their communication infrastructures. No matter how adaptive an organisation tries to break out beyond the law, the result always is unintended communication breakdowns between management, departments and silos; which all require resolution.

Unsurprisingly, monoliths will exhibit the structure of the people that created and also maintain them.

software-entropy-cost-6-months
Figure 2: In the beginning, the excitement is palpable, the moral high, every developer believes they are part of a crack team that will win the World Cup! Software entropy is very deceptive, because it never ever decreases!

Staff turnover

A monolith is also affected by staff turnover. If new business team has an original idea of an application at the very beginning, after a few years the application the direction of the application will change. Old staff leaves the business, original consultants and contractors leave the project as new people arrive. The new staff must learn new concepts and they rarely handed over in fashion that shows maximum knowledge transfer.

Undersell

I came across at least two monoliths in my time, which were the product of software houses. The monoliths were large and at least one of them was supremely huge by modern standards, because they factored in JavaScript and modern front-end libraries to solve the Single Page Application paradigm #4.

Because the business relied on selling their software to customers as a bespoke monolith, there were most likely promises to get extensions to the monolith finished by a certain date. I suspect that the extension and final application were underestimated and like the majority of software projects in the industry finally arrived considerably over the expected budget.

The problem is that monoliths have within themselves undue complexity in terms of logic. An extension of the application is dependent on several factors:

  1. Comprehensive view of the monolith’s internal working components
  2. Sufficient translation of new business requirements to technical requirements
  3. Adapting old components and developing new components
  4. Dealing with the stress of mixed capable staff
  5. Unknown impedances in the code, framework and databases

These above are the forces acting on an ageing monolith. At the very beginning of the SDLC, these forces are still there, however the complexity of the code and initial requirements are smaller.

Time to market

Monoliths suffer because of management insistence in delivery to budget. Of course, it means that due diligence on the code never takes place and therefore the overall production quality suffers. Developers don’t have time to refactor the code to sufficient quality, code reviews dry up. Morale is destroyed by having to be spoon fed from the political power person during pair-development. It takes longer and longer to write a simple change like adding new field to a HTML form, because architecturally it means trawling though front-end JavaScript framework and altering AJAX; finding and adapting server-side controllers, changing any database persistent objects and then adding yet another a slap-booty XML configuration to the multitude of LiquiBase scripts. Engineers lose person days as you imagine, because the monolith is so far removed from the Java EE CRUD example that you see in a beginner’s book, and then management wonder what are development team are archiving.

Lack of unit tests

Depending of the age of the monolith they demonstrate a shocking minimal degree of unit test coverage. The worst monolith that I ever saw had a ratio of 0.2% test coverage according to SonarQube analysis #6.

The lack of unit tests revealed that obviously time-to-market was a crucial factor in past. Some application monoliths were written before even dependency injection had taken a foot hole in the industry. There were so many static class factory singletons that it made testing very difficult. Although, there was one client that I saw had various degree of success withPower Mockito. Even those monolith that had tests, invariably they were not verifying or validating enough outputs against expected inputs.

Lack of know-how

With dependency injection and modules in general, the industry has shown over the past decade a lack of genuine know-how. It takes a while to design a modular application system effectively and most people need experience.

We have searched for short cuts in building systems. We have struggled over 25 years attempting to build object oriented applications and systems. It is hardly a surprise that monoliths come into being, because there is plenty of evidence of what not to do: anti-patterns.

Failure to keep up-to-date

As we add more features and functions to a monolithic application and in particular one that we never throwaway, we end up layering complexity on more complexity. It is a bit like having an open wound. The sensible thing would be put an Elastoplast on it, because we think it is the quickest way to alleviate the pain and suffering. However an open wound is not a straightforward cut. It requires antiseptic, cleaning, minor or major surgery and then proper bandages followed by recovery. Software engineers don’t clean bad code or change the code smells. It stay infected and becomes worse.

Meanwhile the software development continually finds a brand new way. The Java language, then, introduces annotations in one year. In the following years it introduces functional interfaces, Lambdas and Streams. Yet with a huge mass of monolith with severe complexity and incomprehensibility, it is nearly impossible to use any of those recent features. For one, the management or the stakeholders that fund the monolith and keep the good ship afloat at ship are petrified of the risk of any advancement. For two, politically and often the business model means that they deliberate fail to keep the monolith up to date with technology.

software-entropy-cost-6-years
Figure 3: Over the software development lifecycle of this monolith, which is now in maintenance after 6 or 7 years of progress, we can see the complexity is causing issues in technical and the business axes.

Can a monolith be beautiful?

Recently, I listened to episode 261 of Software Engineering Radio featuring the very opinionated David Heinemeier-Hanson of Ruby on Rails and Basecamp fame.

DHH describes his views on the hype about micro-services oriented architecture (MSOA). He thought that we were blinded and prone to over engineer new systems as micro services. Instead, he pointedly described Basecamp as a “majestic monolith” that benefited from a dynamic programming language; and over the past decade optimisations in operating system functionality and CPU performance. DHH argued against going for distributed computing application at the outset, especially in a small setup.

I found his views reassuring for the monolithic application. However, I observed that Basecamp, and I have never seen the code, has been under his complete control since the beginning. Every check-in of code into the version control system was most likely validated. DHH and Jason Fried are unusual, because they are the architects who have stayed with their software. Architects often drop out of coding activities and mostly move on to other software systems and join other companies. Additionally, there is no way to see the “beauty” of Basecamp without examining the application code, infrastructure and, of course, the people culture at 37 Signals. So while I think a monolith can be magnificent and or even majestic, it is a very tall order to ensure that remains beautiful as time marches on.

There is a severe downside to monoliths in commercial companies. They are not normally open source and therefore they cannot subject to independent critical review, not even of the structural engineering, security and compliance types. I suspect that the beauty of a monolith is in the end of the architectural beholder and therefore it can be used as leverage like a big stick to beat the development staff with it. “This is how it works here, this is what we have and this is how we are going to do it still in order to get the delivery out of the door for milestone X”. In other words, beauty does not pay the bills, the huge salaries and worthy of the customers. So in the end, we eventually finish with ugly monoliths and they persist until a critical juncture, which might be business model failure and disruptive entries from the competition.

A Java EE Monolith is broken when it exhibits the following characteristics:

  1. It was not written from the beginning (5 years ago) as a modular application where modules are self-contained with high cohesion and reduced coupling
  2. Original architects have left the building and stage; and the current owners have no clue about deep internals
  3. It is a representation of the political infighting status, managerial power and intrigue
  4. Organisation is resistant to change of the monolith, worldly consultants and contractors have a tough time getting management to listen
  5. There is a distinct lack of unit tests, sometimes with less 10% coverage and integration testing is hard, because it falls one or two SCRUM sprints beyond the current one
  6. It is extremely hard to get around hard code dependencies such as customer detail, test databases and limited environments. In other words, testing the simplest code turns into a nightmare.
  7. The monolith has severe dependencies on legacy libraries from a decade or more years ago: Struts 1.x, WebWork, Tapestry, Spring Framework 1 or 2 and XML configuration
  8. The standard build chain is complicated and takes a very long time
  9. Even if management suddenly gave the green light to the entire development team today, there would be a huge mountain to climb to adopt Java SE / JDK 9 and where the application code has not evolved much beyond Java SE 6 (2007).

All of these problems reflect the company’s origin, the culture and people organisation. To there you have it, ye olde monolith.

Reference: Ye Olde Monolith from our JCG partner Peter Pilgrim at the Peter Pilgrim’s blog blog.
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

2 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
DaFab
DaFab
7 years ago

Undersell is for me the big issue : big IT companies sell cheap in order to be competitive (in favour to short term solutions), IT departments sell cheap in order to please the business… and long term options are forgotten (who cares ? Supplier will not be the same, IT department manager will not be the same …). A simple example: my customer has changed its security certificates requirements: now SHA2 certificates have to be used. Guess what? An application I’m maintaining had to upgrade at least 2 libraries (OpenLDAP and OpenSSL) that have not been upgraded for ages. Don’t… Read more »

Peter Pilgrim
Peter Pilgrim
7 years ago

I agree that is the general of short-termism or “it is not my problem” or “it will not be my problem soon, all I have to do is duck down”. Going cheap is bad enough, but as you say, the solution are not sustainable.

I can get the cost probably doubled and including the time

Thanks for your feedback and I hope you enjoyed the blog article

Back to top button