Skip to content
This repository has been archived by the owner on Apr 27, 2023. It is now read-only.

Latest commit

 

History

History
20 lines (13 loc) · 1.62 KB

architecture-overview.md

File metadata and controls

20 lines (13 loc) · 1.62 KB

Architecture

The architecture is a standard microservices based architecture which is explained throughout this book. Below is diagram that shows the salient features, these are:

  • Separation of the domain from the supporting services
    • The "domain" being publishing, currently only the bounded context of "Submission" is being implemented.
  • Supporting Services
    • Event bus, this has the responsibility for handling messages between various components in the system. It has been written using abstract interfaces so that support can be added for other implementations. Currently, only RabbitMQ has been implemented.
    • Config Service, TBD - The responsibility is to handle the configuration and communication within the system.
    • People Service, TBD - The responsibility is manage users and roles within the system.
    • Audit Service, this has the responsibility for listening for any domain events events and logging them within the database. Examples of such events are: logging in, uploading or submitting a manuscript, etc.
    • Export Event Handler, TBD - The responsibility is to determine which type of export is required and routing the correct message to the correct export handler such as the "Meca Exporter"
    • Storage Service, TBD - The responsibility is to handle all files within the system.

Libero Reviewer - Architectural Overview

Link to Diagram Source