Changes for page Multi-Model Best Practice

Last modified by Erik Bakker on 2024/08/08 11:58

From version 4.1
edited by Carlijn Kokkeler
on 2022/11/03 09:59
Change comment: There is no comment for this version
To version 7.1
edited by eMagiz
on 2022/11/07 13:00
Change comment: There is no comment for this version

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.CarlijnKokkeler
1 +XWiki.eMagiz
Content
... ... @@ -6,18 +6,17 @@
6 6  == 1. Prerequisites ==
7 7  
8 8  * Some context on the eMagiz multi-model environment and integration patterns will be useful:
9 -* [[eMagiz Multi-model>>doc:Main.eMagiz Academy.Fundamentals.eMagiz Multi-model.WebHome||target="blank"]]
10 -* [[eMagiz Event Streaming>>doc:Main.eMagiz Academy.Fundamentals.fundamental-event-streaming-introduction.WebHome||target="blank"]]
11 -* [[eMagiz API Gateway>>doc:Main.eMagiz Academy.Fundamentals.fundamental-api-gateway-introduction.WebHome||target="blank"]]
12 -* [[eMagiz Messaging>>doc:Main.eMagiz Academy.Fundamentals.fundamental-messaging-introduction.WebHome||target="blank"]]
9 +* Fundamental [[eMagiz Multi-model>>doc:Main.eMagiz Academy.Fundamentals.eMagiz Multi-model.WebHome||target="blank"]]
10 +* Fundamental [[eMagiz Event Streaming>>doc:Main.eMagiz Academy.Fundamentals.fundamental-event-streaming-introduction.WebHome||target="blank"]]
11 +* Fundamental [[eMagiz API Gateway>>doc:Main.eMagiz Academy.Fundamentals.fundamental-api-gateway-introduction.WebHome||target="blank"]]
12 +* Fundamental [[eMagiz Messaging>>doc:Main.eMagiz Academy.Fundamentals.fundamental-messaging-introduction.WebHome||target="blank"]]
13 13  
14 14  == 2. Key concepts ==
15 15  
16 -* Event streaming and webervices are mainly used to communicate between systems across models.
17 -* To allow communication between systems in different models using event streaming, it is needed to transform topics.
18 -* Communication between systems in different models can also directly be achieved using web services.
19 -* For clarity purposes, it is advised to give the systems that are the same across models the same name, as well as the name of the other model in which the system is present.
16 +* Model - the integration model of a client that runs on a specific cloud slot of eMagiz
17 +* Multi-model - several integration models of a single client
20 20  
19 +
21 21  == 3. Main multi-model integration patterns ==
22 22  
23 23  At the moment, there are two most frequently used ways to provide communication between systems in a multi-model environment. These concern event streaming and webservices. The processes of sharing data across systems in a multi-model environment using these concepts will be discussed in this microlearning, including best practices.
... ... @@ -27,8 +27,12 @@
27 27  
28 28  === 3.1 Event streaming ===
29 29  
30 -To understand the following section, it is necessary to have some background information about event streaming, which can be found [[here>>doc:Main.eMagiz Academy.Fundamentals.fundamental-event-streaming-introduction.WebHome||target="blank"]].
31 -To allow communication between systems in different models using event streaming, it is needed to transform topics. The reason for this, is that it is not possible to retrieve data from a topic existent in one model through a different model. So, the topic present in model A cannot be immediately accessed by systems present in model B. To ensure that systems in model B can use the data on the topic in model A, the topic needs to be transformed. By transforming the topic, all systems in model B can access the transformed topic.
29 +To understand the following section, it is necessary to have some background information about event streaming, which can be found [[here>>doc:Main.eMagiz Academy.Fundamentals.fundamental-event-streaming-introduction.WebHome||target="blank"]].
30 +The first option is to decide the alignment of the data models between both models. Whenever data from the first model is transferred to the second model, and the topic is considered input for other systems and integrations in that other model, the data needs to be transformed to the common data model of that second model. THis way, the topic can be exposed to any system and any pattern in the second model. The picture below denotes this situation. These are the specific considerations when implementing this approach:
31 + 1. Leverage the credentials of the first eMagiz model in the second model
32 + 2. Create clear systems with clear names and ensure to align the message type names
33 +
34 + To allow communication between systems in different models using event streaming, it is needed to transform topics. The reason for this, is that it is not possible to retrieve data from a topic existent in one model through a different model. So, the topic present in model A cannot be immediately accessed by systems present in model B. To ensure that systems in model B can use the data on the topic in model A, the topic needs to be transformed. By transforming the topic, all systems in model B can access the transformed topic.
32 32  To ensure that the topic from model A can be transformed, model B needs credentials from model A. So, to allow for this pattern, credentials have to be shared between models.
33 33  An advantage of this pattern is that there is no dependency across models. If the system in model A breaks down, the system in model B can still work. A disadvantage of this pattern is that there may be struggles with the setup, since no direct accessibility can be achieved. Moreover, as mentioned above, credentials have to be shared, which may be a threat to the security.
34 34