Changes for page eMagiz State Generation
Last modified by Erik Bakker on 2024/08/13 12:05
From version 8.1
edited by Carlijn Kokkeler
on 2023/07/07 13:42
on 2023/07/07 13:42
Change comment:
There is no comment for this version
To version 7.1
edited by Carlijn Kokkeler
on 2023/07/07 13:35
on 2023/07/07 13:35
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -9,21 +9,22 @@ 9 9 10 10 == 2. Key concepts == 11 11 12 - In this microlearning,theconceptofstategenerationwillbeexplained.12 +All concepts are discussed in the section below.. 13 13 14 -== 3. Definition ==14 +== 3. Introducing Stateful == 15 15 16 - Stategenerationconcernsthegenerationofastateful applicationorservice.This meansthat, fortheapplicationorservicetofunction,data isstoredand past statesareusedtoderiveinformation.Sucha statemaye.g.be a temperatureorheartratemeasure.Statefulapplicationsoricesare opposedtostatelessapplicationsorservices,whichdonotrequiredatato functionandmerelyrepresentthe current state.16 +Within eMagiz there is a capability to store pieces of data of a specific object that is transit between systems. The basis idea of messages that are processed by eMagiz is that all of these are in transit. However, in certain cases it is very helpful to preserve a state of an object. That state can help to influence the next data packets that are passing through or trigger a certain action for another system. 17 17 18 -An example ofa statefulapplication,isanapplicationthat obtainstemperaturemeasuresin a room andpresents aimelineof thetemperaturemeasures.Athermostatproduces the temperature in thisexample,afterwhichthedata needsto beput intocontext,includingthe time atwhich a certaintemperaturewasmeasured and the roomin whichit wasmeasured. Then,thedatacan beevaluatedover time,andtestedagainstthe norm.Thisensuresthat realtime actionscanbegenerated,e.g.afire alertcanbe generatedwhenthetemperature hasrisenby25degreesCelsius in1minute.18 +An example might be a situation where a sensor is submitting temperature data every 5 seconds on a data stream towards eMagiz. The interesting state of the machine where the sensor is attached to is the average temperature in the last hour. In this case the temperature that is send to the eMagiz should be used to update the state of the machine, and more specifically the average temperature. One needs a data stream from the sensor, a way to aggregate & average out all messages from the last hour, and a way to store the state. Once the temperature reaches a certain threshold, the data is submitted to a next system to raise an alert for a user. 19 19 20 - ==4.Benefits andOperations==20 +Another example might be a data stream that registers a click on a specific webpage. That data stream is connected to eMagiz, whereby the state of that specific webpage is updated with the number of clicks. Once the number of clicks in the last 30 minutes reaches for instance more than 50, a specific action might be triggered. If that page contains a product, the action might be to display the number of web users active on that product in order to influence the sales of that product. One needs a data stream, a way to count the number of click, and a way to store the state of that webpage. 21 21 22 -T Benefitsof real timestate generation are,first of all, that data can beprovided immediatelyandis always up-to-date. Secondly, it ispossibleto takerealtimeactionandtakeeal-time decisions.Lastly, thereis noeed to store data unnecessarily.22 +The example are purely illustrative to understand the concept. 23 23 24 - Statefuldata can be generated through four main operations.Firstofall,throughenrichingdata. This means that information should beadded to the data, so that it has more meaning. This can be achieved by storing states in a database. For example, when it is known that, if a person works from home, this is stored as A, and if a person works in the office, this is stored as B, the data can be enriched with ‘Home’ and ‘Office’. To ensure this, a database should be present storing the connection between A and Home, and B and Office.24 +==== 3.1 State Store ==== 25 25 26 -[[image:Main.Images.Fundamental.WebHome@fundamental-stategeneration-example-enrich.png]] 26 +The state store refers to the storage location of the states of the specific objects in the environment. That storage location is part of the eMagiz platform, and embedded in the eMagiz runtime for now. The user needs to define what objects and the attributes of that object are to be stored. Several different objects and states of the objects can be be defined & stored. A state store can be shared across multiple processes that are allowed to update the state of an object. 27 + 27 27 ==== 3.2 State Operations ==== 28 28 29 29 Once the state store is defined, one needs different operations in order to update the state effectively.