Is Space-Based Pattern only for Cloud-Based services?!

Ahmad Berahman
Nerd For Tech
Published in
5 min readNov 11, 2021

--

Some days ago when I read a book for the third time (Software Architect Patterns By Mark Richards) I was faced one of the tips about Space-Based Pattern, which I had missed the point for a while. In this post, we’ll take a look at section 5 of the book, but I highly recommend reading the book as the book try to learn the basic concept of Software architect patterns and it takes you maybe a day to refresh your mind.

The first question is What is the main concept of the Space-Based Architecture pattern?

The pattern is specifically designed to address and solve scalability and concurrency issues. It is also a useful architecture pattern for applications that have variable and unpredictable concurrent user volumes.
Considering the most web-based business applications follow the same general request flow, like, a request from a browser hits the webserver, then an application server, then finally the database server. While this pattern works great for a small set of users, bottlenecks start appearing as the user load increases, first at the web-server layer, then at the application-server layer, and finally at the database-server layer. The usual response to bottlenecks based on an increase in user load is to scale out the web servers. This is relatively easy and inexpensive and sometimes works to address the bottleneck issues. However, in most cases of high user load, scaling out the web-server layer just moves the bottleneck down to the application server. Scaling application servers can be more complex and expensive than web servers and usually just moves the bottleneck down to the database server, which is even more difficult and expensive to scale. Even if you can scale the database, what you eventually end up with is a triangle-shaped topology, with the widest part of the triangle being the web servers (easiest to scale) and the smallest part being the database (hardest to scale).
So, in Space-Based Pattern one of the main ideas is promoting a solution to reduce and handle traffic on the database.

Space-based architecture pattern

How does it work?

In a nutshell, The space-based pattern minimizes the factors that limit application scaling.

High scalability is achieved by removing the central database constraint and using replicated in-memory data grids instead. Application data is kept in memory and replicated among all the active processing units. Processing units can be dynamically started up and shut down as user load increases and decreases, thereby addressing variable scalability. Because there is no central database, the database bottleneck is removed, providing near-infinite scalability within the application.

There are two primary components within this architecture pattern:

  • The processing-unit component contains the application components (or portions of the application components). This includes web-based components as well as backend business logic. The contents of the processing unit varies based on the type of application smaller web-based applications would likely be deployed into a single processing unit, whereas larger applications may split the application functionality into multiple processing units based on the functional areas of the application. The processing unit typically contains the application modules, along with an in-memory data grid and an optional asynchronous persistent store for failover. It also contains a replication engine that is used by the virtualized middleware to replicate data changes made by one processing unit to other active processing units.
  • The virtualized-middleware component handles housekeeping and communications. It contains components that control various aspects of data synchronization and request handling. Included in the virtualized middleware are the messaging grid, data grid, processing grid, and deployment manager. These components, which are described in detail in the next section, can be custom written or purchased as third-party products.

The below picture shows the typical processing unit architecture containing the application modules, in-memory data grid, optional asynchronous persistence store for failover, and the data-replication engine.

Processing-unit component

The virtualized middleware is essentially the controller for the architecture and manages requests, sessions, data replication, distributed request processing, and process-unit deployment.

Virtualized Middleware

There are four main architecture components in the virtualized middleware:

  1. Messaging Grid manages input requests and session information. When a request comes into the virtualized-middleware component, the messaging-grid component determines which active processing components are available to receive the request and forwards the request to one of those processing units. The complexity of the messaging grid can range from a simple round-robin algorithm to a more complex next-available algorithm that keeps track of which request is being processed by which processing unit.
  2. Data Grid interacts with the data-replication engine in each processing unit to manage the data replication between processing units when data updates occur. Since the messaging grid can forward a request to any of the processing units available, it is essential that each processing unit contains exactly the same data in its in-memory data grid.
  3. Processing Grid is an optional component within the virtualized middleware that manages distributed request processing when there are multiple processing units, each handling a portion of the application. If a request comes in that requires coordination between processing unit types (e.g., an order processing unit and a customer processing unit), it is the processing grid that mediates and orchestrates the request between those two processing units.
  4. Deployment manager manages the dynamic startup and shutdown of processing units based on load conditions. This component continually monitors response times and user loads and starts up new processing units when load increases and shuts down processing units when the load decreases. It is a critical component to achieving variable scalability needs within an application.

And coming back to the first Question Is Space-Based Pattern only for Cloud-Based services?!

It is important to note that while the alternative name of this pattern is the cloud-based architecture, the processing units (as well as the virtualized middleware) do not have to reside on cloud-based hosted services or PaaS. It can just as easily reside on local servers, which is one of the reasons that we can call “Space-Based Architecture”.

--

--