Software architecture is the set of structures needed to reason about a software system and the discipline of creating such structures and systems. Each structure comprises software elements, relations among them, and properties of both elements and relations.
The architecture of a software system is a metaphor, analogous to the architecture of a building. It functions as the blueprints for the system and the development project, which project management can later use to extrapolate the tasks necessary to be executed by the teams and people involved.
Software architecture is about making fundamental structural choices that are costly to change once implemented. Software architecture choices include specific structural options from possibilities in the design of the software. There are two fundamental laws in software architecture:
- Everything is a trade-off
- "Why is more important than how"
"Architectural Kata" is a teamwork which can be used to produce an architectural solution that fits the needs. Each team extracts and prioritizes architectural characteristics (aka non functional requirements) then models the components accordingly. The team can use C4 Model which is a flexible method to model the architecture just enough. Note that synchronous communication between architectural components, entangles them and they must share the same architectural characteristics.
Documenting software architecture facilitates communication between stakeholders, captures early decisions about the high-level design, and allows the reuse of design components between projects.: 29–35
Software architecture design is commonly juxtaposed with . Whilst application design focuses on the design of the processes and data supporting the required functionality (the services offered by the system), software architecture design focuses on designing the infrastructure within which application functionality can be realized and executed such that the functionality is provided in a way which meets the system's non-functional requirements.
Software architectures can be categorized into two main types: monolith and distributed architecture, each has its own subcategories.
Software architecture tends to become more complex over time. Software architects should use "fitness functions" to continuously keep the architecture in check.
Scope
Opinions vary as to the scope of software architectures:
- Macroscopic system structure: this refers to architecture as a higher-level abstraction of a software system that consists of a collection of computational components together with connectors that describe the interaction between these components.
- The important stuff—whatever that is: this refers to the fact that software architects should concern themselves with those decisions that have high impact on the system and its stakeholders.
- That which is fundamental to understanding a system in its environment
- Things that people perceive as hard to change: since designing the architecture takes place at the beginning of a software system's lifecycle, the architect should focus on decisions that "have to" be right the first time. Following this line of thought, architectural design issues may become non-architectural once their irreversibility can be overcome.
- A set of architectural design decisions: software architecture should not be considered merely a set of models or structures, but should include the decisions that lead to these particular structures, and the rationale behind them. This insight has led to substantial research into software architecture knowledge management.
There is no sharp distinction between software architecture versus design and requirements engineering (see Related fields below). They are all part of a "chain of intentionality" from high-level intentions to low-level details.: 18
Software architecture style vs. software architecture pattern
Software Architecture Pattern refers to a reusable, proven solution to a recurring problem at the system level, addressing concerns related to the overall structure, component interactions, and quality attributes of the system. Software architecture patterns operate at a higher level of abstraction than software design patterns, solving broader system-level challenges. While these patterns typically affect system-level concerns, the distinction between architectural patterns and architectural styles can sometimes be blurry. Examples include Circuit Breaker.
Software Architecture Style refers to a high-level structural organization that defines the overall system organization, specifying how components are organized, how they interact, and the constraints on those interactions. Architecture styles typically include a vocabulary of component and connector types, as well as semantic models for interpreting the system's properties. These styles represent the most coarse-grained level of system organization. Examples include Layered Architecture, Microservices, and Event-Driven Architecture.
Anti-patterns
The following architectural anti-patterns can arise when architects make decisions. These anti-patterns often follow a progressive sequence, where resolving one may lead to the emergence of another.
- An architect may delay or avoid making architectural decisions due to the fear of choosing incorrectly. To address this, ongoing and close collaboration with the development team is often necessary, with architectural choices being adjusted based on their feedback. Additionally, decisions are typically made at the "last responsible moment," ensuring there is enough information to justify and validate the decision, while avoiding unnecessary delays that could lead to analysis paralysis and hinder the team's progress.
- Another anti-pattern can arise when architectural decisions are forgotten, not documented, or not understood, leading to repeated discussions without resolution. This often occurs when email is used to communicate architectural decisions. To address these challenges, architects typically provide both technical and business justifications (often related to cost, user satisfaction, and time to market) in a single record of the architectural decision (usually an Architecture Decision Record). This record can be maintained in an accessible repository, such as a wiki. Communication via email focuses on the nature and context of the change and is directed only to relevant stakeholders, with a link to the centralized record. This ensures there is always a single updated source of truth. Additionally, if an architectural decision does not offer tangible business value, or if the business value is misaligned with business stakeholders, it may need to be reconsidered.
Characteristics
Software architecture exhibits the following:
Multitude of stakeholders: software systems have to cater to a variety of stakeholders such as business managers, owners, users, and operators. These stakeholders all have their own concerns with respect to the system. Balancing these concerns and demonstrating that they are addressed is part of designing the system.: 29–31 This implies that architecture involves dealing with a broad variety of concerns and stakeholders, and has a multidisciplinary nature.
Separation of concerns: the established way for architects to reduce complexity is to separate the concerns that drive the design. Architecture documentation shows that all stakeholder concerns are addressed by modeling and describing the architecture from separate points of view associated with the various stakeholder concerns. These separate descriptions are called architectural views (see for example the 4+1 architectural view model).
Quality-driven: classic software design approaches (e.g. Jackson Structured Programming) were driven by required functionality and the flow of data through the system, but the current insight: 26–28 is that the architecture of a software system is more closely related to its quality attributes such as fault-tolerance, backward compatibility, extensibility, reliability, maintainability, availability, security, usability, and other such –ilities. Stakeholder concerns often translate into requirements on these quality attributes, which are variously called non-functional requirements, extra-functional requirements, behavioral requirements, or quality attribute requirements.
Recurring styles: like building architecture, the software architecture discipline has developed standard ways to address recurring concerns. These "standard ways" are called by various names at various levels of abstraction. Common terms for recurring solutions are architectural style,: 273–277 tactic,: 70–72 reference architecture and architectural pattern.: 203–205
Conceptual integrity: a term introduced by Fred Brooks in his 1975 book The Mythical Man-Month to denote the idea that the architecture of a software system represents an overall vision of what it should do and how it should do it. This vision should be separated from its implementation. The architect assumes the role of "keeper of the vision", making sure that additions to the system are in line with the architecture, hence preserving conceptual integrity.: 41–50
Cognitive constraints: An observation first made in a 1967 paper by computer programmer Melvin Conway that organizations which design systems are constrained to produce designs which are copies of the communication structures of these organizations. Fred Brooks introduced it to a wider audience when he cited the paper and the idea in The Mythical Man-Month, calling it Conway's Law.
Motivation
Software architecture is an "intellectually graspable" abstraction of a complex system.: 5–6 This abstraction provides a number of benefits:
- It gives a basis for analysis of software systems' behavior before the system has been built. The ability to verify that a future software system fulfills its stakeholders' needs without actually having to build it represents substantial cost-saving and risk-mitigation. A number of techniques have been developed to perform such analyses, such as ATAM or by creating a visual representation of the software system.
- It provides a basis for re-use of elements and decisions.: 35 A complete software architecture or parts of it, like individual architectural strategies and decisions, can be re-used across multiple systems whose stakeholders require similar quality attributes or functionality, saving design costs and mitigating the risk of design mistakes.
- It supports early design decisions that impact a system's development, deployment, and maintenance life.: 31 Getting the early, high-impact decisions right is important to prevent schedule and budget overruns.
- It facilitates communication with stakeholders, contributing to a system that better fulfills their needs.: 29–31 Communicating about complex systems from the point of view of stakeholders helps them understand the consequences of their stated requirements and the design decisions based on them. Architecture gives the ability to communicate about design decisions before the system is implemented, when they are still relatively easy to adapt.
- It helps in risk management. Software architecture helps to reduce risks and chance of failure.: 18
- It enables cost reduction. Software architecture is a means to manage risk and costs in complex IT projects.
History
The comparison between software design and (civil) architecture was first drawn in the late 1960s, but the term "software architecture" did not see widespread usage until the 1990s. The field of computer science had encountered problems associated with complexity since its formation. Earlier problems of complexity were solved by developers by choosing the right data structures, developing algorithms, and by applying the concept of separation of concerns. Although the term "software architecture" is relatively new to the industry, the fundamental principles of the field have been applied sporadically by software engineering pioneers since the mid-1980s. Early attempts to capture and explain software architecture of a system were imprecise and disorganized, often characterized by a set of box-and-line diagrams.
Software architecture as a concept has its origins in the research of Edsger Dijkstra in 1968 and David Parnas in the early 1970s. These scientists emphasized that the structure of a software system matters and getting the structure right is critical. During the 1990s there was a concerted effort to define and codify fundamental aspects of the discipline, with research work concentrating on architectural styles (patterns), architecture description languages, architecture documentation, and formal methods.
Research institutions have played a prominent role in furthering software architecture as a discipline. Mary Shaw and David Garlan of Carnegie Mellon wrote a book titled Software Architecture: Perspectives on an Emerging Discipline in 1996, which promoted software architecture concepts such as components, connectors, and styles. The University of California, Irvine's Institute for Software Research's efforts in software architecture research is directed primarily in architectural styles, architecture description languages, and dynamic architectures.
IEEE 1471-2000, "Recommended Practice for Architecture Description of Software-Intensive Systems", was the first formal standard in the area of software architecture. It was adopted in 2007 by ISO as ISO/IEC 42010:2007. In November 2011, IEEE 1471–2000 was superseded by ISO/IEC/IEEE 42010:2011, "Systems and software engineering – Architecture description" (jointly published by IEEE and ISO).
While in IEEE 1471, software architecture was about the architecture of "software-intensive systems", defined as "any system where software contributes essential influences to the design, construction, deployment, and evolution of the system as a whole", the 2011 edition goes a step further by including the ISO/IEC 15288 and ISO/IEC 12207 definitions of a system, which embrace not only hardware and software, but also "humans, processes, procedures, facilities, materials and naturally occurring entities". This reflects the relationship between software architecture, enterprise architecture and solution architecture.
Architecture activities
Making architectural decisions involves collecting sufficient relevant information, providing justification for the decision, documenting the decision and its rationale, and communicating it effectively to the appropriate stakeholders.
It's software architect's responsibility to match architectural characteristics (aka non-functional requirements) with business requirements. For example:
- Having a high customer satisfactions requires availability, fault tolerance, security, testability, recoverability, agility and performance in the system.
- Doing mergers and acquisitions (M&A) requires extensibility, scalability, adaptability, and interoperability
- Constrained budget and time requires feasibility and simplicity
- Faster time-to-market requires maintainability, testability and deployability.
There are four core activities in software architecture design. These core architecture activities are performed iteratively and at different stages of the initial software development life-cycle, as well as over the evolution of a system.
Architectural analysis is the process of understanding the environment in which a proposed system will operate and determining the requirements for the system. The input or requirements to the analysis activity can come from any number of stakeholders and include items such as:
- what the system will do when operational (the functional requirements)
- how well the system will perform runtime non-functional requirements such as reliability, operability, performance efficiency, security, compatibility defined in ISO/IEC 25010:2011 standard
- development-time of non-functional requirements such as maintainability and transferability defined in ISO 25010:2011 standard
- business requirements and environmental contexts of a system that may change over time, such as legal, social, financial, competitive, and technology concerns
The outputs of the analysis activity are those requirements that have a measurable impact on a software system's architecture, called architecturally significant requirements.
Architectural synthesis or design is the process of creating an architecture. Given the architecturally significant requirements determined by the analysis, the current state of the design and the results of any evaluation activities, the design is created and improved.: 311–326
Architecture evaluation is the process of determining how well the current design or a portion of it satisfies the requirements derived during analysis. An evaluation can occur whenever an architect is considering a design decision, it can occur after some portion of the design has been completed, it can occur after the final design has been completed or it can occur after the system has been constructed. Some of the available software architecture evaluation techniques include Architecture Tradeoff Analysis Method (ATAM) and TARA. Frameworks for comparing the techniques are discussed in frameworks such as SARA Report and Architecture Reviews: Practice and Experience.
Architecture evolution is the process of maintaining and adapting an existing software architecture to meet changes in requirements and environment. As software architecture provides a fundamental structure of a software system, its evolution and maintenance would necessarily impact its fundamental structure. As such, architecture evolution is concerned with adding new functionality as well as maintaining existing functionality and system behavior.
Architecture requires critical supporting activities. These supporting activities take place throughout the core software architecture process. They include knowledge management and communication, design reasoning and decision-making, and documentation.
Architecture supporting activities
Software architecture supporting activities are carried out during core software architecture activities. These supporting activities assist a software architect to carry out analysis, synthesis, evaluation, and evolution. For instance, an architect has to gather knowledge, make decisions, and document during the analysis phase.
- Knowledge management and communication is the act of exploring and managing knowledge that is essential to designing a software architecture. A software architect does not work in isolation. They get inputs, functional and non-functional requirements, and design contexts, from various stakeholders; and provide outputs to stakeholders. Software architecture knowledge is often tacit and is retained in the heads of stakeholders. Software architecture knowledge management activity is about finding, communicating, and retaining knowledge. As software architecture design issues are intricate and interdependent, a knowledge gap in design reasoning can lead to incorrect software architecture design. Examples of knowledge management and communication activities include searching for design patterns, prototyping, asking experienced developers and architects, evaluating the designs of similar systems, sharing knowledge with other designers and stakeholders, and documenting experience on a wiki page.
- Design reasoning and decision making is the activity of evaluating design decisions. This activity is fundamental to all three core software architecture activities. It entails gathering and associating decision contexts, formulating design decision problems, finding solution options and evaluating tradeoffs before making decisions. This process occurs at different levels of decision granularity while evaluating significant architectural requirements and software architecture decisions, and software architecture analysis, synthesis, and evaluation. Examples of reasoning activities include understanding the impacts of a requirement or a design on quality attributes, questioning the issues that a design might cause, assessing possible solution options, and evaluating the tradeoffs between solutions.
- Documentation is the act of recording the design generated during the software architecture process. System design is described using several views that frequently include a static view showing the code structure of the system, a dynamic view showing the actions of the system during execution, and a deployment view showing how a system is placed on hardware for execution. Kruchten's 4+1 view suggests a description of commonly used views for documenting software architecture;Documenting Software Architectures: Views and Beyond has descriptions of the kinds of notations that could be used within the view description. Examples of documentation activities are writing a specification, recording a system design model, documenting a design rationale, developing a viewpoint, documenting views.
Software Architecture Design Strategies
Software architecture inherently deals with uncertainties, and the size of architectural components can significantly influence a system's outcomes, both positively and negatively. Neal Ford and Mark Richards propose an iterative approach to address the challenge of identifying and right-sizing components. This method emphasizes continuous refinement as teams develop a more nuanced understanding of system behavior and requirements.
The approach typically involves a cycle with several stages:
- A high-level partitioning strategy is established, often categorized as technical or domain-based. Guidelines for the smallest meaningful deployable unit, referred to as "quanta," are defined. While these foundational decisions are made early, they may be revisited later in the cycle if necessary.
- Initial components are identified based on the established strategy.
- Requirements are assigned to the identified components.
- The roles and responsibilities of each component are analyzed to ensure clarity and minimize overlap.
- Architectural characteristics, such as scalability, fault tolerance, and maintainability, are evaluated.
- Components may be restructured based on feedback from development teams.
This cycle serves as a general framework and can be adapted to different domains.
Software architecture topics
Software architecture and agile development
There are also concerns that software architecture leads to too much big design up front, especially among proponents of agile software development. A number of methods have been developed to balance the trade-offs of up-front design and agility, including the agile method DSDM which mandates a "Foundations" phase during which "just enough" architectural foundations are laid. IEEE Software devoted a special issue to the interaction between agility and architecture.
Software architecture erosion
Software architecture erosion refers to a gradual gap between the intended and implemented architecture of a software system over time. The phenomenon of software architecture erosion was initially brought to light in 1992 by Perry and Wolf alongside their definition of software architecture.
Software architecture erosion may occur in each stage of the software development life cycle and has varying impacts on the development speed and the cost of maintenance. Software architecture erosion occurs due to various reasons, such as architectural violations, the accumulation of technical debt, and knowledge vaporization. A famous case of architecture erosion is the failure of Mozilla Web browser. Mozilla is an application created by Netscape with a complex codebase that became harder to maintain due to continuous changes. Due to initial poor design and growing architecture erosion, Netscape spent two years redeveloping the Mozilla Web browser, showing how important it is to manage architecture erosion to avoid extensive repair efforts, time and cost losses.
Architecture erosion can decrease software performance, substantially increase evolutionary costs, and degrade software quality. Various approaches and tools have been proposed to detect architecture erosion. These approaches are primarily classified into four categories: consistency-based, evolution-based, and defect-based, and decision-based approach. Besides, the measures used to address architecture erosion contains two main types: preventative and remedial measures.
Software architecture recovery
Software architecture recovery (or reconstruction, or reverse engineering) includes the methods, techniques, and processes to uncover a software system's architecture from available information, including its implementation and documentation. Architecture recovery is often necessary to make informed decisions in the face of obsolete or out-of-date documentation and architecture erosion: implementation and maintenance decisions diverging from the envisioned architecture. Practices exist to recover software architecture as static program analysis. This is a part of the subjects covered by the software intelligence practice.
Related fields
Design
Architecture is design but not all design is architectural. In practice, the architect is the one who draws the line between software architecture (architectural design) and detailed design (non-architectural design). There are no rules or guidelines that fit all cases, although there have been attempts to formalize the distinction. According to the Intension/Locality Hypothesis, the distinction between architectural and detailed design is defined by the Locality Criterion, according to which a statement about software design is non-local (architectural) if and only if a program that satisfies it can be expanded into a program that does not. For example, the client–server style is architectural (strategic) because a program that is built on this principle can be expanded into a program that is not client–server—for example, by adding peer-to-peer nodes.
Requirements engineering
Requirements engineering and software architecture can be seen as complementary approaches: while software architecture targets the 'solution space' or the 'how', requirements engineering addresses the 'problem space' or the 'what'. Requirements engineering entails the elicitation, negotiation, specification, validation, documentation, and management of requirements. Both requirements engineering and software architecture revolve around stakeholder concerns, needs, and wishes.
There is considerable overlap between requirements engineering and software architecture, as evidenced for example by a study into five industrial software architecture methods that concludes that "the inputs (goals, constraints, etc.) are usually ill-defined, and only get discovered or better understood as the architecture starts to emerge" and that while "most architectural concerns are expressed as requirements on the system, they can also include mandated design decisions". In short, required behavior impacts solution architecture, which in turn may introduce new requirements. Approaches such as the Twin Peaks model aim to exploit the synergistic relation between requirements and architecture.
Other types of 'architecture'
- Computer architecture
- Computer architecture targets the internal structure of a computer system, in terms of collaborating hardware components such as the CPU – or processor – the bus and the memory.
- Serverless architecture
- Serverless architecture is a cloud computing paradigm that is often misunderstood as being server-free. It essentially shifts server management responsibilities from developers to cloud service providers. This allows businesses to run their backend code on cloud infrastructure, eliminating the need for physical server management. The event-driven approach of serverless architecture relies on small, task-specific functions that are executed on-demand. These functions are known as Function as a Service (FaaS), and they offer cost-efficiency through a pay-as-you-go billing model and dynamic resource scaling based on application demand.[better source needed]
- Systems architecture
- The term systems architecture has originally been applied to the architecture of systems that consist of both hardware and software. The main concern addressed by the systems architecture is then the integration of software and hardware in a complete, correctly working device. In another common – much broader – meaning, the term applies to the architecture of any complex system which may be of a technical, sociotechnical or social nature.
- Enterprise architecture
- The goal of enterprise architecture is to "translate business vision and strategy into effective enterprise". Enterprise architecture frameworks, such as TOGAF and the Zachman Framework, usually distinguish between different enterprise architecture layers. Although terminology differs from framework to framework, many include at least a distinction between a business layer, an application (or information) layer, and a technology layer. Enterprise architecture addresses among others the alignment between these layers, usually in a top-down approach.
See also
- ArchiMate
- Architecture description language
- Architecture framework
- Architectural pattern (computer science)
- Architectural style
- Anti-pattern
- Attribute-driven design
- C4 model
- Computer architecture
- Distributed Data Management Architecture
- Distributed Relational Database Architecture
- Systems architecture
- Systems design
- Software Architecture Analysis Method
- List of software architecture styles and patterns
- Software architecture description
- Time-triggered system
- View model
References
- Clements, Paul; Felix Bachmann; Len Bass; David Garlan; James Ivers; Reed Little; Paulo Merson; Robert Nord; Judith Stafford (2010). Documenting Software Architectures: Views and Beyond, Second Edition. Boston: Addison-Wesley. ISBN 978-0-321-55268-6.
- Perry, D. E.; Wolf, A. L. (1992). "Foundations for the study of software architecture" (PDF). ACM SIGSOFT Software Engineering Notes. 17 (4): 40. CiteSeerX 10.1.1.40.5174. doi:10.1145/141874.141884. S2CID 628695.
- Head First Software Architecture. O'Reilly Media. 2024. ISBN 978-1098134358.
- Fundamentals of Software Architecture: An Engineering Approach. O'Reilly Media. 2020. ISBN 978-1492043454.
- Bass, Len; Paul Clements; Rick Kazman (2012). Software Architecture in Practice, Third Edition. Boston: Addison-Wesley. ISBN 978-0-321-81573-6.
- SEI (2006). "How do you define Software Architecture?". Retrieved 2012-09-12.
- Garlan & Shaw (1994). "An Introduction to Software Architecture" (PDF). Retrieved 2012-09-13.
- Fowler, Martin (2003). "Design – Who needs an architect?". IEEE Software. 20 (5): 11–44. doi:10.1109/MS.2003.1231144. S2CID 356506.
- ISO/IEC/IEEE 42010: Defining "architecture". Iso-architecture.org. Retrieved on 2013-07-21.
- Jansen, A.; Bosch, J. (2005). "Software Architecture as a Set of Architectural Design Decisions". 5th Working IEEE/IFIP Conference on Software Architecture (WICSA'05). p. 109. CiteSeerX 10.1.1.60.8680. doi:10.1109/WICSA.2005.61. ISBN 978-0-7695-2548-8. S2CID 13492610.
- Ali Babar, Muhammad; Dingsoyr, Torgeir; Lago, Patricia; van Vliet, Hans (2009). Software Architecture Knowledge Management. Dordrecht Heidelberg London New York: Springer. ISBN 978-3-642-02373-6.
- George Fairbanks (2010). Just Enough Software Architecture. Marshall & Brainerd.
- Fundamentals of Software Architecture: An Engineering Approach. O'Reilly Media. 2020. ISBN 978-1492043454.
- Design Patterns: Elements of Reusable Object-Oriented Software. ISBN 978-0201633610.
- Patterns of Enterprise Application Architecture. ISBN 978-0321127426.
- ISO/IEC/IEEE (2011). "ISO/IEC/IEEE 42010:2011 Systems and software engineering – Architecture description". Retrieved 2012-09-12.
- Muller, Gerrit (August 20, 2007). "A Reference Architecture Primer" (PDF). Gaudi site. Archived (PDF) from the original on 2011-12-19. Retrieved November 13, 2015.
- Angelov, S.; Grefen, P.; Greefhorst, D. (2009). "A classification of software reference architectures: Analyzing their success and effectiveness". 2009 Joint Working IEEE/IFIP Conference on Software Architecture & European Conference on Software Architecture. IEEE. pp. 141–150. doi:10.1109/WICSA.2009.5290800. ISBN 978-1-4244-4984-2. Retrieved 15 December 2023.
- Brooks, Frederick P. Jr. (1975). The Mythical Man-Month – Essays on Software Engineering. Addison-Wesley. ISBN 978-0-201-00650-6.
- Conway, Melvin. "Conway's Law". Mel Conway's Home Page. Archived from the original on 2019-09-29. Retrieved 2019-09-29.
- Obbink, H.; Kruchten, P.; Kozaczynski, W.; Postema, H.; Ran, A.; Dominick, L.; Kazman, R.; Hilliard, R.; Tracz, W.; Kahane, E. (Feb 6, 2002). "Software Architecture Review and Assessment (SARA) Report" (PDF). Retrieved November 1, 2015.
- Poort, Eltjo; van Vliet, Hans (September 2012). "RCDA: Architecting as a risk- and cost management discipline". Journal of Systems and Software. 85 (9): 1995–2013. doi:10.1016/j.jss.2012.03.071.
- P. Naur; B. Randell, eds. (1969). "Software Engineering: Report of a conference sponsored by the NATO Science Committee, Garmisch, Germany, 7–11 Oct. 1968" (PDF). Brussels: NATO, Scientific Affairs Division. Archived (PDF) from the original on 2003-06-07. Retrieved 2012-11-16.
- P. Kruchten; H. Obbink; J. Stafford (2006). "The past, present and future of software architecture". IEEE Software. 23 (2): 22. doi:10.1109/MS.2006.59. S2CID 2082927.
- University of Waterloo (2006). "A Very Brief History of Computer Science". Retrieved 2006-09-23.
- "Introduction to the Special Issue on Software Architecture". IEEE.org. 2006. doi:10.1109/TSE.1995.10003.
- Garlan & Shaw (1994). "An Introduction to Software Architecture" (PDF). Retrieved 2006-09-25.
- Christine Hofmeister; Philippe Kruchten; Robert L. Nord; Henk Obbink; Alexander Ran; Pierre America (2007). "A general model of software architecture design derived from five industrial approaches". Journal of Systems and Software. 80 (1): 106–126. doi:10.1016/j.jss.2006.05.024.
- ISO/IEC (2011). "ISO/IEC 25010:2011 Systems and software engineering – Systems and software Quality Requirements and Evaluation (SQuaRE) – System and software quality models". Retrieved 2012-10-08.
- Osterwalder and Pigneur (2004). "An Ontology for e-Business Models" (PDF). Value Creation from E-Business Models. pp. 65–97. CiteSeerX 10.1.1.9.6922. doi:10.1016/B978-075066140-9/50006-0. ISBN 9780750661409. S2CID 14177438. Archived from the original (PDF) on 2018-11-17.
- Chen, Lianping; Ali Babar, Muhammad; Nuseibeh, Bashar (2013). "Characterizing Architecturally Significant Requirements". IEEE Software. 30 (2): 38–45. doi:10.1109/MS.2012.174. hdl:10344/3061. S2CID 17399565.
- Woods, E. (2012). "Industrial architectural assessment using TARA". Journal of Systems and Software. 85 (9): 2034–2047. doi:10.1016/j.jss.2012.04.055. S2CID 179244.
- Maranzano, J. F.; Rozsypal, S. A.; Zimmerman, G. H.; Warnken, G. W.; Wirth, P. E.; Weiss, D. M. (2005). "Architecture Reviews: Practice and Experience". IEEE Software. 22 (2): 34. doi:10.1109/MS.2005.28. S2CID 11697335.
- Kruchten, P. (2008). "What do software architects really do?". Journal of Systems and Software. 81 (12): 2413–2416. doi:10.1016/j.jss.2008.08.025.
- Babar, M.A.; Dingsøyr, T.; Lago, P.; Vliet, H. van (2009). Software Architecture Knowledge Management:Theory and Practice (eds.), First Edition. Springer. ISBN 978-3-642-02373-6.
- Tang, A.; Han, J.; Vasa, R. (2009). "Software Architecture Design Reasoning: A Case for Improved Methodology Support". IEEE Software. 26 (2): 43. doi:10.1109/MS.2009.46. hdl:1959.3/51601. S2CID 12230032.
- Kruchten, Philippe (1995). "Architectural Blueprints – The '4+1' View Model of Software Architecture" (PDF). IEEE Software. 12 (6): 42–50. arXiv:2006.04975. doi:10.1109/52.469759. S2CID 219558624.
- Boehm, Barry; Turner, Richard (2004). Balancing Agility and Discipline. Addison-Wesley. ISBN 978-0-321-18612-6.
- Li, Ruiyin; Liang, Peng; Soliman, Mohamed; Avgeriou, Paris (2022). "Understanding software architecture erosion: A systematic mapping study". Journal of Software: Evolution and Process. 34 (3): e2423. arXiv:2112.10934. doi:10.1002/smr.2423.
- Li, Ruiyin; Liang, Peng; Soliman, Mohamed; Avgeriou, Paris (2021). "Understanding architecture erosion: The practitioners' perceptive". The 29th IEEE/ACM International Conference on Program Comprehension (ICPC). pp. 311–322. doi:10.1109/icpc52881.2021.00037. ISBN 978-1-6654-1403-6.
- van Gurp, J. and Bosch, J.: 2002, Design erosion: Problems and causes, Journal of Systems and Software 61(2), 105–119.
- Lungu, M. "Software architecture recovery", University of Lugano, 2008. http://www.slideshare.net/mircea.lungu/software-architecture-recovery-in-five-questions-presentation
- Amnon H. Eden; Rick Kazman (2003). "Architecture Design Implementation" (PDF). Archived from the original (PDF) on 2007-09-28.
- C. Shekaran; D. Garlan; M. Jackson; N.R. Mead; C. Potts; H.B. Reubenstein (1994). "The role of software architecture in requirements engineering". Proceedings of IEEE International Conference on Requirements Engineering. pp. 239–245. doi:10.1109/ICRE.1994.292379. ISBN 978-0-8186-5480-0. S2CID 3129363.
- Remco C. de Boer, Hans van Vliet (2009). "On the similarity between requirements and architecture". Journal of Systems and Software. 82 (3): 544–550. CiteSeerX 10.1.1.415.6023. doi:10.1016/j.jss.2008.11.185.
- Bashar Nuseibeh (2001). "Weaving together requirements and architectures" (PDF). Computer. 34 (3): 115–119. doi:10.1109/2.910904. Archived (PDF) from the original on 2012-09-07.
- Company, DashDevs | FinTech Software Development. "How to Use Serverless Architecture | DashDevs". How to Use Serverless Architecture | DashDevs. Retrieved 2023-08-28.
{{cite web}}
:|last=
has generic name (help)
Further reading
- Richards, Mark (2020). Fundamentals of Software Architecture: An Engineering Approach. O'Reilly Media. ISBN 9781492043454.
- Len, Bass (2012). Software Architecture in Practice (3rd ed.). Addison-Wesley Professional. ISBN 9780321815736. - This book covers the fundamental concepts of the discipline. The theme is centered on achieving quality attributes of a system.
- Clements, Paul (2010). Documenting Software Architectures: Views and Beyond (2nd ed.). Addison-Wesley Professional. ISBN 9780321552686. - This book describes what software architecture is and shows how to document it in multiple views, using UML and other notations. It also explains how to complement the architecture views with behavior, software interface, and rationale documentation. Accompanying the book is a wiki that contains an example of software architecture documentation.
- Bell, Michael (2008). Bell, Michael (ed.). Service-Oriented Modeling: Service Analysis, Design, and Architecture. Wiley. doi:10.1002/9781119198864. ISBN 9780470255704.
- Shan, Tony; Hua, Winnie (October 2006). "Solution Architecting Mechanism". 2006 10th IEEE International Enterprise Distributed Object Computing Conference (EDOC'06). pp. 23–32. doi:10.1109/EDOC.2006.54. ISBN 978-0-7695-2558-7. S2CID 8361936.
- Garzás, Javier; Piattini, Mario (2005). "An ontology for micro-architectural design knowledge". IEEE Software. 22 (2): 28–33. doi:10.1109/MS.2005.26. S2CID 17639072.
- Fowler, Martin (September 2003). "Who Needs an Architect?" (PDF). IEEE Software. 20 (5). doi:10.1109/MS.2003.1231144. S2CID 356506.
- Kazman, Rick (May 2003). "Architecture, Design, Implementation" (PDF). Software Engineering Institute. Archived (PDF) from the original on 2015-09-21. - On the distinction between architectural design and detailed design.
- Kruchten, Philippe (1995). "Architectural Blueprints – The '4+1' View Model of Software Architecture" (PDF). IEEE Software. 12 (6): 42–50. arXiv:2006.04975. doi:10.1109/52.469759. S2CID 219558624. Archived (PDF) from the original on 2006-06-13.
- Pautasso, Cesare (2020). Software Architecture: visual lecture notes. LeanPub. p. 689.
External links
- Explanation on IBM Developerworks
- Collection of software architecture definitions at Software Engineering Institute (SEI), Carnegie Mellon University (CMU)
- International Association of IT Architects (IASA Global), formerly known as the International Association for Software Architects (IASA)
- SoftwareArchitecturePortal.org – website of IFIP Working Group 2.10 on Software Architecture
- SoftwareArchitectures.com – an independent resource of information on the discipline
- Software Architecture, chapter 1 of Roy Fielding's REST dissertation
- When Good Architecture Goes Bad
- The Spiral Architecture Driven Development – the SDLC based on the Spiral model aims to reduce the risks of ineffective architecture
- Software Architecture Real Life Case Studies
Software architecture is the set of structures needed to reason about a software system and the discipline of creating such structures and systems Each structure comprises software elements relations among them and properties of both elements and relations The architecture of a software system is a metaphor analogous to the architecture of a building It functions as the blueprints for the system and the development project which project management can later use to extrapolate the tasks necessary to be executed by the teams and people involved Software architecture is about making fundamental structural choices that are costly to change once implemented Software architecture choices include specific structural options from possibilities in the design of the software There are two fundamental laws in software architecture Everything is a trade off Why is more important than how Architectural Kata is a teamwork which can be used to produce an architectural solution that fits the needs Each team extracts and prioritizes architectural characteristics aka non functional requirements then models the components accordingly The team can use C4 Model which is a flexible method to model the architecture just enough Note that synchronous communication between architectural components entangles them and they must share the same architectural characteristics Documenting software architecture facilitates communication between stakeholders captures early decisions about the high level design and allows the reuse of design components between projects 29 35 Software architecture design is commonly juxtaposed with Whilst application design focuses on the design of the processes and data supporting the required functionality the services offered by the system software architecture design focuses on designing the infrastructure within which application functionality can be realized and executed such that the functionality is provided in a way which meets the system s non functional requirements Software architectures can be categorized into two main types monolith and distributed architecture each has its own subcategories Software architecture tends to become more complex over time Software architects should use fitness functions to continuously keep the architecture in check Software architecture activitiesScopeOpinions vary as to the scope of software architectures Macroscopic system structure this refers to architecture as a higher level abstraction of a software system that consists of a collection of computational components together with connectors that describe the interaction between these components The important stuff whatever that is this refers to the fact that software architects should concern themselves with those decisions that have high impact on the system and its stakeholders That which is fundamental to understanding a system in its environment Things that people perceive as hard to change since designing the architecture takes place at the beginning of a software system s lifecycle the architect should focus on decisions that have to be right the first time Following this line of thought architectural design issues may become non architectural once their irreversibility can be overcome A set of architectural design decisions software architecture should not be considered merely a set of models or structures but should include the decisions that lead to these particular structures and the rationale behind them This insight has led to substantial research into software architecture knowledge management There is no sharp distinction between software architecture versus design and requirements engineering see Related fields below They are all part of a chain of intentionality from high level intentions to low level details 18 Software architecture style vs software architecture patternSoftware Architecture Pattern refers to a reusable proven solution to a recurring problem at the system level addressing concerns related to the overall structure component interactions and quality attributes of the system Software architecture patterns operate at a higher level of abstraction than software design patterns solving broader system level challenges While these patterns typically affect system level concerns the distinction between architectural patterns and architectural styles can sometimes be blurry Examples include Circuit Breaker Software Architecture Style refers to a high level structural organization that defines the overall system organization specifying how components are organized how they interact and the constraints on those interactions Architecture styles typically include a vocabulary of component and connector types as well as semantic models for interpreting the system s properties These styles represent the most coarse grained level of system organization Examples include Layered Architecture Microservices and Event Driven Architecture Anti patternsThe following architectural anti patterns can arise when architects make decisions These anti patterns often follow a progressive sequence where resolving one may lead to the emergence of another An architect may delay or avoid making architectural decisions due to the fear of choosing incorrectly To address this ongoing and close collaboration with the development team is often necessary with architectural choices being adjusted based on their feedback Additionally decisions are typically made at the last responsible moment ensuring there is enough information to justify and validate the decision while avoiding unnecessary delays that could lead to analysis paralysis and hinder the team s progress Another anti pattern can arise when architectural decisions are forgotten not documented or not understood leading to repeated discussions without resolution This often occurs when email is used to communicate architectural decisions To address these challenges architects typically provide both technical and business justifications often related to cost user satisfaction and time to market in a single record of the architectural decision usually an Architecture Decision Record This record can be maintained in an accessible repository such as a wiki Communication via email focuses on the nature and context of the change and is directed only to relevant stakeholders with a link to the centralized record This ensures there is always a single updated source of truth Additionally if an architectural decision does not offer tangible business value or if the business value is misaligned with business stakeholders it may need to be reconsidered CharacteristicsSoftware architecture exhibits the following Multitude of stakeholders software systems have to cater to a variety of stakeholders such as business managers owners users and operators These stakeholders all have their own concerns with respect to the system Balancing these concerns and demonstrating that they are addressed is part of designing the system 29 31 This implies that architecture involves dealing with a broad variety of concerns and stakeholders and has a multidisciplinary nature Separation of concerns the established way for architects to reduce complexity is to separate the concerns that drive the design Architecture documentation shows that all stakeholder concerns are addressed by modeling and describing the architecture from separate points of view associated with the various stakeholder concerns These separate descriptions are called architectural views see for example the 4 1 architectural view model Quality driven classic software design approaches e g Jackson Structured Programming were driven by required functionality and the flow of data through the system but the current insight 26 28 is that the architecture of a software system is more closely related to its quality attributes such as fault tolerance backward compatibility extensibility reliability maintainability availability security usability and other such ilities Stakeholder concerns often translate into requirements on these quality attributes which are variously called non functional requirements extra functional requirements behavioral requirements or quality attribute requirements Recurring styles like building architecture the software architecture discipline has developed standard ways to address recurring concerns These standard ways are called by various names at various levels of abstraction Common terms for recurring solutions are architectural style 273 277 tactic 70 72 reference architecture and architectural pattern 203 205 Conceptual integrity a term introduced by Fred Brooks in his 1975 book The Mythical Man Month to denote the idea that the architecture of a software system represents an overall vision of what it should do and how it should do it This vision should be separated from its implementation The architect assumes the role of keeper of the vision making sure that additions to the system are in line with the architecture hence preserving conceptual integrity 41 50 Cognitive constraints An observation first made in a 1967 paper by computer programmer Melvin Conway that organizations which design systems are constrained to produce designs which are copies of the communication structures of these organizations Fred Brooks introduced it to a wider audience when he cited the paper and the idea in The Mythical Man Month calling it Conway s Law MotivationSoftware architecture is an intellectually graspable abstraction of a complex system 5 6 This abstraction provides a number of benefits It gives a basis for analysis of software systems behavior before the system has been built The ability to verify that a future software system fulfills its stakeholders needs without actually having to build it represents substantial cost saving and risk mitigation A number of techniques have been developed to perform such analyses such as ATAM or by creating a visual representation of the software system It provides a basis for re use of elements and decisions 35 A complete software architecture or parts of it like individual architectural strategies and decisions can be re used across multiple systems whose stakeholders require similar quality attributes or functionality saving design costs and mitigating the risk of design mistakes It supports early design decisions that impact a system s development deployment and maintenance life 31 Getting the early high impact decisions right is important to prevent schedule and budget overruns It facilitates communication with stakeholders contributing to a system that better fulfills their needs 29 31 Communicating about complex systems from the point of view of stakeholders helps them understand the consequences of their stated requirements and the design decisions based on them Architecture gives the ability to communicate about design decisions before the system is implemented when they are still relatively easy to adapt It helps in risk management Software architecture helps to reduce risks and chance of failure 18 It enables cost reduction Software architecture is a means to manage risk and costs in complex IT projects HistoryThe comparison between software design and civil architecture was first drawn in the late 1960s but the term software architecture did not see widespread usage until the 1990s The field of computer science had encountered problems associated with complexity since its formation Earlier problems of complexity were solved by developers by choosing the right data structures developing algorithms and by applying the concept of separation of concerns Although the term software architecture is relatively new to the industry the fundamental principles of the field have been applied sporadically by software engineering pioneers since the mid 1980s Early attempts to capture and explain software architecture of a system were imprecise and disorganized often characterized by a set of box and line diagrams Software architecture as a concept has its origins in the research of Edsger Dijkstra in 1968 and David Parnas in the early 1970s These scientists emphasized that the structure of a software system matters and getting the structure right is critical During the 1990s there was a concerted effort to define and codify fundamental aspects of the discipline with research work concentrating on architectural styles patterns architecture description languages architecture documentation and formal methods Research institutions have played a prominent role in furthering software architecture as a discipline Mary Shaw and David Garlan of Carnegie Mellon wrote a book titled Software Architecture Perspectives on an Emerging Discipline in 1996 which promoted software architecture concepts such as components connectors and styles The University of California Irvine s Institute for Software Research s efforts in software architecture research is directed primarily in architectural styles architecture description languages and dynamic architectures IEEE 1471 2000 Recommended Practice for Architecture Description of Software Intensive Systems was the first formal standard in the area of software architecture It was adopted in 2007 by ISO as ISO IEC 42010 2007 In November 2011 IEEE 1471 2000 was superseded by ISO IEC IEEE 42010 2011 Systems and software engineering Architecture description jointly published by IEEE and ISO While in IEEE 1471 software architecture was about the architecture of software intensive systems defined as any system where software contributes essential influences to the design construction deployment and evolution of the system as a whole the 2011 edition goes a step further by including the ISO IEC 15288 and ISO IEC 12207 definitions of a system which embrace not only hardware and software but also humans processes procedures facilities materials and naturally occurring entities This reflects the relationship between software architecture enterprise architecture and solution architecture Architecture activitiesMaking architectural decisions involves collecting sufficient relevant information providing justification for the decision documenting the decision and its rationale and communicating it effectively to the appropriate stakeholders It s software architect s responsibility to match architectural characteristics aka non functional requirements with business requirements For example Having a high customer satisfactions requires availability fault tolerance security testability recoverability agility and performance in the system Doing mergers and acquisitions M amp A requires extensibility scalability adaptability and interoperability Constrained budget and time requires feasibility and simplicity Faster time to market requires maintainability testability and deployability There are four core activities in software architecture design These core architecture activities are performed iteratively and at different stages of the initial software development life cycle as well as over the evolution of a system Architectural analysis is the process of understanding the environment in which a proposed system will operate and determining the requirements for the system The input or requirements to the analysis activity can come from any number of stakeholders and include items such as what the system will do when operational the functional requirements how well the system will perform runtime non functional requirements such as reliability operability performance efficiency security compatibility defined in ISO IEC 25010 2011 standard development time of non functional requirements such as maintainability and transferability defined in ISO 25010 2011 standard business requirements and environmental contexts of a system that may change over time such as legal social financial competitive and technology concerns The outputs of the analysis activity are those requirements that have a measurable impact on a software system s architecture called architecturally significant requirements Architectural synthesis or design is the process of creating an architecture Given the architecturally significant requirements determined by the analysis the current state of the design and the results of any evaluation activities the design is created and improved 311 326 Architecture evaluation is the process of determining how well the current design or a portion of it satisfies the requirements derived during analysis An evaluation can occur whenever an architect is considering a design decision it can occur after some portion of the design has been completed it can occur after the final design has been completed or it can occur after the system has been constructed Some of the available software architecture evaluation techniques include Architecture Tradeoff Analysis Method ATAM and TARA Frameworks for comparing the techniques are discussed in frameworks such as SARA Report and Architecture Reviews Practice and Experience Architecture evolution is the process of maintaining and adapting an existing software architecture to meet changes in requirements and environment As software architecture provides a fundamental structure of a software system its evolution and maintenance would necessarily impact its fundamental structure As such architecture evolution is concerned with adding new functionality as well as maintaining existing functionality and system behavior Architecture requires critical supporting activities These supporting activities take place throughout the core software architecture process They include knowledge management and communication design reasoning and decision making and documentation Architecture supporting activities Software architecture supporting activities are carried out during core software architecture activities These supporting activities assist a software architect to carry out analysis synthesis evaluation and evolution For instance an architect has to gather knowledge make decisions and document during the analysis phase Knowledge management and communication is the act of exploring and managing knowledge that is essential to designing a software architecture A software architect does not work in isolation They get inputs functional and non functional requirements and design contexts from various stakeholders and provide outputs to stakeholders Software architecture knowledge is often tacit and is retained in the heads of stakeholders Software architecture knowledge management activity is about finding communicating and retaining knowledge As software architecture design issues are intricate and interdependent a knowledge gap in design reasoning can lead to incorrect software architecture design Examples of knowledge management and communication activities include searching for design patterns prototyping asking experienced developers and architects evaluating the designs of similar systems sharing knowledge with other designers and stakeholders and documenting experience on a wiki page Design reasoning and decision making is the activity of evaluating design decisions This activity is fundamental to all three core software architecture activities It entails gathering and associating decision contexts formulating design decision problems finding solution options and evaluating tradeoffs before making decisions This process occurs at different levels of decision granularity while evaluating significant architectural requirements and software architecture decisions and software architecture analysis synthesis and evaluation Examples of reasoning activities include understanding the impacts of a requirement or a design on quality attributes questioning the issues that a design might cause assessing possible solution options and evaluating the tradeoffs between solutions Documentation is the act of recording the design generated during the software architecture process System design is described using several views that frequently include a static view showing the code structure of the system a dynamic view showing the actions of the system during execution and a deployment view showing how a system is placed on hardware for execution Kruchten s 4 1 view suggests a description of commonly used views for documenting software architecture Documenting Software Architectures Views and Beyond has descriptions of the kinds of notations that could be used within the view description Examples of documentation activities are writing a specification recording a system design model documenting a design rationale developing a viewpoint documenting views Software Architecture Design StrategiesSoftware architecture inherently deals with uncertainties and the size of architectural components can significantly influence a system s outcomes both positively and negatively Neal Ford and Mark Richards propose an iterative approach to address the challenge of identifying and right sizing components This method emphasizes continuous refinement as teams develop a more nuanced understanding of system behavior and requirements The approach typically involves a cycle with several stages A high level partitioning strategy is established often categorized as technical or domain based Guidelines for the smallest meaningful deployable unit referred to as quanta are defined While these foundational decisions are made early they may be revisited later in the cycle if necessary Initial components are identified based on the established strategy Requirements are assigned to the identified components The roles and responsibilities of each component are analyzed to ensure clarity and minimize overlap Architectural characteristics such as scalability fault tolerance and maintainability are evaluated Components may be restructured based on feedback from development teams This cycle serves as a general framework and can be adapted to different domains Software architecture topicsSoftware architecture and agile development There are also concerns that software architecture leads to too much big design up front especially among proponents of agile software development A number of methods have been developed to balance the trade offs of up front design and agility including the agile method DSDM which mandates a Foundations phase during which just enough architectural foundations are laid IEEE Software devoted a special issue to the interaction between agility and architecture Software architecture erosion Software architecture erosion refers to a gradual gap between the intended and implemented architecture of a software system over time The phenomenon of software architecture erosion was initially brought to light in 1992 by Perry and Wolf alongside their definition of software architecture Software architecture erosion may occur in each stage of the software development life cycle and has varying impacts on the development speed and the cost of maintenance Software architecture erosion occurs due to various reasons such as architectural violations the accumulation of technical debt and knowledge vaporization A famous case of architecture erosion is the failure of Mozilla Web browser Mozilla is an application created by Netscape with a complex codebase that became harder to maintain due to continuous changes Due to initial poor design and growing architecture erosion Netscape spent two years redeveloping the Mozilla Web browser showing how important it is to manage architecture erosion to avoid extensive repair efforts time and cost losses Architecture erosion can decrease software performance substantially increase evolutionary costs and degrade software quality Various approaches and tools have been proposed to detect architecture erosion These approaches are primarily classified into four categories consistency based evolution based and defect based and decision based approach Besides the measures used to address architecture erosion contains two main types preventative and remedial measures Software architecture recovery Software architecture recovery or reconstruction or reverse engineering includes the methods techniques and processes to uncover a software system s architecture from available information including its implementation and documentation Architecture recovery is often necessary to make informed decisions in the face of obsolete or out of date documentation and architecture erosion implementation and maintenance decisions diverging from the envisioned architecture Practices exist to recover software architecture as static program analysis This is a part of the subjects covered by the software intelligence practice Related fieldsDesign Architecture is design but not all design is architectural In practice the architect is the one who draws the line between software architecture architectural design and detailed design non architectural design There are no rules or guidelines that fit all cases although there have been attempts to formalize the distinction According to the Intension Locality Hypothesis the distinction between architectural and detailed design is defined by the Locality Criterion according to which a statement about software design is non local architectural if and only if a program that satisfies it can be expanded into a program that does not For example the client server style is architectural strategic because a program that is built on this principle can be expanded into a program that is not client server for example by adding peer to peer nodes Requirements engineering Requirements engineering and software architecture can be seen as complementary approaches while software architecture targets the solution space or the how requirements engineering addresses the problem space or the what Requirements engineering entails the elicitation negotiation specification validation documentation and management of requirements Both requirements engineering and software architecture revolve around stakeholder concerns needs and wishes There is considerable overlap between requirements engineering and software architecture as evidenced for example by a study into five industrial software architecture methods that concludes that the inputs goals constraints etc are usually ill defined and only get discovered or better understood as the architecture starts to emerge and that while most architectural concerns are expressed as requirements on the system they can also include mandated design decisions In short required behavior impacts solution architecture which in turn may introduce new requirements Approaches such as the Twin Peaks model aim to exploit the synergistic relation between requirements and architecture Other types of architecture Computer architecture Computer architecture targets the internal structure of a computer system in terms of collaborating hardware components such as the CPU or processor the bus and the memory Serverless architecture Serverless architecture is a cloud computing paradigm that is often misunderstood as being server free It essentially shifts server management responsibilities from developers to cloud service providers This allows businesses to run their backend code on cloud infrastructure eliminating the need for physical server management The event driven approach of serverless architecture relies on small task specific functions that are executed on demand These functions are known as Function as a Service FaaS and they offer cost efficiency through a pay as you go billing model and dynamic resource scaling based on application demand better source needed Systems architecture The term systems architecture has originally been applied to the architecture of systems that consist of both hardware and software The main concern addressed by the systems architecture is then the integration of software and hardware in a complete correctly working device In another common much broader meaning the term applies to the architecture of any complex system which may be of a technical sociotechnical or social nature Enterprise architecture The goal of enterprise architecture is to translate business vision and strategy into effective enterprise Enterprise architecture frameworks such as TOGAF and the Zachman Framework usually distinguish between different enterprise architecture layers Although terminology differs from framework to framework many include at least a distinction between a business layer an application or information layer and a technology layer Enterprise architecture addresses among others the alignment between these layers usually in a top down approach See alsoArchiMate Architecture description language Architecture framework Architectural pattern computer science Architectural style Anti pattern Attribute driven design C4 model Computer architecture Distributed Data Management Architecture Distributed Relational Database Architecture Systems architecture Systems design Software Architecture Analysis Method List of software architecture styles and patterns Software architecture description Time triggered system View modelReferencesClements Paul Felix Bachmann Len Bass David Garlan James Ivers Reed Little Paulo Merson Robert Nord Judith Stafford 2010 Documenting Software Architectures Views and Beyond Second Edition Boston Addison Wesley ISBN 978 0 321 55268 6 Perry D E Wolf A L 1992 Foundations for the study of software architecture PDF ACM SIGSOFT Software Engineering Notes 17 4 40 CiteSeerX 10 1 1 40 5174 doi 10 1145 141874 141884 S2CID 628695 Head First Software Architecture O Reilly Media 2024 ISBN 978 1098134358 Fundamentals of Software Architecture An Engineering Approach O Reilly Media 2020 ISBN 978 1492043454 Bass Len Paul Clements Rick Kazman 2012 Software Architecture in Practice Third Edition Boston Addison Wesley ISBN 978 0 321 81573 6 SEI 2006 How do you define Software Architecture Retrieved 2012 09 12 Garlan amp Shaw 1994 An Introduction to Software Architecture PDF Retrieved 2012 09 13 Fowler Martin 2003 Design Who needs an architect IEEE Software 20 5 11 44 doi 10 1109 MS 2003 1231144 S2CID 356506 ISO IEC IEEE 42010 Defining architecture Iso architecture org Retrieved on 2013 07 21 Jansen A Bosch J 2005 Software Architecture as a Set of Architectural Design Decisions 5th Working IEEE IFIP Conference on Software Architecture WICSA 05 p 109 CiteSeerX 10 1 1 60 8680 doi 10 1109 WICSA 2005 61 ISBN 978 0 7695 2548 8 S2CID 13492610 Ali Babar Muhammad Dingsoyr Torgeir Lago Patricia van Vliet Hans 2009 Software Architecture Knowledge Management Dordrecht Heidelberg London New York Springer ISBN 978 3 642 02373 6 George Fairbanks 2010 Just Enough Software Architecture Marshall amp Brainerd Fundamentals of Software Architecture An Engineering Approach O Reilly Media 2020 ISBN 978 1492043454 Design Patterns Elements of Reusable Object Oriented Software ISBN 978 0201633610 Patterns of Enterprise Application Architecture ISBN 978 0321127426 ISO IEC IEEE 2011 ISO IEC IEEE 42010 2011 Systems and software engineering Architecture description Retrieved 2012 09 12 Muller Gerrit August 20 2007 A Reference Architecture Primer PDF Gaudi site Archived PDF from the original on 2011 12 19 Retrieved November 13 2015 Angelov S Grefen P Greefhorst D 2009 A classification of software reference architectures Analyzing their success and effectiveness 2009 Joint Working IEEE IFIP Conference on Software Architecture amp European Conference on Software Architecture IEEE pp 141 150 doi 10 1109 WICSA 2009 5290800 ISBN 978 1 4244 4984 2 Retrieved 15 December 2023 Brooks Frederick P Jr 1975 The Mythical Man Month Essays on Software Engineering Addison Wesley ISBN 978 0 201 00650 6 Conway Melvin Conway s Law Mel Conway s Home Page Archived from the original on 2019 09 29 Retrieved 2019 09 29 Obbink H Kruchten P Kozaczynski W Postema H Ran A Dominick L Kazman R Hilliard R Tracz W Kahane E Feb 6 2002 Software Architecture Review and Assessment SARA Report PDF Retrieved November 1 2015 Poort Eltjo van Vliet Hans September 2012 RCDA Architecting as a risk and cost management discipline Journal of Systems and Software 85 9 1995 2013 doi 10 1016 j jss 2012 03 071 P Naur B Randell eds 1969 Software Engineering Report of a conference sponsored by the NATO Science Committee Garmisch Germany 7 11 Oct 1968 PDF Brussels NATO Scientific Affairs Division Archived PDF from the original on 2003 06 07 Retrieved 2012 11 16 P Kruchten H Obbink J Stafford 2006 The past present and future of software architecture IEEE Software 23 2 22 doi 10 1109 MS 2006 59 S2CID 2082927 University of Waterloo 2006 A Very Brief History of Computer Science Retrieved 2006 09 23 Introduction to the Special Issue on Software Architecture IEEE org 2006 doi 10 1109 TSE 1995 10003 Garlan amp Shaw 1994 An Introduction to Software Architecture PDF Retrieved 2006 09 25 Christine Hofmeister Philippe Kruchten Robert L Nord Henk Obbink Alexander Ran Pierre America 2007 A general model of software architecture design derived from five industrial approaches Journal of Systems and Software 80 1 106 126 doi 10 1016 j jss 2006 05 024 ISO IEC 2011 ISO IEC 25010 2011 Systems and software engineering Systems and software Quality Requirements and Evaluation SQuaRE System and software quality models Retrieved 2012 10 08 Osterwalder and Pigneur 2004 An Ontology for e Business Models PDF Value Creation from E Business Models pp 65 97 CiteSeerX 10 1 1 9 6922 doi 10 1016 B978 075066140 9 50006 0 ISBN 9780750661409 S2CID 14177438 Archived from the original PDF on 2018 11 17 Chen Lianping Ali Babar Muhammad Nuseibeh Bashar 2013 Characterizing Architecturally Significant Requirements IEEE Software 30 2 38 45 doi 10 1109 MS 2012 174 hdl 10344 3061 S2CID 17399565 Woods E 2012 Industrial architectural assessment using TARA Journal of Systems and Software 85 9 2034 2047 doi 10 1016 j jss 2012 04 055 S2CID 179244 Maranzano J F Rozsypal S A Zimmerman G H Warnken G W Wirth P E Weiss D M 2005 Architecture Reviews Practice and Experience IEEE Software 22 2 34 doi 10 1109 MS 2005 28 S2CID 11697335 Kruchten P 2008 What do software architects really do Journal of Systems and Software 81 12 2413 2416 doi 10 1016 j jss 2008 08 025 Babar M A Dingsoyr T Lago P Vliet H van 2009 Software Architecture Knowledge Management Theory and Practice eds First Edition Springer ISBN 978 3 642 02373 6 Tang A Han J Vasa R 2009 Software Architecture Design Reasoning A Case for Improved Methodology Support IEEE Software 26 2 43 doi 10 1109 MS 2009 46 hdl 1959 3 51601 S2CID 12230032 Kruchten Philippe 1995 Architectural Blueprints The 4 1 View Model of Software Architecture PDF IEEE Software 12 6 42 50 arXiv 2006 04975 doi 10 1109 52 469759 S2CID 219558624 Boehm Barry Turner Richard 2004 Balancing Agility and Discipline Addison Wesley ISBN 978 0 321 18612 6 Li Ruiyin Liang Peng Soliman Mohamed Avgeriou Paris 2022 Understanding software architecture erosion A systematic mapping study Journal of Software Evolution and Process 34 3 e2423 arXiv 2112 10934 doi 10 1002 smr 2423 Li Ruiyin Liang Peng Soliman Mohamed Avgeriou Paris 2021 Understanding architecture erosion The practitioners perceptive The 29th IEEE ACM International Conference on Program Comprehension ICPC pp 311 322 doi 10 1109 icpc52881 2021 00037 ISBN 978 1 6654 1403 6 van Gurp J and Bosch J 2002 Design erosion Problems and causes Journal of Systems and Software 61 2 105 119 Lungu M Software architecture recovery University of Lugano 2008 http www slideshare net mircea lungu software architecture recovery in five questions presentation Amnon H Eden Rick Kazman 2003 Architecture Design Implementation PDF Archived from the original PDF on 2007 09 28 C Shekaran D Garlan M Jackson N R Mead C Potts H B Reubenstein 1994 The role of software architecture in requirements engineering Proceedings of IEEE International Conference on Requirements Engineering pp 239 245 doi 10 1109 ICRE 1994 292379 ISBN 978 0 8186 5480 0 S2CID 3129363 Remco C de Boer Hans van Vliet 2009 On the similarity between requirements and architecture Journal of Systems and Software 82 3 544 550 CiteSeerX 10 1 1 415 6023 doi 10 1016 j jss 2008 11 185 Bashar Nuseibeh 2001 Weaving together requirements and architectures PDF Computer 34 3 115 119 doi 10 1109 2 910904 Archived PDF from the original on 2012 09 07 Company DashDevs FinTech Software Development How to Use Serverless Architecture DashDevs How to Use Serverless Architecture DashDevs Retrieved 2023 08 28 a href wiki Template Cite web title Template Cite web cite web a last has generic name help Further readingRichards Mark 2020 Fundamentals of Software Architecture An Engineering Approach O Reilly Media ISBN 9781492043454 Len Bass 2012 Software Architecture in Practice 3rd ed Addison Wesley Professional ISBN 9780321815736 This book covers the fundamental concepts of the discipline The theme is centered on achieving quality attributes of a system Clements Paul 2010 Documenting Software Architectures Views and Beyond 2nd ed Addison Wesley Professional ISBN 9780321552686 This book describes what software architecture is and shows how to document it in multiple views using UML and other notations It also explains how to complement the architecture views with behavior software interface and rationale documentation Accompanying the book is a wiki that contains an example of software architecture documentation Bell Michael 2008 Bell Michael ed Service Oriented Modeling Service Analysis Design and Architecture Wiley doi 10 1002 9781119198864 ISBN 9780470255704 Shan Tony Hua Winnie October 2006 Solution Architecting Mechanism 2006 10th IEEE International Enterprise Distributed Object Computing Conference EDOC 06 pp 23 32 doi 10 1109 EDOC 2006 54 ISBN 978 0 7695 2558 7 S2CID 8361936 Garzas Javier Piattini Mario 2005 An ontology for micro architectural design knowledge IEEE Software 22 2 28 33 doi 10 1109 MS 2005 26 S2CID 17639072 Fowler Martin September 2003 Who Needs an Architect PDF IEEE Software 20 5 doi 10 1109 MS 2003 1231144 S2CID 356506 Kazman Rick May 2003 Architecture Design Implementation PDF Software Engineering Institute Archived PDF from the original on 2015 09 21 On the distinction between architectural design and detailed design Kruchten Philippe 1995 Architectural Blueprints The 4 1 View Model of Software Architecture PDF IEEE Software 12 6 42 50 arXiv 2006 04975 doi 10 1109 52 469759 S2CID 219558624 Archived PDF from the original on 2006 06 13 Pautasso Cesare 2020 Software Architecture visual lecture notes LeanPub p 689 External linksWikimedia Commons has media related to Software architecture Wikiquote has quotations related to Software architecture Explanation on IBM Developerworks Collection of software architecture definitions at Software Engineering Institute SEI Carnegie Mellon University CMU International Association of IT Architects IASA Global formerly known as the International Association for Software Architects IASA SoftwareArchitecturePortal org website of IFIP Working Group 2 10 on Software Architecture SoftwareArchitectures com an independent resource of information on the discipline Software Architecture chapter 1 of Roy Fielding s REST dissertation When Good Architecture Goes Bad The Spiral Architecture Driven Development the SDLC based on the Spiral model aims to reduce the risks of ineffective architecture Software Architecture Real Life Case Studies