Big Ball of Mud

The term Big Ball of Mud (BBoM) is used to describe an application that appears to have no distinguishable architecture.

It was coined by Brian Foote and Joseph Yoder in their paper "Big Ball of Mud" (1999) and defined as "... a haphazardly structured, sprawling, sloppy, duct-tape-and-baling-wire, sphagetti-code jungle".

In an application identifiable as a #BBoM, a domain's concepts are spread across multiple modules, interconnected with conflicting ideas, and maintained by multiple teams. Routine changes to workflow and small feature enhancements become a challenge to implement due to the difficulty of reading and understanding the existing codebase. Domain complexities intermix with technical complexities, resulting in complex software.

The Big Ball of Mud is not always an #AntiPattern. When dealing with a part of the business that is not deemed worthy of investment, or the complexity is low, one can simply get to working software as soon as possible. The business can invest in modeling the domain in the future if the codebase is worthy of prolonged investment. The key to reaping the benefits of BBoM is to ensure that the codebase is enclosed in a #Bounded Context so that it doesn't corrupt the core subdomain.