DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports Events Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones AWS Cloud
by AWS Developer Relations
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones
AWS Cloud
by AWS Developer Relations
11 Monitoring and Observability Tools for 2023
Learn more
  1. DZone
  2. Data Engineering
  3. Databases
  4. How to Design a Business Process Service Architecture

How to Design a Business Process Service Architecture

See what it takes to turn microservices into process-oriented architecture, complete with workflow management and other useful tools.

Ralph Soika user avatar by
Ralph Soika
·
Aug. 24, 16 · Opinion
Like (3)
Save
Tweet
Share
6.75K Views

Join the DZone community and get the full member experience.

Join For Free

In my last blog, I introduced the concept of a "Business Process Service Architecture — BPSA". This architectural style can be used to design a business process running in a microservice architecture, even when all services are decoupled strongly as single verticals.

microservices_verticals_bpm-03


The idea of this concept is that a separated microservice is running the "Overall-Business-Process," which is decoupled from the other verticals. This business process reflects the workflows implemented in the organisation of an enterprise. These workflows may also be often non-technical and human-centric. For example, the shipment of a product is usually performed manually, but also impacts the technical layers. So the question is: How can we coordinate our vertical service layers to align them to an "Overall-Business-Process?"

I want to explain the concept of BPSA first in a scenario where I visualize with the help of BPMN 2.0. The scenario is based on the example that I used in my first blog. The BPMN model I show here was created with the Eclipse modelling Tool Imixs-BPMN, but first of all, this model is independent of the later used workflow engine.
microservice-architecture-bpmn

(Click to enlarge)


The model shows four different workflows. One workflow for each vertical and the "Order Management" Workflow, which reflects the Overall-Business-Process. The model is kept very simple to show only the key facts of the concept.

Starting a New Process Instance

The business logic of a vertical does not happen by itself. There is typically always a triggering event that starts the business process. In our example, this is the reception of a new order. A new order can be received manually by a phone call or an email, or automatically triggered by another IT system, e.g. an online shop software. So once a new order is received, we start a new instance of the "Order Management" Process with the task "Receive Order." The BPMN event "new Order Process" immediately starts the sub-process called "Order," which is presenting the micro-workflow of our vertical 'Order Service.' The sub-process can, for example, callback the microservice to create a new order-dataset in a database.

But this is not necessary the only way to start the process. It is also possible that the Order Service will start the "Order Management" Process by itself because it's the piece of software receiving the order details. Or, for example, the external IT system could trigger both verticals — the "Order Service" and the "Order Management" Process. The important thing here is that after we received a new order we start a new Instance of the "Order Management" Process, which is triggering the other involved sub-processes.

So when we go back to the model example, now we have two new process instances — the "Order," which reflects the status of the vertical "Order Service," and the "Order Management," process which indicates the status of the general enterprise business process. Both processes are tightly coupled, which corresponds to the enterprise business process. On the other hand, the workflow service itself may be loosely coupled to the verticals, e.g. by an asynchronous reactive programming style.

Monitoring the Business Process

Once a new instance of the "Order Management" Process was started, we can now monitor the process including the status of its sub-processes. For example, a Workflow Management UI can provide the sales manager with status information about current orders. This person has typically a high-level view on the process with is reflected by the"Overall-Business-Process." But a backend monitoring system can also use the workflow service, for example, to control the load of expected records in different databases. In both cases, the workflow model can be extended with different tasks to detail the status of each process layer.

The Control of the Process

The interesting part of the example, which I illustrate here, is how the process can be controlled by a microservice. As shown in the BPMN model, each vertical has its own sub-process model. And only the vertical assigned to a specific subprocess is allowed to trigger an event inside this process. The "Workflow Service," on the other hand, controls and verifies the consistency of the business process along the BPMN model.

In our example, the "Order Service" may trigger the event "finished" of the "Order" workflow once the service has created the order-record in an order-database. This event will immediately change the status of the "Order Management" Process from "Receive Order" to "Send Invoice." As a result of this status change, a new sub-process assigned to the "Invoice Service" will be started by the "Wokflow Service."

As the order sub-process is now completed, the OrderService will no longer be able to send the "finished" event to the WorkflowService. A workflow engine will typically throw an exception when a process tries to trigger irregular events. As each vertical can also monitor its assigned sub-process, each microservice can read the model to check the internal status and possible events to be triggered. As a result, the typical business logic of a microservice to verify an internal business model can be reduced dramatically. For example, we can design each sub-process in a generic style and always provide one event for a success-case and one for an error-case.

microservice-architecture-bpmn-generic
The benefit is that we can now fully control the process by the WorkflowService and decouple the service from the business logic. On the other hand, a human actor may also be involved in the main process model. For example, a warehouseman will be informed by E-Mail from the workflow engine that he have to confirm the shipment of the product. He can manually trigger a corresponding action from the Workflow Management UI. As a result, the workflow engine may trigger another microservice.

How to Change the Process

In a productive environment, a sub-process will possibly consist of a lot of different tasks and events, which can be triggered by the assigned vertical and monitored by different actors. Also the "Order Management" Process will typically contain more events to control the process in various ways. For example, the sales manager may be able to trigger a "Cancel" event to stop the order management process. This status change would immediately affect all sub-processes which will be disallowed to send any further events to the main-process.

The advantage of this concept is that the process models can be changed during runtime, without the need to change the implementation of a single vertical. This makes the concept strong and flexible and takes care of the typical business needs of a changing enterprise — an agile organization.

Conclusion

Of course, the implementation of a Business-Process-Service-Architecture can be tricky in various details. Much of what is today typically hard-coded in the business logic of a microservice will be now transferred into a process model. For this, experiences with BPMN are also required. But the effects of BPSA can be impressive, especially when the workflow engine itself covers a lot of the business logic. For example, a human-centric workflow engine, like the open source project Imixs-Workflow, can send email messages, provide a process history, or distributes tasks to different actors to be involved in the process. Finally, the microservices become smaller and can now be indeed decoupled from each other.

Business process microservice Workflow engine Design Architecture Event Concept (generic programming) Database Business logic

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • 5 Software Developer Competencies: How To Recognize a Good Programmer
  • 3 Main Pillars in ReactJS
  • Test Design Guidelines for Your CI/CD Pipeline
  • Using GPT-3 in Our Applications

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends: