Our Blog

Blogward

August 9, 2022

4

min. read

Making Logistics Software Design Decisions with Microservices

With this article, focused on engineering, we want to provide insights into the high-level design choices that we face every day while building our supply chain software.


Architecture  

Just as any physical structure would, software systems require architecture. Logward uses like many modern software systems a microservice architecture. In essence, this means that we break our system down into smaller independent and interchangeable modules/services. These modules/services are typically made up of independent code, stored separately from other services, which communicate through APIs.


This structure is as opposed to monolithic architecture, which is typically a single cohesive code base stored in the same place, with interconnected and interdependent components.  

 

For us choosing the right software architecture was easy due to the clear benefits of a microservices approach. These include improved flexibility and agility, increased speed of development, less risk, and greater scalability. Unlike most monolithic systems, Logward’s systems can function even if some services are non-functional, which not only reduce the risk of system failure, but improves the ability to easily add and remove features as they are in development or during updates. It also enables us to focus on core components while relying on 3rd party apps for certain features. For example, we rely on another company for AIS data from satellites, connecting to them through an API. In the future, if we decided to launch our own satellite fleet (doubtful!), we could simply remove the API connection without affecting the rest of our software. The same is true if we wanted to change providers for a certain service, such as accounting software.  

 

Lastly, from a management perspective it means that you can easily create smaller, independent working groups for development, as it reduces the complexity of decision-making and its impact, thereby removing the need for each engineer to know the whole system through and through.   

 

We could keep going, but let’s move on. In the meantime, a good technical read on the topic can be found at microservices.io.  (Ref.)  


When we started designing Logward’s architecture, we identified all the initial components we would need to build it and we realised that there was much more to consider than simply choosing microservice architecture. The following are the main concepts we seek to address when making decisions.

  1. Synchronous v/s Asynchronous
  2. Complex Event Processing
  3. Loose coupling v/s Tight coupling
  4. Stateful v/s Stateless

1. Synchronous (sync) v/s Asynchronous (async)


Choosing between a synchronous versus asynchronous approach is one of the most fundamental design decisions in computer architecture, especially for microservices architecture, which requires communication between systems.


Rather than give you a definition, we'll give you an example. Let's say an OMS (Order management system) needs to communicate a transport request to a TMS (Transport management system).

Sync / Blocking

In the case of a sync approach, the OMS would call the TMS with shipment details and wait until the shipment gets created successfully before performing further actions.


This helps us in transaction rollbacks or in handling errors. If shipment creation fails, further actions will not be executed, therefore avoiding having to do even more error correction. This adds direct dependency on uptime as well as response times.

TMS shipment details graphic
Fig: Explaining the synchronous calls

Async / Non blocking

When designed using the async approach, the OMS spawns a thread for shipment creation in the TMS and proceeds to further steps, potentially simultaneously. This is also known as non-blocking, and removes the dependency on uptime and response times. However, the potential problem with this approach is the missing rollback in case of failure on shipment validation.

TMS shipment details graphic
Fig: Explaining async calls


This is why it is common practice in the industry to keep the validation synchronous and the creation asynchronous.

TMS shipment details graphic
Fig: Explaining an industry use case - a hybrid approach

2. Complex event processing

One of the key challenges of any software program, including Logward, is handling complex event processing. In other words, ensuring that the cascading effects of events from one microservice are acknowledged by all microservices.

A  real-life (software is real too…) example would be a sales team (a stand-in for a microservice) closing a deal for which production capacity has to go up. Planning begins, but in the process, someone forgets to inform the procurement team (another microservice) and the whole expansion plan is at risk.

 

sales order diagram
Fig: Explaining a complex event processing

Similarly, in any software system it is critical that each microservice keeps the others updated on relevant information. Yet, how to coordinate this?  


Coordination design solutions usually center around either an orchestration or choreography approach, although in some cases a mix of both is possible.

 

a. Choreography (aka Mesh architecture)  

Choreography refers to a setup in which all the services can talk to each other, and for any given process an owner service is defined which triggers the event. Each service needs to be aware of the other service’s response type and domain. Adapters need to be written in the respective language in order for the APIs to function for both incoming and outgoing messages.


This means in most cases you end up writing client and domain libraries for each of the microservices, as well as ensure versioning and language compatibility.

microservices diagram
Fig: Illustration of a system using Choreography

An example use case for a software system might be placing a booking. The user enters the necessary information into our user interface, which triggers a process.


If we’ve done our job right, the system identifies that the owner for this process is the Booking Service. In turn the booking service shares information with the schedules service, rates service, carrier service, workflow service, and so-on. In the case of a transaction failing, for example no rates found, the rates service will know to return a message to the scheduling service instructing it to send a message to the booking service, which results in the user being informed.

 

In our real-life example of a big sale, perhaps a capacity increase event is always owned by the Production team. Once the Sales department records the sale, the Production team receives the information and begins the process by communicating with the HR department, which in turn reaches out to Finance. Each department knows by which telephone/email to reach-out, and will provide feedback once information is available. Finance will tell HR what the budget can be, HR will hire accordingly, and tell Productions what the new staffing arrangement will be.

b. Orchestration Architecture  

In orchestration architecture, there is a centralized composite service which triggers and connects the necessary services. Unlike in choreography, the individual services do not communicate between each other, but only with the orchestrator. The advantage here is that the microservices can continue performing their basic functions. Much like in the name, imagine a musical orchestra, rather than the violinists looking to the cellists for cues, they all watch the conductor giving instructions.  

choreography diagram
Fig: Illustration of a system using Orchestration


