Skip to main content
Version: 12.x (Current)

Architecture migration

The standard architecture of the Fast Data is composed of two main services, the Real-Time Updater and the Single View Creator. The new event-driven architecture instead is composed by two new additions that replace the Real-Time Updater: the Projection Storer and the Single View Trigger Generator.

What's the purpose of the Projection Storer?

The Projection storer is a partial replacement for the RTU since it processes events coming from CDC systems and updates the Projection on the System of Record of choice. It is a "partial" replacement because it does not execute Strategies anymore, which means it won't create Projection Changes records.

Who executes the strategies now?

The strategy execution is now done by the Single View Trigger Generator. To know exactly how to include it in your already existing Fast Data project check out this step by step section. Furthermore, the Single View Trigger Generator introduces a whole new approach on the Projection Changes which used to be stored only on MongoDB. The SVTG gives you the option of sending the Projection Changes through Apache Kafka with a whole new format called Single View Trigger. To know more check out the comparison between the two.

How can I migrate my current architecture to the event-driven one?

The first step is to replace the Real-Time updater with the Projection Storer, you can follow step by step this guide and use our migration utility that allows you to convert you current configuration into one the Projection Storer understands.

Once the PS is ready, you have to set up the Single View Trigger service. Then again you can follow this short guide to migrate everthing easily.