Changes for page Create Synchronous Messaging
Last modified by Danniar Firdausy on 2023/08/11 11:14
From version 10.2
edited by Danniar Firdausy
on 2023/08/09 15:13
on 2023/08/09 15:13
Change comment:
Update document after refactoring.
To version 10.3
edited by Danniar Firdausy
on 2023/08/09 15:41
on 2023/08/09 15:41
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,81 +1,27 @@ 1 1 {{container}} 2 2 {{container layoutStyle="columns"}} 3 3 ((( 4 -In this microlearning, we willexplainthebasics of the synchronous messaging pattern.4 +In this exercise, we will guide create a simple synchronous messaging pattern based on the previous microlearnings. 5 5 6 6 Should you have any questions, please get in touch with [[academy@emagiz.com>>mailto:academy@emagiz.com]]. 7 7 8 8 == 1. Prerequisites == 9 9 10 -* Intermediateknowledgeof theeMagiz platform10 +* Completed the previous microlearnings of this intermediate course. 11 11 12 -== 2. Keyconcepts ==12 +== 2. Exercise == 13 13 14 - Thismicrolearningcenters around the synchronous messaging pattern in eMagiz.14 +Below, the exercise for this part of the intermediate course, which centers around the synchronous messaging pattern in eMagiz, is given. 15 15 By synchronous, we mean The process that processes data and subsequently informs the caller what the status is. 16 16 17 -Key characteristics of synchronous messaging are: 17 +=== 2.1. Creating Synchronous Messaging === 18 + 19 +== 3. Solution == 18 18 19 -* Blocking. The sender initiates the process and waits for a response before continuing with the following message 20 -* Systems depend on the responses of other systems for their function 21 -* Messages have a time limit. The response needs to be back within 25 seconds (eMagiz default) 22 -* Uses a request-response structure that talks to one system at a time 21 +... 23 23 24 -= =3.MessagingSynchronous ==23 +{{video attachment="Exercises - Intermediate - Key Concepts eMagiz Messaging [Create].mp4" reference="Main.Videos.Microlearning.WebHome"/}} 25 25 26 -Synchronous messaging is the less used, the less advised option when implementing a messaging integration via eMagiz. In case you want to learn more about asynchronous messaging, please check out this [microlearning](crashcourse-messaging-messaging-asynchronous.md) 27 27 28 -Key characteristics of synchronous messaging are: 29 - 30 -* Blocking. The sender initiates the process and waits for a response before continuing with the following message 31 -* Systems depend on the responses of other systems for their function 32 -* Messages have a time limit. The response needs to be back within 25 seconds (eMagiz default) 33 -* Uses a request-response structure that talks to one system at a time 34 - 35 -With this method, the sending party supplies the data to eMagiz via a push mechanism. eMagiz, in turn, places the data on a queue (in most cases an onramp queue). The subsequent process (the onramp) will process the message and will put the message on the next queue (the synchronous routing). That process will route each message to the correct offramp. This process continues until the message eMagiz delivers to the external system. At that point, eMagiz will wait for a response. If that response is received, the message will travel back to the starting point to deliver the reaction to the caller. If something goes wrong, for example, a timeout, the error message is also given back to the caller, and eMagiz will log the exception. If you want to learn more on that, please check out this [[microlearning>>doc:Main.eMagiz Academy.Microlearnings.Intermediate Level.Understanding Error Handling.intermediate-understanding-error-handling-in-emagiz-messaging-synchronous||target="blank"]]. 36 - 37 -[[image:Main.Images.Microlearning.WebHome@intermediate-key-concepts-emagiz-messaging-messaging-synchronous--concept.png]] 38 - 39 -Note that this means that when one message is currently being processed, all other messages have to patiently wait until the message is processed as we speak delivered back to the caller. As there is a time constraint on the messages (25 seconds as eMagiz default), you can see why this option is less suitable within the messaging engine. The most pain is felt in the routing. Just as with asynchronous routing, the synchronous routing processes all synchronous messages that pass through your messaging engine. As a result, this means that when one synchronous process is busy, it can even hold up other synchronous processes. The API Gateway pattern is a more suitable alternative for handling the request-response pattern via an integration platform such as eMagiz. If you want to learn more on that, please check out the [[crashcourse>>doc:Main.eMagiz Academy.Microlearnings.Crash Course.Crash Course API Gateway.WebHome||target="blank"]]. 40 - 41 -Another aspect of the synchronous messaging pattern to consider is that the system from which you want to retrieve data (or push data to) based on the request made by the caller needs to be online. If it is not online, eMagiz won't receive a response, and the caller cannot continue their work. This fact creates a dependency between systems that could reduce the perceived reliability of your integration solution. With asynchronous messaging, you could take measures to mitigate these risks, such as a retry mechanism. 42 - 43 -A third aspect to consider is whether you can set a generic point of entry through which all clients can communicate via eMagiz to many other systems. In those cases, you could look at the API Gateway solution as an alternative to synchronous messaging, as it comes with several benefits. More on the basics of the API Gateway can be found in this [[crashcourse>>doc:Main.eMagiz Academy.Microlearnings.Crash Course.Crash Course API Gateway.WebHome||target="blank"]]. 44 - 45 -=== 3.1 Practical use case === 46 - 47 -A practical use case in which you would most likely want to handle your integration synchronously is the following use case: 48 - 49 -Imagine you want to order something at a webshop. After you have selected the product(s), you want to open the payment process to pay. Upon payment, you also need to supply the relevant address information, so the webshop knows where to deliver the product. In doing so, you often see that when you provide your postal code (and house number), the system will automatically fill in the remainder of your address information. This functionality is there for two reasons. Your convenience and because the webshop needs this information to deliver the product you paid for correctly. If the webshop does not know where to deliver the product, the webshop cannot complete the order process. As a result, the webshop needs to send out a request that will promptly be followed by a response (a synchronous call). 50 - 51 -Even in this scenario, most web shops give the user the option to manually fill in the remainder of the information as they know that even when the call fails, the user still needs a way to continue. So in a sense, the webshop has taken the responsibility of handling success and failure responses. 52 - 53 -=== 3.2 Asynchronous vs Synchronous === 54 - 55 -The decision to handle an integration process in a specific manner depends on various relevant business and technical checks and balances that should be answered before choosing which integration pattern to choose and then subsequently which alternative method within an integration pattern to choose. If you want more information on how to decide this correctly, please check out this [[microlearning>>doc:Main.eMagiz Academy.Microlearnings.Intermediate Level.Discover your integration landscape.intermediate-discover-your-integration-landscape-determining-integration-pattern||target="blank"]]. 56 - 57 -== 4. Assignment == 58 - 59 -Analyze a synchronous messaging flow from entry to exit and learn what happens within this process. 60 -This assignment can be completed with the help of your (Academy) project you have created/used in the previous assignment. 61 - 62 -== 5. Key takeaways == 63 - 64 -* Synchronous messaging is the less used, the less advised option when implementing a messaging integration via eMagiz 65 -* Key characteristics of synchronous messaging are: 66 - ** Blocking. The sender initiates the process and waits for a response before continuing with the following message 67 - ** Systems depend on the responses of other systems for their function 68 - ** Messages have a time limit. The response needs to be back within 25 seconds (eMagiz default) 69 - ** Uses a request-response structure that talks to one system at a time 70 -* Using the API Gateway pattern can be a valid alternative when dealing with a synchronous integration demand. 71 - 72 -== 6. Suggested Additional Readings == 73 - 74 -If you are interested in this topic and want more information, please read the help text provided by eMagiz. 75 - 76 -== 7. Silent demonstration video == 77 - 78 -As this is a more theoretical microlearning, we have no video for this.))) 79 - 80 80 ((({{toc/}}))){{/container}} 81 81 {{/container}}