TheKataLog / Flexibility-Fertilisers

2023 Autumn (external) 3rd place winners, O'Reilly Software Architecture Kata

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

484950_Katas_Place_Badge_Third (002)

Road Warrior by Flexibility Fertilizers

Link to recording - https://vimeo.com/868085561

Table of Contents

  1. Requirements

  2. System Overview

  3. Architectural Characteristics

  4. Workflows

  5. Chosen Architecture

  6. Zooming In

  7. Critical Infrastructure

  8. Next Steps

  9. ADRs

Requirements

The architecture outlined below is based on this document. This document includes:

  • the business case and problem statement
  • assumptions and non-functional requirements
  • a list of user stories for the 3 primary actors
  • high level context scenarios

System Overview

The below gives a high level view of the various systems and personas involved in interacting with Road Warrior image

Architectural Characteristics

Following the requirements and additional context, we assessed different architectural characteristics that are of main concern to the Road Warrior architecture.

Characteristic Notes
Availability The system has strict downtime requirements of a maximum of 5 minutes a month. This is especially important for parts of the system that handle adding or updating travel details.
Reliability The system must reliably accept travel updates from external travel agents and notify the user. Missing updates could impact the user's travel experience and have negative effects on user retention.
Elasticity Travel suffers from disruption in which case the system becomes even more important to its users wanting to keep on top of travel updates. In these instances, a surge in demand is expected and the system needs to be able to handle this gracefully and without impact to performance.
Extensibility The system integrates with various 3rd party travel and booking systems. Evolving with existing interfaces and adding new ones will be crucial to providing users the best possible set of details about their trips.

The following are characteristics that where considered relevant to the application but can be addressed through design and common practice.

Characteristic Notes
Installability The system is accessible through a mobile app and website. To reach as many users as possible the app should be easy to install. This is well supported through different Application stores already.
Privacy The system handles peoples' travel information which is personal and sensitive data. Identifiable data must therefore be kept private while an anonymized version must be accessible for data analytics.
Archivability The business model includes income to be derived from analytics run on user data. To make this successful, data needs to be retained and available to use for report creation.

Workflows

To identify the main components of the Road Warrior system, we looked at some of the main workflows it needs to support. Key roles that interact in these workflows are:

  • User - The traveler interacting with the mobile or web app. They are interested in recording their bookings and keeping on top of their trips, before or during their travels.
  • Travel systems - A rich set of API Interfaces to external travel agencies and booking systems. These external systems host further details linked to booking codes. They are also aware of updates made to bookings as well as changes to itineraries caused by, for example, travel disruptions.
  • Social Media - External systems allowing a user to connect to others and share their travel itineraries with them.

Workflowsv2

From the workflows we identified the following components that we wanted to explore further. We may discover the need for more as we investigate how they fit together and learn more about the use cases.

  • Booking system - Handles users bookings and trips
  • Travel system - Handles the communication with the various external travel and booking systems
  • Email system - Entry point for User emails
  • User system - Handles user related information
  • Data analytics system - Handles processing of any user and travel data for data analytics

Chosen architecture

Based on the identified characteristics and workflows RoadWarrior will adopt a microservice architecture in combination with event-driven when asynchronous communication is required (See ADR). By keeping services of our system discrete we can make our system tolerant to faults and spikes in traffic. For example, a service-oriented architecture may have multiple containers communicate with the same database. If one container's traffic spikes it could potentially bring that database down for other containers. Whereas a microservice architecture allows each container to function fully independently of other containers.

This is important to RoadWarrior because the system will have times of increased load and we will want to ensure some parts of the system, like alerting, are kept operational.

Care should be taken to ensure that a disproportionate amount of traffic does not go through one container. This would indicate a single point of failure and such containers may need broken up to distribute traffic. This increases our elasticity and fault tolerance.

Zooming into Road Warrior

image

This diagram shows the interactions of the various parts of the Road Warrior system at a high level. It indicates the flow through the Road Warrior application rather than define the individual containers which are explored individually below:

  1. Booking system
  2. Alerting
  3. Data analytics
  4. Email
  5. Travel system API
  6. Social media
  7. Users

The sequence diagrams in the documents show the path through the system and also whether the request can be considered synchronous or asynchronous. It is expected that the sequence diagrams will be more ephemeral than the container diagrams. As the system is implemented and interactions are explored further they will be expanded and modified.

Critical Infrastructure

We identified that availability, reliability and elasticity are specifically important to the alert system, travel system API and booking system (See ADR). By ensuring these systems are design to withstand surges, users will be able to received notifications even during times of travel disruptions.

Other parts of the system such as the data analytics and social media integrations are not vital for keeping users up-to-date with ongoing travel issues.

The database technology that will be chosen needs to lend itself to horizontal scaling and distribution, as we require the data to be held in multiple data nodes.

Next Steps

Part of a Software Architect's job is to solve a current problem by leveraging prior knowledge and experience. The world of software and software products however is ever changing and the main thing we can predict is that there will be unknowns along the way.

With that in mind, the other part of a Software Architect's role is to maintain a roadmap of milestones that balance cost, effort and feedback about the system.

While we have tried to keep the scope of the various systems quite narrow, there are a lot of requirements to cover that span a broad spectrum of technologies and engineering practices. There is a lot of front-end work, asynchronous events to handle, email protocols, data analytics concepts etc.

Instead of trying to build everything before making the system available, our recommendation would be to run a series of prototypes or perhaps a public alpha version that will help with getting real world feedback. This way we can measure if our predictions of architectural characteristics and business cases are correct without spending several months or years of development.

A simplified version of Road Warrior can be tried out by internal staff or perhaps a select group of volunteers to get a sense of what is important during inputting trips and while traveling.

ADRs

About

2023 Autumn (external) 3rd place winners, O'Reilly Software Architecture Kata