Architectural Analysis  «Prev  Next»
Lesson 2 system partitioning the analysis model
Objective Purpose of system partitioning and identify two types of system partitioning.

System Partitioning the Analysis Model

Purpose of System Partitioning

The purpose of system partitioning is to separate the different types of problems that you will need to address in order to create a successful software system. In this course you will learn two very different types of system partitioning that separate the software issues using two distinct criteria:
  1. the client's functional requirements and
  2. the application of technology.
Domain partitioning identifies the features that the users expect the system to provide. Technological partitioning divides the system according to the technologies that will best support the implementation of the software.

Systems Analysis Design
Apply, Filter, Sort
Technological system partitioning

Domain Partitioning

To partition the domain means to identify the different types of functions that the system must support. Functions should be grouped using the principles of cohesion and coupling so that related functions appear together. These functions are defined in the use case model. The resulting groups should each provide all of the data resources from the class and interaction diagrams that the users will need to successfully complete a reasonable unit of work. You can probably tell from this description that the process is somewhat subjective. However, as you learn the process, you will also learn techniques to measure the quality of the groupings more objectively.

Technological Partitioning

Technological partitioning identifies and separates the different software responsibilities. Each partition will typically address one type of technological functionality, such as
  1. user interface design,
  2. application logic,
  3. transaction management, and
  4. data access.
In turn, the nature of each type of technological functionality will usually imply a different type of programming and the use of different technologies. For example, data access implies the ability to communicate with files or databases. User interface design implies graphical interface elements and event management.