Changes for page eMagiz State Generation
Last modified by Erik Bakker on 2024/08/13 12:05
From 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
To 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
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -9,22 +9,21 @@ 9 9 10 10 == 2. Key concepts == 11 11 12 - All conceptsare discussedin the section below..12 +In this microlearning, the concept of state generation will be explained. 13 13 14 -== 3. IntroducingStateful==14 +== 3. Definition == 15 15 16 - WithineMagizthereisacapability tostorepiecesof dataofaspecific object that is transitbetweensystems.The basis ideaof messagesthatareprocessedby eMagizishat alloftheseareintransit.However,in certaincasesitis very helpful topreserve astate of anobject.That state canhelp toinfluencethenext datapacketsthatare passingthroughortriggeracertain action foranothersystem.16 +State generation concerns the generation of a stateful application or service. This means that, for the application or service to function, data is stored and past states are used to derive information. Such a state may e.g. be a temperature or heartrate measure. Stateful applications or services are opposed to stateless applications or services, which do not require data to function and merely represent the current state. 17 17 18 -An example mightbea situationwhereasensoris submittingtemperaturedataevery 5secondson adata streamtowardseMagiz. Theinterestingstate of the machinewhere thesensorisattachedtois theaveragetemperature in thelasthour.In thiscasethe temperature thatis sendto theeMagiz should beused to update thestateof the machine,andmore specifically theaveragetemperature.Oneneedsaatastreamfromthesensor,awaytoaggregate& averageout allmessagesfromthelasthour,and a waytostore thestate. Oncethetemperaturereachesacertainthreshold,thedata is submittedto a nextsystemoraiseanalertforauser.18 +An example of a stateful application, is an application that obtains temperature measures in a room and presents a timeline of the temperature measures. A thermostat produces the temperature in this example, after which the data needs to be put into context, including the time at which a certain temperature was measured and the room in which it was measured. Then, the data can be evaluated over time, and tested against the norm. This ensures that real time actions can be generated, e.g. a fire alert can be generated when the temperature has risen by 25 degrees Celsius in 1 minute. 19 19 20 - Anotherexample might be a data stream that registers a click on a specific webpage.That data stream is connected to eMagiz, whereby the state ofthat 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 thatpagecontains a product, theactionmight be to displaythe 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.20 +== 4. Benefits and Operations == 21 21 22 -T he example are purely illustrative tounderstand theconcept.22 +TBenefits of real time state generation are, first of all, that data can be provided immediately and is always up-to-date. Secondly, it is possible to take real time action and take real-time decisions. Lastly, there is no need to store data unnecessarily. 23 23 24 - ====3.1StateStore====24 +Stateful data can be generated through four main operations. First of all, through enriching data. This means that information should be added 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. 25 25 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 - 26 +[[image:Main.Images.Fundamental.WebHome@fundamental-stategeneration-example-enrich.png]] 28 28 ==== 3.2 State Operations ==== 29 29 30 30 Once the state store is defined, one needs different operations in order to update the state effectively.