Returning to our booking example, after the booking process is started by a user in the customer interface the information is received by the Orchestrator, which then simultaneously contacts the various services, including the schedules, rates, carrier, and workflow services, gathering the necessary data. Once completed, the orchestrator then sends the information to the booking service.


The biggest advantage here is that the orchestrator doesn't need to understand the domain and each microservice can be composed of different technology, meaning that it is noit necessary to keep exchanging libraries between microservices.


One of the key disadvantages to this approach is the difficulty of handling transaction rollback. Unlike the choreography setup, the rates service will not necessarily know whether or not the carriers service was executed properly. It increases coupling (which we will discuss below) and the orchestrator becomes the single point of failure. It also increases the response time since each of the calls to the microservices are sync/blocking.


For our real-life capacity expansion example, the orchestrator  might be the Management team, who takes the lead on communicating with the necessary departments and sticking to goals and deadlines.


The example below shows how getting enriched booking information from multiple microservices works.

shipping booking details graphic
Fig: Use case of orchestration to get booking details

c. A hybrid model  

In this model, the service which owns the event triggers the orchestrator, which proceeds to handle communication with the other microservices. At Logward we use a mix of both, e.g. the booking service triggers an event which is consumed and orchestrated to the Allocation, Scheduler and Payment services.

shipping booking details graphic
Fig: Explaining the hybrid model of orchestration and choreography

3. Loose-coupling versus Tight-coupling


Another important aspect of microservices architecture is determining how closely you want to couple. Loose coupling  refers to mostly independent services that are not affected by and do not need to be informed about other services, whereas tight coupling  means that one service is affected by changes in others.  


The tighter the coupling, the more dependency, and therefore the greater the impact of one issue or error affecting the rest of the application. It also requires more integration points, as a single service/module requires connections with many others.  


Coupling is a very broad term and is subject to interpretation. In the example below, we take a product on the Cart of an e-commerce website, to go through the entire flow until its underlying TMS.


flow of information graphic
Fig: Flow of information


When you want to generate an invoice, you contact multiple microservices to gather information. One is in an orchestrated fashion, and the other is through choreography. In both  cases, the invoice generation is dependent on all the microservices to be up and running.  

invoice generation orchestration
Fig: "Generate an invoice" use case in tightly coupled systems example with orchestration

getinvoice graphic
Fig: "Generate an invoice" use case in tightly coupled systems example in mesh architecture


A loosely coupled system has microservices, or sub-systems, which are not dependent on each other for their functionality. A common example would be placing an order on an e-commerce site and getting an email notification. The order is processed irrespective of whether the email service works or not.

e-commerce store work flow and system
Fig: Loosely coupled services


The advantages of such a setup will be:  

  • You can clearly segregate tier-1, tier-2, etc services, e.g. your email services is not as important as your order management service.  
  • You can integrate multiple clients to your services, e.g. you have a transport management system (TMS), order management system (OMS), inventory system, etc.

In the diagram below, you can see the information is passed on to a different microservice at the time of creation. This localizes the way the information is used in the system.  If you have to generate an invoice, you only call OMS and it fetches all the data from the DB.  

This removes all kind of dependencies from other systems.

OMS graphic
Fig: "Generate an invoice" use case in loosely coupled system


Perhaps the biggest disadvantage is keeping the data in sync with the downstream systems. However, in most cases like this example, the information is stateful which we'll explain below.

4. Stateful v/s Stateless systems


Finally, it’s important to note the distinction between stateful and stateless systems. Although it sounds like a term from political science, in software architecture it essentially means whether a service stores persistent data or not. 


In case of stateless systems, the value of the output depends only on the value of the input, at any point of time. In other words, the stateless system typically maintains data necessary to perform its function, but does not store historical data or maintain and update ongoing requests, such as an e-commerce cart you can return to.


currency conversion graphic

A typical example of a stateless service would be a currency converter. Currency data flows in and is converted using the current exchange rates, and it is returned/sent to another service. There are no states associated or stored, and oftentimes only the current exchange rates are referenced.

However, in case of stateful systems, the output is dependent on the input as well as an internal state of the system, since it has some transactional data stored within it. Typical examples of stateful systems might include a Session management service, Cart management service, Payment service,  or a Workflow service. Due to its function, the service is required to maintain and update the state as needed.

 

To make it even more tangible, let’s say you need to build an order/shipment management system, something many supply chain software systems including Logward would have.  

When you capture an order from a user, you store this in the order management system. We decouple stateful and stateless behavior of the order into two separate systems.  


a. Mostly Stateless

An order store service maintains order information for showing and updating order related data. It doesn't need to have the business state of the booking and hence we can call it mostly stateless.

booking service graphic
Fig: Getting standard information from booking


b. Stateful

A workflow service manages the status of the order from order placement to order completion and therefore it requires both order related data and business status.

booking process graphic
Fig: Different states of a booking


Conclusion


While this is by no means a comprehensive discussion of what one must consider when building software such as Logward, it does give insight into some of the key components.


Perhaps just as important as the technical aspects is building a team that can learn and adapt over time. Because in the end software engineering is a never-ending process, with some design flaws being noticed initially and others taking longer to be recognized. By having fluid and open communication within the engineering team, we increase our chances of continuously improving our product.


References:

  1. https://microservices.io/, https://martinfowler.com/articles/microservices.html

Logward is a Hamburg & Bangalore based logistics technology company.

We build software, move containers, and change mindsets.

If you have any questions or just want to say hi, reach out to mail@logward.com. Or you can book time with one of our logistics experts here.

Any questions?
Reach out to us, and we'll get back to you shortly.

No-code customization for your supply chain.

CONTACT US