Changes for page Messaging Synchronous
Last modified by Danniar Firdausy on 2024/09/16 13:37
From version 3.2
edited by Erik Bakker
on 2022/08/23 09:57
on 2022/08/23 09:57
Change comment:
Update document after refactoring.
To version 4.1
edited by Erik Bakker
on 2022/08/23 10:02
on 2022/08/23 10:02
Change comment:
There is no comment for this version
Summary
-
Page properties (2 modified, 0 added, 0 removed)
Details
- Page properties
-
- Title
-
... ... @@ -1,1 +1,1 @@ 1 - intermediate-key-concepts-emagiz-messaging-messaging-synchronous1 +Messaging Synchronous - Content
-
... ... @@ -1,7 +1,7 @@ 1 1 {{container}} 2 2 {{container layoutStyle="columns"}} 3 3 ((( 4 -In this microlearning, we will expl ore whatthefunctionof theentry iswithin themessage engine.Furthermore, we will explain whythere isno entry queue.4 +In this microlearning, we will explain the basics of the synchronous messaging pattern. 5 5 6 6 Should you have any questions, please get in touch with [[academy@emagiz.com>>mailto:academy@emagiz.com]]. 7 7 ... ... @@ -14,46 +14,37 @@ 14 14 15 15 == 2. Key concepts == 16 16 17 -This microlearning centers on the concept of entry, not a queue. 17 +This microlearning centers around the synchronous messaging pattern in eMagiz. 18 +By synchronous, we mean The process that processes data and subsequently informs the caller what the status is. 18 18 19 -* The key aspects are: 20 - * Entry is the starting point of the integration process in messaging 21 - * Queues are an internal resource of eMagiz 22 - * Outside parties are not allowed to write on eMagiz queues directly 23 - * eMagiz facilitates various connectivity methods (i.e., REST, SOAP, Database, File) 20 +Key characteristics of synchronous messaging are: 24 24 22 +* Blocking. The sender initiates the process and waits for a response before continuing with the following message 23 +* Systems depend on the responses of other systems for their function 24 +* Messages have a time limit. The response needs to be back within 25 seconds (eMagiz default) 25 +* Uses a request-response structure that talks to one system at a time 25 25 27 +== 3. Messaging Synchronous == 26 26 27 - ==3.Entry,not aqueue==29 +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) 28 28 29 - Inthis microlearning, we will explore whatthefunctionofthe entry iswithin themessage engine.Furthermore, we will explain why thereis no entry queue.31 +Key characteristics of synchronous messaging are: 30 30 31 -* The key aspects are: 32 - * Entry is the starting point of the integration process in messaging 33 - * Queues are an internal resource of eMagiz 34 - * Outside parties are not allowed to write on eMagiz queues directly 35 - * eMagiz facilitates various connectivity methods (i.e., REST, SOAP, Database, File) 33 +- Blocking. The sender initiates the process and waits for a response before continuing with the following message 34 +- Systems depend on the responses of other systems for their function 35 +- Messages have a time limit. The response needs to be back within 25 seconds (eMagiz default) 36 +- Uses a request-response structure that talks to one system at a time 36 36 37 - Asyou learnedfromthe introductorycourse onmessaging,weuseafive-layerapproachtohandle datawithinthe messagingengine. Thefirstlayer thedata encountersis the entry.Thegoaloftheentryistwofold.One is to establishaconnectionwith anexternal system.The otheristo place dataona queue. Therearetwowaystoestablishconnectivity.Thefirstmethod is viaa pull mechanism.Thispull mechanism meansthateMagizwillinitiate thecommunication toretrievedata. Thesecondmethodisapushmechanism.This push mechanismmeans thateMagiz will patiently wait tilltheexternalsystemffersdataoeMagiz.Thepush mechanismwill typically berealizedwith thehelpofahostedweb service(RESTorSOAP) withinyoureMagizolution.38 +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.WebHome||target="blank"]] 38 38 39 - Since the goal of theentryis connectivity between the external systemndeMagiz, youcouldarguethat it wouldbe easy toletthemplacethedata on thequeue. However, things arenotthat easy. Thereareeveral reasonswhythis isnot a best practice:40 +[[image:Main.Images.Microlearning.WebHome@intermediate-key-concepts-emagiz-messaging-messaging-synchronous--concept.png]] 40 40 41 -* This would mean that the external system directly needs to connect to the infra layer (the JMS) and will have the option to read and write on other queues as well 42 -* This would mean that the external system can only push data to eMagiz (so no polling of data) 43 -* This would mean that the external system can directly place data on a queue 44 -* This would create a tightly coupled dependency between the external system and eMagiz 42 +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"]]. 45 45 46 - The aboveargumentsconcludedthat the connectivitybetweeneMagizandtheexternalsystemand theinternalqueuemechanismofeMagizshould beconsidered twoseparatethings.Thisconclusiondidraise aquestionon howeMagizcanguaranteemessage delivery. Themessagingengineusesqueues to ensuremessagedelivery.Butwhat ifthefirstqueue(theonramp queue)cannotbe reached?Whathappensthen.44 +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. 47 47 48 - TheH2 databaseis introducedto safeguardagainstany problemswithintheentry.Thiscomponentisgeneratedineveryentryin eMagiz.ThisH2 database willtemporarily storedataandact asabridgebetween theentryandtheonrampqueue.Thisway,eMagizcanguaranteemessage delivery.Ifyouwantto learnmoreaboutthefunctionof theH2database, pleasecheckoutthis [microlearning](intermediate-solution-architecture-function-of-h2-database.md).46 +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"]]. 49 49 50 -To summarize: 51 - 52 -* Entry is the starting point of the integration process in messaging 53 -* Queues are an internal resource of eMagiz 54 -* Outside parties are not allowed to write on eMagiz queues directly 55 -* eMagiz facilitates various connectivity methods (i.e., REST, SOAP, Database, File) 56 - 57 57 == 4. Assignment == 58 58 59 59 No assignment accompanies this microlearning.