Next Article in Journal
A Social Distance Estimation and Crowd Monitoring System for Surveillance Cameras
Next Article in Special Issue
Application of Gaussian Mixtures in a Multimodal Kalman Filter to Estimate the State of a Nonlinearly Moving System Using Sparse Inaccurate Measurements in a Cellular Radio Network
Previous Article in Journal
Performance Evaluation of Adaptive Tracking Techniques with Direct-State Kalman Filter
Previous Article in Special Issue
Channel State Estimation in LTE-Based Heterogenous Networks Using Deep Learning
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Arithmetic Framework to Optimize Packet Forwarding among End Devices in Generic Edge Computing Environments

1
Computer Engineering Department, Miguel Hernández University, 03202 Elche, Spain
2
Mathematics and Computer Science Department, University of the Balearic Islands, 07022 Palma de Mallorca, Spain
*
Author to whom correspondence should be addressed.
Sensors 2022, 22(2), 421; https://doi.org/10.3390/s22020421
Submission received: 3 December 2021 / Revised: 22 December 2021 / Accepted: 4 January 2022 / Published: 6 January 2022
(This article belongs to the Collection Intelligent Wireless Networks)

Abstract

:
Multi-access edge computing implementations are ever increasing in both the number of deployments and the areas of application. In this context, the easiness in the operations of packet forwarding between two end devices being part of a particular edge computing infrastructure may allow for a more efficient performance. In this paper, an arithmetic framework based in a layered approach has been proposed in order to optimize the packet forwarding actions, such as routing and switching, in generic edge computing environments by taking advantage of the properties of integer division and modular arithmetic, thus simplifying the search of the proper next hop to reach the desired destination into simple arithmetic operations, as opposed to having to look into the routing or switching tables. In this sense, the different type of communications within a generic edge computing environment are first studied, and afterwards, three diverse case scenarios have been described according to the arithmetic framework proposed, where all of them have been further verified by using arithmetic means with the help of applying theorems, as well as algebraic means, with the help of searching for behavioral equivalences.

1. Introduction

Multi-Access Edge Computing (MEC) environments are growing by the day due to the need of more computing power near the end users [1]. Some years ago, artificial intelligence (AI) techniques, such as Convolutional Neural Networks (CNN), were only available in cloud facilities [2], due to their high requirements of computing resources and power, which were only available through Wide Area Network (WAN) links, those having constraint bandwidth and large round trip times. However, recent advances in the data science (DS) paradigm has brought up a new generation of smaller AI-powered resources, which may be embedded into smaller facilities, such as those being implemented into the fog [3] or into the edge [4], which are reachable through Local Area Network (LAN) links, those having greater bandwidth and shorter latency rates.
Specifically, those new AI-powered may improve performance in many fields [5], and may allow Internet of Things (IoT) devices to take advantage of them by means of Local Area Network (LAN) links, those having high bandwidth and short round trip times [6]. This situation may facilitate the increase in IoT environments [7], which may induce the need of optimizing their designs [8], and in this regard, it might be useful to obtain a generic regular scheme in order to optimize the resources being put in place when undertaking an IoT deployment [9].
The target in this paper is to obtain an arithmetic framework aimed at generic edge computing environments, based on simple arithmetic operations in order to simplify routing and switching operations as much as possible, thus finding out the proper destination without having to look into either the routing tables for internetwork traffic or the switching tables for intranetwork flows, even though hardware and software implementations may influence which approach is more efficient. In that sense, the division algorithm provides an interesting capability when focusing on integer numbers because it may provide a quotient and a remainder, where the former may be used to identify an item being traversed and the latter may be employed to identify the entry or exit point out of such an item. Furthermore, a layered approach may make use of some variations of such parameters to adjust them accordingly to the particular setup of each layer.
Additionally, it is to be noted that such a layered model includes end devices at the bottom tier, also known as hosts, along with remote computing devices such as edge nodes, fog nodes and cloud nodes at the upper tiers, those following certain arithmetic rules related to the hosts located below them. Moreover, all those items involved are being interconnected through a wired environment whose port numbers follow certain arithmetic rules according to the hosts situated down below. In addition, wireless IoT devices might also take part in this framework by connecting to end devices, although the communications among such hosts will be undertaken through the wired paths defined by the arithmetic rules governing this framework.
In this sense, it might be reminded that the main point of this article is to define a simple arithmetic scheme based on integer divisions and modular arithmetic so as to identify each of the devices being traversed in the path between any given pair of end devices, as well as all the ports being involved in such a path. Therefore, it is important to define a determined numbering scheme in each layer, which is the sequential enumeration of items from left to right, along with a definite port scheme, which also goes left to right, starting with the downlink ports and carrying on with the uplink ports. Figure 1 exhibits an instance with the infrastructure proposed, even though the arithmetic expressions to move through it may be given later on. In addition, such expressions might be seen as an alternative way to current forwarding schemes based on searching for matches into the appropriate forwarding tables, those performing either routing or switching, depending whether the forwarding device works at layer 3 or at layer 2 according to the OSI model, which standardizes network communications.
Such a layered approach facilitates to break up the model into three different kinds of communications between any given pair of hosts, depending on how many hops away are the nearest common intermediate item to both of them. Additionally, three diverse approaches have been carried out in order to offer different options to deal with the model. It is to be said that those models have been verified by means of theorems and their proves related to arithmetic means, as well as by algebraic means with the help of an abstract process algebra named Algebra of Communicating Processes (ACP), which is branded as a formal description technique (FDT) [10].
The organization of the rest of the paper goes as follows: Section 2 presents the mathematical background needed to build up the models, afterwards, Section 3 exhibits the foundation of the models proposed, next, Section 4 exposes the features of the models proposed, then, Section 5 develops a logical approach so as to suggest some theorems and their proves related to the communications taking place in the models proposed, in turn, Section 6 depicts the specification and verification of the models by algebraic means, and eventually, Section 7 draws some final conclusions.

2. Mathematical Fundamentals for the MEC Framework Proposed

Prior to studying the logical structure of the model proposed, a classification of integer division kinds is presented, followed by an introduction to the division theorem. Afterwards, modular arithmetic basics are cited, and in turn, the most important theorem proof tools are listed, and with that in mind, there are enough tools to study the basic facts of the aforesaid model.

2.1. Types of Integer Divisions

Focusing on integer numbers, whose whole set is represented by Z , the division of a dividend ( D ) by a divisor ( d ) returns two numbers, such as a quotient ( q ) and a remainder ( r ) , where the former accounts for the maximum number of whole units of D distributed into d, whilst the latter portrays the mismatch of D in relation to d, such as a surplus in case it is positive, or the shortage in case it is negative, or evenly distributed if it is zero.
It is to be said that the standard Euclidean division is the most common convention when dealing with division within the integer domain, where the remainder is always positive [11]. However, if the remainder is not zero, other options are available. In fact, programming languages usually employ diverse types of division so as to fit different situations, such as floored division, ceiled division, rounded division and truncated division.
On the one hand, regarding floor and ceiled actions, the former always obtains an integer less or equal than the corresponding floating point division, whilst the latter always obtains an integer greater or equal than floating point division. On the other hand, with respect to round and truncate actions, the former performs floor or ceiled actions depending on which one obtains the remainder with the least absolute value, whereas the latter portrays floor or ceiled actions so as to obtain a remainder with the same sign of the dividend. Furthermore, standard Euclidean division might be seen as applied floored division in case divisor is positive or ceiled division in case the divisor is negative.
Additionally, the other three hardly used conventions might be applied as they are opposite to some of those exposed, such as always attaining a negative remainder or the remainder having the greatest absolute value or, otherwise, the remainder having a diverse sign out of the dividend. Anyway, Table 1 depicts all those different options related to integer division, where each convention has its opposite one.

2.2. Division Theorem

Sticking to the set of integer numbers Z , the division theorem states that if dividend D is any integer number and divisor d is a positive number, then there exist unique integers, called the quotient q and the remainder r, such that D = d · q + r , where 0 | r | < d , which will account for 0 r < d when dealing with standard Euclidean divisions when d > 0 . In order to prove this theorem, uniqueness may be previously proved, which, in turn, may lead to prove its existence [12].
First of all, uniqueness may be proved by assuming a couple, q 1 and r 1 , and another couple, q 2 and r 2 , all of them being part of Z , where both couples are satisfying the conclusion, such as the former given by Equation (1) and the latter by Equation (2):
D = d · q 1 + r 1 , 0     | r 1 |   <   | d |
D = d · q 2 + r 2 , 0     | r 2 |   <   | d |
By comparing both equations, it results in Equation (3), which implies that the difference r 2 r 1 is just a multiple of d:
d · q 1 + r 1 = d · q 2 + r 2 d · ( q 1 q 2 ) = r 2 r 1
Taking into account that r 1 and r 2 range from 0 all the way to d 1 , then the difference r 2 r 1 is lower in absolute value than d, which may be incorporated in the previous expression as shown in Equation (4). In this sense, it is to be reminded that if a remainder were equal or greater than | d | , then its related quotient ought to be higher in absolute value:
| d · ( q 1 q 2 ) | = | r 2 r 1 | < | d |
In the aforementioned expression, the only integer being multiple of d being smaller in absolute value than | d | is 0, hence | d · ( q 1 q 2 ) | = 0 . However, d must be a positive number, thus it could not be zero, leading to q 1 q 2 = 0 , which account for q 1 = q 2 . If this result is translated into Equation (3), then it is obtained that r 2 r 1 = d · 0 = 0 , thus leading to the fact that r 1 = r 2 , which clearly shows the uniqueness expected.
Afterwards, existence may be proved by taking into consideration all integer multiples of d, such that { k · d : k Z } . As d 0 , those multiples are equally spaced along the real line. In this context, let us take an integer a located inside the interval given by two consecutive multiples of d, such as k · d a < ( k + 1 ) · d , such as k Z .
Additionally, if the term k · d is subtracted out of all terms, it results in 0 a k · d < d . At this point, by applying the definition of the remainder, which may be easily deducted from the division theorem as r = D d · q , it results in Equation (5):
0 r < b = | b |
This way, uniqueness has been proved in a first stage, and in turn, existence has been done at a second stage, which leads to the conclusion that the division theorem has been duly proved.

2.3. Notions of Modular Arithmetic

Taking into consideration that the values established in this model are all natural numbers N , which happens to be a subset of integer numbers Z where all its positive numbers along with zero are included, then the aforementioned results will also apply to the framework presented for facilitating the forwarding operations between end devices, edge servers and fog servers, which may also include the forward paths to cloud servers.
In that sense, it is to be seen that modular arithmetic works with modulo d residues, those being defined as the natural numbers from 0 all the way to d 1 , which may be related to the remainders of the integer division by d [13]. In this sense, it may be said that the modulo d residue of D is r D ( mod d ) , which may also be calculated as the remainder of the integer division, such as r = D d · q .
Likewise, modular arithmetic induces an equivalence relation called congruence when any set of given values share the same residue modulo d, which is usually represented by its canonical item, that being located within the range from 0 to d 1 . In this context, two given values, x and y, are meant to be congruent modulo d if, and only if, ( x y ) /d is an integer, whereas they are not congruent modulo d if the aforesaid result is not an integer.

2.4. Nomenclature for Integer Divisions and Modular Arithmetic

As the identifiers within the MEC framework proposed are within the domain of natural numbers N , integer divisions and floored divisions match, whereas ceiled divisions account for an additional unit added up to the former if its remainder is not zero, or it just matches the former otherwise. Anyway, integer divisions may be expressed as in expression (6), whilst ceiled divisions are performed as in Equation (7), whereas modular arithmetic operations may be performed as in expression (8):
int ( D / d ) = D / d = D D | d d
D / d = D / d = D | d D d
D mod d = D | d = ( D | d + d ) | d

2.5. Theorem Proving

It may be said that a theorem proof may be seen as a sequence of statements, which are either assumed or otherwise follow from a previous statement by a rule of inference. It may be said that there are four basic styles of proof, even though some variations may also be applied:
  • Direct proof, such as if we assume P is true, therefore Q must also be true. This method is stated as P Q .
  • Proof by contraposition, such as if we assume Q is false, therefore P must also be false. This method is denoted as ¬ Q ¬ P .
  • Proof by contradiction, where a contradiction is searched for in order to deny a statement, or otherwise, that statement must be true.
  • Proof by induction, where a basis step is proved, followed by an inductive step, which will imply that the statement must be true.
These are the main techniques to prove theorems by providing mathematical reasoning about the correctness of the sentences involved [14].

3. Basics of the MEC Framework Proposed

In order to build up a model for MEC communications, it is necessary to begin with the definition of the diverse layers, as well as denoting the different kind of communications taking part in the model depending on the number of layers being involved, along with the modeling of each item belonging to such layers.

3.1. Roles of Each Layer within the MEC Framework Proposed

The ever growing increment in MEC deployments may lead to try to search for a common infrastructure with a canonical number of items so as to facilitate the interconnections between the end devices tier and the different servers located at upper layers, namely, edge tier, fog tier and cloud tier, as exhibited in Figure 2.
The number of items within each layer may be normalized in a similar way as proposed in a fat tree architecture, which is a data centre architecture set up through three layers of switches. In this context, there is a parameter k influencing the whole layout, such as the number of items within each layer, along with the amount of interconnections between any two neighbouring layers, or the quantity of end hosts per end switch, per pod and overall [15].
Actually, the key point of the design proposed herein is to describe an infrastructure where the number of elements belonging to each layer depends on the value selected for parameter k, where each item in a given layer has a hub and spoke relationship with its k directly connected items in the neighboring lower layer. In this sense, the design will contain just k 0 = 1 cloud node (in case such a node is cited in the scenario proposed), k 1 = k fog nodes, k 2 edge nodes and k 3 end devices, where each individual item within any layer will be sequentially identified from left to right with a natural number going from 0 all the way to the predecessor of the correspondent limit value.
As shown in Figure 2, the layers involved in the MEC deployment layout proposed are Devices, Edge, Fog and Cloud. First of all, the role of the Devices layer is to either retrieve information from the environment through some attached sensors and pass them up to a particular server located on an upper layer or otherwise to act on the environment through some associated actuators according to the information provided by a given server situated on an upper layer.
Moreover, the role of the Edge layer is to furnish some remote computing resources powered by a certain AI, which will receive raw data sent over by a given source end device and will try to process them on its directly connected edge node, which will happen if the proper destination end device is also directly connected. If that is the case, then the processed data are forwarded back to that particular destination end device, whereas on the contrary, the raw data are forwarded up to the fog layer.
In addition, the role of the Fog layer is to supply some more powerful remote computing resources than the edge layer, as well as accounting for a more powerful AI, which will receive raw data being sent up from a given source edge server, that being directly connected to the source end device, and will try to process them on its directly connected fog node, which will occur if the appropriate destination edge node, that being linked to the destination end device, is also directly connected. If this is the case, then the processed data are sent back to that given destination edge server, whilst on the other hand, the raw data are sent up to the cloud layer.
Furthermore, the role of the Cloud layer is to grant even more powerful remote computing resources than the fog layer, including an even more powerful AI, which obtains the raw data being forwarded on from a source fog node and delivers the processed data being sent over to a particular destination fog node.
Depending on the layer where the server processing the data is located on, communications within the MEC framework proposed may be divided into three categories, such as intraedge if an edge node does it, intrafog if a fog node does it or interfog if a cloud node does it.
In summary, it is to be noted that the flow chart starts at a source end device reading some information from the environment through one of its sensors, which in turn, is passed on to a source edge server in a similar fashion as DNS queries are carried out, as server nodes become more powerful depending on the hierarchical layer they are being located, such that edge servers are less powerful than fog servers, whilst those are less powerful than cloud servers. Anyway, when a server succeeds in processing such raw data, those processed data are headed to the destination end device in order for one of its actuators to act on the environment.
With regards to the graphical representation of the items staying at each layer of the MEC framework proposed, it is to be reminded that device and edge layers are common to all scenarios presented, whereas fog and cloud layers differs on the approach stated. Therefore, the former are presented for all scenarios, whereas the latter are specified for each particular one.

3.2. Differences among the Three Scenarios Presented within the MEC Framework Proposed

As stated before, three diverse scenarios are going to be presented in relation to how interfog communications are carried out, where each of them maintain the same grounds for intraedge and intrafog communications.
The first one may be called ’spoke fog’, whose network topology for interfog traffic flows is hub and spoke, where a cloud node plays the role of hub and the all fog nodes play the role of spokes. In this case, two links are needed to go from a source fog server to a destination fog server, as the cloud node play the part of a meeting point to move among fog nodes.
The second one may be referred to as ’full mesh fog’, whose network topology for interfog communications is full mesh, which means that no cloud node is necessary. In that case, just one link is obviously needed to get from a source fog node to a destination fog node because there is always a path among any given pair of fog servers.
The third one may be named ’hybrid fog’, whose network topology for interfog paths includes both solutions exposed above, such as there is a cloud node in order to play a hub and spoke architecture, as well as n · ( n 1 ) / 2 links among fog nodes so as to cover all possible interfog paths as stated by full mesh network topologies. Therefore, this scenario may provide redundancy between both aforementioned solutions for interfog communications, thus presenting a more realistic scenario where different path strategies are considered in order to avoid single points of failure.

3.3. Representation of Items Located on Each Layer within the MEC Framework Proposed

Regarding devices for all scenarios, a given device D i with its unique own port 0 is shown in Figure 3.
With respect to edge servers for all scenarios, a particular edge node E i with its k downlink ports ranging from 0 to k 1 , as well as its only uplink port k is shown in Figure 4, taking into account that downlink ports are first numbered from left to right, and afterwards, uplink ports carry on with the same numbering sequence also from left to right.
Focusing on fog servers, three different scenarios have been presented, thus, three diverse layouts are needed. First of all, a spoke fog scenario requires that each given fog node F i has an analogous port setup as edge nodes, such that it needs its own k downlink ports, being labeled from 0 to k 1 , as well as its sole uplink port, being labeled as k, in order to achieve a hub and spoke topology with the cloud layer, as exhibited in Figure 5.
Furthermore, a full mesh fog scenario has a link to the rest of k 1 fog nodes within the layout, whilst not having either any cloud node nor any uplink to those. Therefore, each given fog node i needs some k downlink ports going from 0 to k 1 , along with some k 1 uplink ports ranging from k to 2 k 2 in order to achieve a full mesh topology among all fog servers, as depicted in Figure 6.
Additionally, a hybrid fog scenario may be obtained by mixing together the hub and spoke and the full mesh scenarios in a single one. Hence, each particular fog node i has some k downlink ports ranging from 0 all the way to k 1 , some k 1 uplink ports going from k to 2 k 2 so as to attain full mesh topology among all fog nodes, and an extra uplink port 2 k 1 in order to achieve a hub and spoke topology with the cloud layer, as exposed in Figure 7.
Eventually, a cloud node G i is necessary in the hub and spoke and hybrid scenarios, where a cloud node has k downlink ports ranging from 0 to k 1 aimed at the corresponding fog nodes, as shown in Figure 8.

4. Features of the MEC Framework Proposed

Taking all the above into consideration, some generic frameworks for MEC implementations are going to be proposed, which share the same approach for the interconnection of the three lower layer, but have different approaches for the interconnection of upper layers. This accounts for all approaches having the same intraedge and intrafog communication schemes, whilst having its own approaches for interfog communication schemes.
In this sense, it is to be noted that, in all case scenarios, variable a identifies the source host, whereas variable b identifies the destination host, whilst parameter k has been previously defined in the last section and states how many spokes are hanging on each item acting as a hub, located on the edge, fog and cloud layers. Moreover, those arithmetic expressions related to intermediate nodes and ports between the source host and the hub just employ a and k, whilst those referred between the hub and the destination host only utilize b and k, whereas those bypassing the role of a hub, specifically full mesh topology links among fog nodes, make use of the three variables.

4.1. Intraedge Scenario

Sticking to intraedge communications, there is a common server at the edge layer, meaning that the source edge, being represented by E a / k , is the same as the destination edge, being indicated by E b / k , as it is denoted in Figure 9. On the other hand, the corresponding port to obtain the the relevant devices hanging on a shared edge (as the same edge connect to both source and destination devices) are given by a | k for its dowlink port pointing at the source device a, as well as b | k for its downlink port looking at the destination device b. Additionally, all devices have a unique port labeled as 0.
For instance, considering parameter k = 2 , if source host is a = 0 and destination host is b = 1 , then the source edge is a / k = 0 / 2 = 0 and the destination edge is b / k = 1 / 2 = 0 , meaning a / k = b / k , thus a and b are connected to the same edge node, hence intraedge communication takes place between a and b. Furthermore, the edge port a | k = 0 | 2 = 0 connects to the source host a = 0 , whereas the edge port b | k = 1 | 2 = 1 does so to the destination host b = 1 .

4.2. Intrafog Scenario

Moving to intrafog communications, there is a common server at the fog layer, resulting in the source fog, being indicated by F a / k 2 , being the same as the destination fog, being denoted by F b / k 2 , as it is shown in Figure 10. On the other hand, the proper port to reach the relevant devices linking on a share fog (because the same fog connect to both source and destination edges, which in turn, hang the source and destination devices, respectively) are stated by a / k | k for its downlink port looking at the source edge E a / k , as well as b / k | k for its downlink port pointing at the destination edge E b / k . Needless to say that the links between source edge and the source device, as well as the destination edge and the destination device, remain the same as exposed above.
For instance, considering parameter k = 2 , if source host is a = 0 and destination host is b = 2 , then the source edge a / k = 0 / 2 = 0 differs from the destination edge b / k = 2 / 2 = 1 , even though the source fog a / k 2 = 0 / 2 2 = 0 matches the destination fog b / k 2 = 2 / 2 2 = 0 , meaning a / k 2 = b / k 2 , thus a and b are connected to the same fog node, hence intrafog communication takes place between a and b. Furthermore, the fog port a / k | k = 0 / 2 | 2 = 0 connects to the source edge, namely, a / k = 0 / 2 = 0 , which in turn is linked to host a = 0 , whereas the fog port b / k | k = 2 / 2 | 2 = 1 does so to the destination edge, namely, b / k = 2 / 2 = 1 , which in turn is connected to host b = 2 .

4.3. Interfog Scenario

Regarding interfog communications, two different strategies are going to be proposed herein, such as a hub and spoke interfog approach and a full mesh interfog approach. In both cases, there will be a source fog, being labeled as F a / k 2 , which is different of a destination fog, being denoted as F b / k 2 , but obviously, the path to go between them differs, as the former does it through a cloud server and the latter does it through a direct link. Additionally, a third strategy will be exposed as a combination of the aforesaid methods.

4.3.1. Fog Spoke Approach

It is to be considered that a cloud server is the meeting point through which all fog servers communicate to each other. With respect to such a cloud node, it is going to be unique in the whole infrastructure, hence, it may be calculated either as a source cloud, being denoted by G a / k 3 , or as a destination cloud G b / k 3 , as both expressions obviously match, as it is exhibited in Figure 11.
For instance, considering parameter k = 2 , if source host is a = 0 and destination host is b = 4 , then the source edge a / k = 0 / 2 = 0 differs from the destination edge b / k = 1 / 2 = 2 , as well as the source fog a / k 2 = 0 / 2 2 = 0 differs from the destination fog b / k 2 = 4 / 2 2 = 1 . Thus, a and b are connected to different fog nodes, and hence interfog communication takes place between a and b. Alternatively, it happens that the source cloud a / k 3 = 0 / 2 3 = 0 and the destination cloud b / k = 4 / 2 3 = 0 , meaning a / k 3 = b / k 3 , which may also be seen as just one single cloud, thus accounting for intracloud communication. Furthermore, the cloud port a / k 2 | k = 0 / 2 2 | 2 = 0 connects to the source fog, namely, a / k 2 = 0 / 2 2 = 0 , which is linked to the source edge, namely, a / k = 0 / 2 = 0 , which is further tied to source host a = 0 . Meanwhile, the cloud port b / k 2 | k = 4 / 2 2 | 2 = 1 does so to the destination fog, namely, b / k 2 = 4 / 2 2 = 1 , which is tied to the destination edge, namely b / k = 1 / 2 = 1 , which is further linked to destination host b = 4 .
In addition, its downlink port going to the source fog a / k 2 is given by a / k 2 | k , whilst its downlink port looking at the destination fog b / k 2 is given by b / k 2 | k . On the other hand, the lower layer items and ports remain the same as stated above.

4.3.2. Fog Full Mesh Approach

In this case, there is no cloud server, as it is exhibited in Figure 12. Moreover, a source fog node and a destination fog node are obviously different items, even though they are directly connected because of the full mesh architecture. It is to be noted that each fog node needs k 1 uplink ports in order to be interconnected with all their k 1 fog node counterparts in order to achieve a full mesh topology [16].
On the other hand, any type of connection among fog nodes is feasible, such as k-ary n-cube or any other type of partial mesh scheme, even though full mesh has been selected herein for simplicity purposes. It is to be reminded that partial mesh may not have a direct link between any pair of fog nodes, which may make the design harder to be modeled, even though it might be faced in a future study.
Sticking to the full mesh scheme, the uplink port identifiers are always incremental with respect to the node on the other side of the channel, such that a link to the fog server with the lower identifier will be assigned port k, all the way to a link towards the fog node with the higher identifier will be associated to port 2 k 2 . On the other hand, the lower layer items and ports remain the same as exposed above.
For instance, considering parameter k = 2 , if source host is a = 2 and destination host is b = 5 , then the source edge a / k = 2 / 2 = 1 differs from the destination edge b / k = 5 / 2 = 2 , as well as the source fog a / k 2 = 2 / 2 2 = 0 differs from the destination fog b / k 2 = 5 / 2 2 = 1 . Thus, a and b are connected to different fog nodes, and hence interfog communication takes place between a and b. As there is no cloud node in this case scenario, then the link between source fog node a / k 2 = 2 / 2 2 = 0 and destination fog node b / k 2 = 5 / 2 2 = 1 is being used, where its source port in the former and its destination port in the latter are defined next.
In this sense, the uplink port layout to achieve the full mesh fog communications for each of the fog nodes involved are ordered in an incremental manner, such that the link to the lowest fog identifier is branded as k, the second lowest one is labeled as k + 1 , and so on, until the highest on is named as 2 k 2 , as it is shown in Figure 13. On the contrary, the downlink port layout connects each port from 0 to k 1 to the linked edge node whose remainder of its division by k obtains such a port, which may also be referred to a given host h hanging on them as the remainder of the division of h / k by k.
It is also to be considered that a port going to itself is not permitted, as it would not make any sense in this context, so it must always be skipped out, which provokes that source ends of links towards a destination fog node being identified with a lower natural number than the source fog node result in k + b / k 2 . In case it is a higher natural number, it needs to apply a correction factor of −1, such as in k + b / k 2 1 . Luckily, both expressions may be collapsed in just one being useful in both cases by substituting −1 with a special corrector factor included in expression (9), which achieves the expected results in both cases:
Source port in full mesh = k + F b / k 2 F b / k 2 / ( F a / k 2 + 1 ) k
Analogously, the destination end of each interfog link carries similar features, where destination ends of links towards source nodes being identified with a higher natural number than the destination fog is given by k + a / k 2 , whereas if it is a lower natural number, it requires to apply a corrector factor of 1 , such as k + a / k 2 1 . Fortunately, both expressions may be comprised in only one being ready to use in both cases by substituting 1 with another term with a special corrector factor included in Equation (10), which attains the expected outcome in both cases.
Destination port in full mesh = k + F a / k 2 F a / k 2 / ( F b / k 2 + 1 ) k
It is to be mentioned that both expressions take advantage of fog nodes being identified as members of the group Z k , those being formed by the set of natural numbers going from 0 all the way to k 1 . Hence, if source fog is identified by i = F a / k 2 and destination fog is identified by j = F b / k 2 , it is to be said that if i > j , those representing both ends of an interfog channel, then the term with the floored division i / ( j + 1 ) results in a positive natural number, or zero otherwise, whereas if i < j , then the term with the floored division j / ( i + 1 ) results in a positive natural number, or zero otherwise.
Afterwards, all those positive natural numbers obtained above are normalized to 1 by means of applying the ceiled division by k, such that i / ( j + 1 ) / k or j / ( i + 1 ) / k . It is to be noted that k is greater than any possible of the results above, as there are k fog nodes, thus being identified from 0 to k 1 . Moreover, it is needless to say that zero is invariant with respect to normalization, so it sticks to zero. In addition, the addition of an extra unit to the denominators of all those fractions is just to avoid the potential division by zero and it does not affect the final outcome in any way.
Therefore, the ceiling division is applied to the whole fraction in order to achieve either 1 or 0, thus obtaining the corrector factor whenever is needed with just one single term in order to attain the corresponding port. It is to be remarked that i has been substituted by a / k 2 , whilst j has been substituted by b / k 2 in the aforementioned expressions.

4.3.3. Fog Hybrid Approach

Basically, this scenario is a mix of those previously proposed, hence it has a single cloud server at its highest layer, with k fog servers connected to the cloud in a hub and spoke manner, whilst all those fog nodes are also interconnected in a full mesh fashion. Furthermore, each fog server has k edge servers hanging on it, which accounts for an overall amount of k 2 of such servers. Additionally, each edge server has k IoT devices hanging on it, which represents k 2 of such devices below any fog node and a total amount of k 3 overall. This topology is shown in Figure 14, which provides some redundant paths just in case of a relevant failure in the system or alternative path for applying load balancing policies.

4.4. Relevant Number of Items and Links in Each Interfog Scenario

For clarification purposes, Table 2 compiles all relevant values related to k for each kind of layer in the intracloud scenario.
Otherwise, Table 3 summarizes the relevant values referred to k for each sort of layer in the full mesh scenario.
On the other hand, regarding links within each topology, it may be seen that each hub and spoke topology needs as many links as its amount of connected spokes, which accounts for k in the layout proposed. Therefore, as there are 1 + k + k 2 hub and spoke topologies in the intracloud scenario, where the 1 value is related to the cloud node, the k value is related to the fog nodes and the k 2 value is related to the edge nodes. Considering that each one has k links, then the overall amount of links is k + k 2 + k 3 .
However, in the full mesh scenario, there are k + k 2 hub and spoke topologies, where the k value is related to the fog nodes, whilst the k 2 value is related to the edge nodes. Additionally, there are k · ( k 1 ) / 2 interfog connections, thus the total number of links is k + k 2 + k 2 / 2 + k / 2 , which accounts for k / 2 + 3 k 2 / 2 .
On the contrary, in the hybrid scenario, there are k + k 2 + k 3 + k · ( k 1 ) / 2 , which equals k / 2 + 3 k 2 / 2 + k 3 .

5. Logical Approach to the MEC Framework Proposed

The aforesaid expressions cited in the figures above may be also deduced by logical means, in a way that some theorems may be quoted focused on the MEC framework proposed, followed by the corresponding proofs to those theorems.

Theorems Applied to the Framework Proposed

Taking into account that the framework proposed works with natural numbers as identifiers for the different items located on the diverse layers within the model, it is possible to find every intermediate device, forming the shortest path between a source device and a destination device, as well as every single port being traversed in any device taking place in such a communication.
It is to be remembered that the infrastructure heavily depends on parameter k, which may induce the use of integer divisions by k, or otherwise, the modular arithmetic modulo k, as suggested in the figures presented above. The former may well be used so as to establish the item identification of the intermediate devices (servers located at the edge layer, at the fog layer or at the cloud layer), whereas the latter may well be employed to spot the port identification within each of the intermediate devices being traversed on the way from a source device a to a destination device b.
The expressions for each case scenario have already been exposed in the figures above, although those may also be deducted from the following theorems, which are all duly proved by applying the division theorem presented above.
Theorem 1. 
All intraedge communications take place within the ports of a given edge node in any given scenario.
Proof of Theorem 1. 
Considering a host h, it is connected to an edge node h / k , as there are k hosts per edge node. Hence, intraedge communications meet the condition a / k = b / k , meaning that a source host a and a destination host b share the same edge node. Consequently, due to the uniqueness and existence of each available remainder, that edge node may have a downlink port going towards a, namely, a | k , as well as another one heading for b, namely, b | k . Therefore, there is always a path between a and b when it comes to intraedge communications. □
Theorem 2. 
All intrafog communications take place within the ports of a given fog node in any given scenario.
Proof of Theorem 2. 
Considering a host h, it is connected to an edge node h / k , whilst such an edge node is connected to a fog node h / k 2 , as there are always k hosts per intermediate node. Hence, intrafog communications fulfill the condition a / k 2 = b / k 2 , whilst a / k b / k , meaning that a source host a and a destination host b share the same fog node, but not the same edge node. Consequently, due to the uniqueness and existence of each available remainder, that fog node may have a downlink port going towards the edge node where a is hanging on, namely, a / k | k , as well as another one heading for the edge node where b is connected, namely, b / k | k , where in both cases the uplink port on the edge side is k. On the other hand, communication between the source host a and its source edge server a / k are carried out through its downlink port a | k , whilst communication between the destination host b and its destination edge server b / k are undertaken through its downlink port b | k . Therefore, there is always a path between a and b when it comes to intrafog communications. □
Theorem 3. 
All interfog communications take place within the ports of the cloud node in the fog spoke scenario.
Proof of Theorem 3. 
Considering a host h, it is connected to an edge node h / k , whilst such an edge node is connected to a fog node h / k 2 , whereas such a fog node is connected to a cloud node h / k 3 , as there are always k hosts per intermediate node. Hence, interfog communications fulfill the condition a / k 3 = b / k 3 , whilst a / k 2 b / k 2 , which implies a / k b / k , meaning that a source host a and a destination host b share the same cloud node, but not the same fog node, which also involves different edge nodes. Consequently, due to the uniqueness and existence of each available remainder, that cloud node may have a downlink port going towards the fog node where a is hanging on, namely a / k 2 | k , as well as another one heading for the edge node where b is connected, namely, b / k 2 | k , where in both cases the uplink port on the fog side is k if the intracloud scenario is contemplated. On the other hand, communication between the source host a and its source edge server a / k are carried out through its downlink port a | k , whilst communication between such a source edge node and the source fog node a / k 2 are made through its downlinks port a / k | k . Likewise, communications between the destination host b and its destination edge server b / k are undertaken through its downlink port b | k , whereas communication between such a destination edge node and the destination fog node b / k 2 are made through its downlinks port b / k | k . Therefore, there is always a path between a and b when it comes to interfog communications when dealing with the fog spoke scenario, also known as intracloud communications. □
Theorem 4. 
All interfog communications take place within the uplink ports of the fog nodes involved in the fog full mesh scenario.
Proof of Theorem 4. 
The only difference with the previous case is the interfog communications, which work in a full mesh fashion according to the expressions given in the last section, where every single fog node has a straight link with all the rest of fog nodes, such as the source port of such a link in the source fog node given by k + F b / k 2 F b / k 2 / ( F a / k 2 + 1 ) k , whereas the destination port of such a link in the destination fog node is stated by k + F a / k 2 F a / k 2 / ( F b / k 2 + 1 ) k . Therefore, there is always a path between a and b when it comes to interfog communications when dealing with the fog full mesh scenario. □
Theorem 5. 
All interfog communications take place within the ports of the cloud node in the fog hybrid scenario.
Proof of Theorem 5. 
This case scenario considers both fog spoke and fog full mesh, where both of them always provide a path between a and b, therefore, there is always a path between those hosts. □

6. Algebraic Modeling with ACP

Once the proper expressions have been defined for all nodes and their corresponding ports, it is time to model the three case scenarios proposed so as to find out whether their external behavior is the expected one [17]. In order to do that, a timeless process algebra called Algebra of Communicating Processes (ACP) is going to be employed because it is an abstract algebra just focusing on how each entity within the model acts on a regular basis, which allows to abstract away from the real nature of such entities.
Hence, ACP may focus just on the relationships established among the entities being involved in the model, thus permitting to mask the internal behavior of the model, whilst allowing to extract its external behavior, which may be defined as how an external observer may perceive the behavior of a model. On the other hand, ACP does not take time into account, which permits focusing on qualitative features as opposed to quantitative ones being derived from a time scale [18].
This section about algebraic modeling with ACP tries to apply the aforementioned theorems and expressions to algebraic notation so as to first describe the behavior of the entities involved in an algebraic manner, which then leads to obtaining the sequence of events of the whole model, which in turn unveils the external behavior of the model. Such descriptions are carried out by quoting the intermediate devices and their ports involved by means of the arithmetic expression being exposed in the previous sections when tracing the optimal path between a source host a and a destination host b, as all of them are influenced by the values of a, b and k.
Regarding ACP syntax and semantics, it may be said that there are two atomic actions, such as send and read [19], which might be compared to generic functions. Those actions are carried out by any pair of items, also known as entities, having a common unidirectional channel between them, where the send action is performed by the source entity through its source end of such a channel, and the read action is performed by the destination entity through its destination end of the same channel.
With respect to the messages flowing from the source to the destination of a given channel, those are usually described as d, as an acronym of data, and they are not really relevant. However, it is important to uniquely identify each unidirectional channel so as to be able to check whether communication may arise therein, which takes place when the send action is executed at the source end and the read action is run at the destination end in a concurrent manner.
The most common way to identify a channel is with a single variable, in a way that a common identifier is used at both ends of a link. However, for the purpose of using relevant identifiers for both ends of a single channel, it seems more interesting to describe each of its end with the set item-port, that being specified as the pair Item{Port} in the sending end (where the former is the element located at one end of a given channel and the latter is the starting point of the unidirectional channel being described) be and the pair {Port}Item in the receiving end (where the former is the ending point of the unidirectional channel being described and the latter is the element located at the other end of such a channel).
That way, if communication takes place in such a channel, it may be denoted by quoting both sets of item-ports involved, meaning those being located at both ends of such a channel, resulting in Item{Port} → {Port}Item. Therefore, the expressions exposed in Section 4 and Section 5, which are summarized in Table 4, are needed to specify the different item-port sets being present throughout the topologies described herein, which involve working with natural numbers and applying arithmetic operations.
Therefore, sending a given message d through a certain channel will be denoted by s i t e m { p o r t } ( d ) , whilst reading a particular message d out of a certain channel will be indicated by r { p o r t } i t e m ( d ) . This way, the former implies that the message exits out of a given item through a certain port, whereas the latter does that the message gets through a certain port into a given item. Moreover, communication is described by c i t e m { p o r t } { p o r t } i t e m ( d ) and covers the pass of information from source to destination.
Furthermore, the atomic actions being performed by an entity may relate among them by means of a set of operators, such as the sequential one, which is stated by ·, the alternate one, which is indicated by +, the concurrent one, which is established by , or the conditional one, which is described as ( True condition False ) [20].
Hence, the behavior of an entity may be described by means of an algebraic expression, showing the concatenation of atomic actions along with the appropriate operators, which usually exhibits recursivity in order to portray a never-ending cycle. In addition, a sequence of events may be achieved running all the expressions describing a model in a concurrent manner, which may further lead to obtaining of the external behavior of such a model.
Additionally, the encapsulation operator, which is denoted by H , will force all internal atomic actions into either communication if there is a send action at one end of a channel and a read action at the other one, or otherwise they go deadlock, thus obtaining a sequence of events due to the interaction of all entities being part of the system [21]. At a later stage, the abstraction operator, which is described by τ I will mask both internal actions and internal communications, hence allowing only the external atomic actions, thus unveiling the external behavior of the model [22]. At that point, the external behavior of the real system may also be worked out, and if both external behaviors share the same string of actions and the same branching structure, it may be concluded that they are both rooted branching bisimilar, which is a sufficient condition to have a model verified [23].
Regarding the channels available within the model, up to seven channels may be defined, where just the fog hybrid model will use all of them, as the fog spoke one will employ the cloud channels but not the fog-to-fog channels, and the fog full mesh one will do so the other way around. Anyway, Table 4 summarizes such channels, where the nomenclature of each channel is given by detailing the source item followed by the source end in curly brackets, then a right arrow signaling the direction of such a channel and, in turn, the destination end in curly brackets and the destination end. Furthermore, Table 5 states which channels are used in each of the three models studied. In summary, it is worth saying that the relationships between the intermediate devices and their ports involved when moving from source host a and destination host b are quoted in Table 4, whereas the channels used in each of the models proposed are cited in Table 5.
On the other hand, artificial intelligence may be applied at all intermediate nodes, resulting in edge AI, fog AI and cloud AI, where they are obviously incrementally more powerful. Hence, decision making related to packet forwarding so as to guide traffic flows from a given source to their indented destination may be denoted at those levels in the form of AI edge , AI fog and AI cloud , respectively. This way, raw traffic data before processing are represented by ( d ) , whilst after processing they are represented by ( e ) .
In the context of this paper, it is to be said that the communication approach undertaken herein does not need AI in any way to move traffic among end hosts, as the different channels forming the path from a source host a to a destination host b may be easily found out by applying the arithmetic expressions cited above. However, in order to give a more generic view of the application of this arithmetic framework, AI has been included in all intermediate devices, such as AI edge, AI fog or AI cloud, which might imply that other type of processing could be performed in such nodes.
Therefore, at this point the models for the three case scenarios are going to be represented by means of ACP. It is to be noted that each of the three scenarios proposed are being model with ACP following three stages, where the first one involves the algebraic models of each type of entity being present in such a model (D for devices, E for edges, F for fogs and G for clouds), then the second one involves running all entities concurrently, which shows up the sequence of events happening in the model, and the third one involves obtaining the external behavior of the model, which in turn is compared with the external behavior of the real system in order to obtain the verification of the model according to ACP rules.

6.1. Fog Spoke Scenario

First of all, the four entities involved in this scenario are going to be modelled so as to describe their behavior in an algebraic fashion, such as devices (D), edge nodes (E), fog nodes (F) and the cloud node (G), whereas p denotes any downlink port within an edge server, q denotes fog servers and u denotes the cloud server.
In this sense, recursive Equation (11) states that a particular device D x may either receive (r) any message (d) through its port 0 or send (s) any message (d) through its port 0 and will keep doing that forever, which is expressed by means of recursivity (thus executing D x indefinitely). It is to be noted that such an equation describes the behavior of any device within the topology, those going from 0 to k 3 1 , as there are up to k 3 devices overall within the topology proposed.
On the other hand, recursive Equation (12) denotes that a particular edge node E y , those going from 0 to k 2 1 , may either receive a message through any of its lower ports (p), which will be forwarded down towards the destination device if intraedge communication takes place, or otherwise, that message is sent up towards its upper port k. In addition, if a message is coming from its upper port, that messages is forwarded down towards the destination device.
Similarly, recursive Equation (13) states that a given fog node F z , those going from 0 to k 1 , may either receive a message through any of its lower ports (q), which will be sent down towards the destination edge node if intrafog communication arises, or otherwise, that message is forwarded up towards its upper port k. Moreover, if a message is coming down its upper port, such a message is sent down towards the destination edge node.
Furthermore, recursive Equation (14) indicates that if a message is received through any port (u) located in the only cloud node G, such a message is forwarded down through the destination fog node. As stated above, some A I processing has also been include in the previous expressions in order to include any kind of processing with the incoming messages d, which might be considered as raw data, in order to be converted into processed data, those being denoted by outgoing messages e:
D x = x = 0 k 3 1 r { 0 } D x ( d ) + s D x { 0 } ( d ) · D x
E y = y = 0 k 2 1 p = 0 k 1 ( r { p } E y ( d ) · AI edge · s E y { b | k } ( e ) a / k = b / k s E y { k } ( d ) + r { k } E y ( e ) · s E y { b | k } ( e ) ) · E y
F z = z = 0 k 1 q = 0 k 1 ( r { q } F z ( d ) · AI fog · s F z { b / k | k } ( e ) a / k 2 = b / k 2 s F z { k } ( d ) + r { k } F z ( e ) · s F z { b / k | k } ( e ) ) · F z
G = u = 0 k 1 r { u } G ( d ) · AI cloud · s G { b / k 2 | k } ( e ) · G
At this stage, the encapsulation operator may be applied in order to obtain a sequence of events within the model of intermediate items, thus considering devices as external items, which is exhibited in Equation (15).
It is to be noted that the destination ports have been completely described in the aforesaid models, although their corresponding intermediate destination items have been cited generically (by means of variables y and z), whereas all intermediate source items and their appropriate source ports have also been quoted generically.
However, in this context, all the intermediate remote servers involved in a certain communication, no matter whether they are located either on the edge, fog or cloud layers, may be easily spotted by means of the appropriate expressions depending on a, b and k, as exposed in Table 4, whilst likewise, their source downlink ports involved, namely, p, q and u, may also be determined therein:
y = 0 k 2 1 z = 0 k 1 H E y F z G = ( r { a | k } E a / k ( d ) · ( AI edge a / k = b / k c E a / k { k } { a / k | k } F a / k 2 ( d ) · ( AI fog a / k 2 = b / k 2 c F a / k 2 { k } { a / k 2 | k } G a / k 3 ( d ) · AI cloud · c G b / k 3 { b / k 2 | k } { k } F b / k 2 ( e ) ) · c F b / k 2 { b / k | k } { k } E b / k ( e ) ) · s E b / k { b | k } ( e ) ) · H E y F z G
At this point, the abstraction operator may be applied so as to attain the external behavior of the model. Hence, if only external actions prevail, those are either receiving a message in a node located at the edge layer whose downlink port is coming from source host a, or otherwise, sending a message from another node situated at such a layer whose downlink port is going towards destination host b, as shown in Equation (16):
y = 0 k 2 1 z = 0 k 1 τ I H E y F z G = r E { a | k } a / k ( d ) · s E b / k { b | k } ( e ) · τ I H E y F z G
On the other hand, here it comes the external behavior of the real system, where its incoming port is called I N and its outgoing port is named O U T , as seen in Equation (17):
X = r I N ( d ) · s O U T ( e ) · X
By undertaking a comparison of both previous expressions, it may seem clear that both are recursive equations being multiplied by the same factors, so they obviously share the same string of actions and the same branching structure, leading to Equation (18):
y = 0 k 2 1 z = 0 k 1 τ I H E y F z G X
Hence, that is a sufficient condition to have a model verified. Therefore, the ACP model presented herein may be considered as duly verified.

6.2. Fog Full Mesh Scenario

To start with, there are only three entities involved in this scenario to be modeled, such as devices (D), edge nodes (E) and fog nodes (F), as there is no cloud node, whereas p and q denote generic source downlink ports within a given item. Moreover, the description of D and E matches those stated in the previous case, whilst the difference is in the behavior of F, where there is always a direct channel between a source fog F a / k 2 and a destination fog F b / k 2 , with the source end of such a channel is located in the former and the destination end is situated in the latter. Moreover, the AI fog is applied in the common fog node in case of intrafog traffic flows, whilst it is applied in the destination fog node is case of interfog communications, that being cited as AI fog , as it is exhibited in Equation (19).
F z = z = 0 k 1 q = 0 k 1 ( r { q } F z ( d ) · ( s F z { b / k | k } ( e ) AI fog s F z { k + F b / k 2 F b / k 2 / ( F a / k 2 + 1 ) k } ( d ) ) + r { k + F a / k 2 F a / k 2 / ( F b / k 2 + 1 ) k } F z ( d ) · AI fog · s F z { b / k | k } ( e ) ) · F z
At this stage, the encapsulation operator may be applied so as to attain a sequence of events within the model of intermediate items, thus taking devices as external items, as indicated in Equation (20):
y = 0 k 2 1 z = 0 k 1 H E y F z G = ( r { a | k } E a / k ( d ) · ( AI edge a / k = b / k c E a / k { k } { a / k | k } F a / k 2 ( d ) · ( AI fog a / k 2 = b / k 2 c F a / k 2 { k + F b / k 2 F b / k 2 / ( F a / k 2 + 1 ) k } { k + F a / k 2 F a / k 2 / ( F b / k 2 + 1 ) k } F b / k 2 ( d ) ) · AI fog · c F b / k 2 { b / k | k } { k } E b / k ( e ) ) · s E b / k { b | k } ( e ) ) · H E y F z G
It is to be noted that after the application of the abstraction operator, the results obtained are analogous to those achieved in the intracloud case scenario, as the external behavior matches in both cases.

6.3. Fog Hybrid Scenario

It is to be considered that this case is just a mixture of both previous cases, thus allowing for two different ways to face interfog communications, which is denoted by the + operator. Hence, the four entities are modeled, such as devices (D), edge nodes (E), fog nodes (F) and cloud node (G), where they are all like in the first case, except for the fog nodes (F), where intracloud and full mesh paths may be both available. In addition, it is to be noted that its port going towards the cloud is labeled as 2 k 1 , thus keeping the same uplink port scheme presented in the full mesh case scenario, as it is shown in Equation (21):
F z = z = 0 k 1 q = 0 k 1 ( r { q } F z ( d ) · ( AI fog · s F z { b / k | k } ( e ) a / k 2 = b / k 2 s F z { 2 k 1 } ( d ) + s F z { k + F b / k 2 F b / k 2 / ( F a / k 2 + 1 ) k } ( d ) ) + r { k } F z ( e ) + r { k + F a / k 2 F a / k 2 / ( F b / k 2 + 1 ) k } F z ( d ) · AI fog · s F z { b / k | k } ( e ) ) · F z
At this stage, the encapsulation operator may be applied so as to achieve a sequence of events within the model of intermediate items, thus classifying devices as external items, as seen in Equation (22):
y = 0 k 2 1 z = 0 k 1 H E y F z G = ( r { a | k } E a / k ( d ) · ( AI edge a / k = b / k c E a / k { k } { a / k | k } F a / k 2 ( d ) · ( AI fog a / k 2 = b / k 2 ( c F a / k 2 { k } { a / k 2 | k } G a / k 3 ( d ) · AI cloud · c G b / k 3 { b / k 2 | k } { k } F b / k 2 ( e ) + c F a / k 2 { k + F b / k 2 F b / k 2 / ( F a / k 2 + 1 ) k } { k + F a / k 2 F a / k 2 / ( F b / k 2 + 1 ) k } F b / k 2 ( d ) · AI fog ) ) · c F b / k 2 { b / k | k } { k } E b / k ( e ) ) · s E b / k { b | k } ( e ) ) · H E y F z G
As stated in the fog full mesh case scenario, it is to be noted that after applying the abstraction operator, the results attained are analogous to those obtained in the intracloud case scenario, as the external behavior matches in both cases.

7. Conclusions

In this paper, an arithmetic framework for numbering nodes and devices, along with their ports, aimed at generic edge computing environments has been proposed. To start with, a small introduction on edge computing has been developed, followed by some mathematical background regarding integer divisions and modular arithmetic. Afterwards, the foundation of the edge computing model proposed has been exposed by presenting the different layers being part of it, along with the representation of items and their ports located on each of those layers.
At that stage, the features of the MEC model proposed have been exhibited, such as intraedge and intrafog communications, followed by three different approaches related to interfog one. After that, diverse theorems have been presented so as to assure that each of those communications do really take place with the MEC model proposed. Eventually, all three diverse scenarios have been modeled with ACP in order to find out whether the external behavior of such models match those of the real system being modeled, concluding that all models become duly verified.

Author Contributions

Conceptualization, P.J.R.; formal analysis, P.J.R.; supervision, K.G., C.B. and C.J.; validation, S.A. All authors have read and agreed to the published version of the manuscript.

Funding

This research received no external funding.

Institutional Review Board Statement

Not applicable.

Informed Consent Statement

Not applicable.

Data Availability Statement

Not applicable.

Conflicts of Interest

The authors declare no conflict of interest.

Abbreviations

The following abbreviations are used in this manuscript:
ACPAlgebra of Communicating Processes
AIArtificial Intelligence
CNNConvolutional Neural Networks
DSData Science
FDTFormal Description Techniques
IoTInternet of Things
LANLocal Area Network
MECMulti-Access Edge Computing
OSIOpen Systems Interconnection
WANWide Area Network

References

  1. Quasim, M.T. Resource Management and Task Scheduling for IoT using Mobile Edge Computing. Wirel. Pers. Commun. 2021, 1–18. [Google Scholar] [CrossRef]
  2. Humayun, M. Role of Emerging IoT Big Data and Cloud Computing for Real Time Application. Int. J. Adv. Comput. Sci. Appl. 2020, 11, 494–506. [Google Scholar] [CrossRef]
  3. Singh, J.; Singh, P.; Gill, S.S. Fog computing: A taxonomy, systematic review, current trends and research challenges. J. Parallel Distrib. Comput. 2021, 157, 56–85. [Google Scholar] [CrossRef]
  4. Agarwal, G.K.; Magnusson, M.; Johanson, A. Edge AI Driven Technology Advancements Paving Way Towards New Capabilities. Int. J. Innov. Technol. Manag. 2021, 18, 2040005. [Google Scholar] [CrossRef]
  5. Wang, Q.; Liu, L.; Zhang, S.; Lau, F.C.M. On Massive IoT Connectivity with Temporally-Correlated User Activity. arXiv 2021, arXiv:2101.11344. [Google Scholar]
  6. Deng, S.; Zhao, H.; Fang, W.; Yin, J.; Dustdar, S.; Zomaya, A.Y. Edge Intelligence: The Confluence of Edge Computing and Artificial Intelligence. IEEE Internet Things J. 2020, 7, 7457–7469. [Google Scholar] [CrossRef] [Green Version]
  7. Elbir, A.M.; Papazafeiropoulos, A.K.; Chatzinotas, S. Federated Learning for Physical Layer Design. IEEE Commun. Mag. 2021, 59, 81–87. [Google Scholar] [CrossRef]
  8. Kjorveziroski, V.; Filiposka, S.; Trajkovic, V. IoT Serverless Computing at the Edge: Open Issues and Research Direction. Computers 2021, 10, 130. [Google Scholar] [CrossRef]
  9. Rong, G.; Xu, Y.; Tong, X.; Fan, H. An edge-cloud collaborative computing platform for building AIoT applications efficiently. J. Cloud Comput. 2021, 10, 36. [Google Scholar] [CrossRef]
  10. Bergstra, J.A.; Middleburg, C.A. Using Hoare Logic in a Process Algebra Setting. Fundam. Infor. 2021, 179, 321–344. [Google Scholar] [CrossRef]
  11. Euclidean Division: Integer Division with Remainders. Available online: https://www.probabilisticworld.com/euclideandivision-integer-division-with-remainders/ (accessed on 11 November 2021).
  12. The Division Theorem in Z and R[T]. Available online: https://kconrad.math.uconn.edu/blurbs/ringtheory/divthm.pdf/ (accessed on 11 November 2021).
  13. Modular Arithmetic—Introduction. Available online: https://artofproblemsolving.com/wiki/index.php/Modular_arithmetic/Introduction/ (accessed on 11 November 2021).
  14. Bagade, P.; Banerjee, A.; Gupta, S.K.S. Validation, Verification, and Formal Methods for Cyber-Physical Systems. In Cyber-Physical Systems. Foundations, Principles and Applications; Academic Press: Boston, MA, USA, 2017; pp. 175–191. [Google Scholar]
  15. Al-Fares, M.; Loukissas, A.; Vahdat, A. A scalable, commodity data center network architecture. ACM SIGCOMM Comput. Commun. Rev. 2008, 38, 63–74. [Google Scholar] [CrossRef]
  16. Sahni, Y.; Cao, J.; Zhang, S.; Yang, L. Edge Mesh: A New Paradigm to Enable Distributed Intelligence in Internet of Things. IEEE Access 2017, 5, 16441–16458. [Google Scholar] [CrossRef]
  17. Fokkink, W. Modelling Distributed Systems, 2nd ed.; Springer: Berlin/Heidelberg, Germany, 2017. [Google Scholar]
  18. Groote, J.F.; Keiren, J.J.A. Tutorial: Designing Distributed Software in mCRL2. In Formal Techniques for Distributed Objects, Components, and Systems (FORTE 2021); Lecture Notes in Computer Science; Springer: Cham, Switzerland, 2021; Volume 12719, pp. 226–243. [Google Scholar]
  19. Aceto, L.; Castiglioni, V.; Fokkink, W.; Igólfsdóttir, A.; Luttik, B. Are Two Binary Operators Necessary to Finitely Axiomatise Parallel Composition? In Proceedings of the 29th EACSL Annual Conference on Computer Science Logic (CSL 2021), Dagstuhl, Germany, 13 January 2021; Volume 183, pp. 1–17. [Google Scholar]
  20. Reijnen, F.; Leliveld, E.B.; van de Mortel-Fronczak, J.; van Dinther, J.; Rooda, J.; Fokkink, W. Synthesized fault-tolerant supervisory controllers, with an application to a rotating bridge. Comput. Ind. 2021, 130, 103473. [Google Scholar] [CrossRef]
  21. Groote, J.F.; Mousavi, M.R. Modeling and Analysis of Communicating Systems, 1st ed.; MIT Press: Cambridge, MA, USA, 2014. [Google Scholar]
  22. Zaitsev, D.A.; Shmeleva, T.R.; Groote, J.F. Verification of hypertorus communication grids by infinite petri nets and process algebra. IEEE/CAA J. Autom. Sin. 2019, 6, 733–742. [Google Scholar] [CrossRef]
  23. Fokkink, W. Introduction to Process Algebra, 2nd ed.; Springer: Berlin/Heidelberg, Germany, 2007. [Google Scholar]
Figure 1. Instance of the arithmetic framework proposed.
Figure 1. Instance of the arithmetic framework proposed.
Sensors 22 00421 g001
Figure 2. Layer hierarchy within the framework proposed.
Figure 2. Layer hierarchy within the framework proposed.
Sensors 22 00421 g002
Figure 3. A generic device layout within the framework proposed.
Figure 3. A generic device layout within the framework proposed.
Sensors 22 00421 g003
Figure 4. A generic edge node layout within the framework proposed.
Figure 4. A generic edge node layout within the framework proposed.
Sensors 22 00421 g004
Figure 5. A generic fog node layout for the hub and spoke mode within the framework proposed.
Figure 5. A generic fog node layout for the hub and spoke mode within the framework proposed.
Sensors 22 00421 g005
Figure 6. A generic fog node layout for the full mesh mode within the framework proposed.
Figure 6. A generic fog node layout for the full mesh mode within the framework proposed.
Sensors 22 00421 g006
Figure 7. A generic fog node layout for the hybrid mode within the framework proposed.
Figure 7. A generic fog node layout for the hybrid mode within the framework proposed.
Sensors 22 00421 g007
Figure 8. A generic cloud node layout within the framework proposed.
Figure 8. A generic cloud node layout within the framework proposed.
Sensors 22 00421 g008
Figure 9. Schematic diagram for intraedge communication.
Figure 9. Schematic diagram for intraedge communication.
Sensors 22 00421 g009
Figure 10. Schematic diagram for intrafog communication.
Figure 10. Schematic diagram for intrafog communication.
Sensors 22 00421 g010
Figure 11. Schematic diagram for hub and spoke interfog communication.
Figure 11. Schematic diagram for hub and spoke interfog communication.
Sensors 22 00421 g011
Figure 12. Schematic diagram for full mesh interfog communication.
Figure 12. Schematic diagram for full mesh interfog communication.
Sensors 22 00421 g012
Figure 13. Port layout for full mesh fog communication when k = 5 .
Figure 13. Port layout for full mesh fog communication when k = 5 .
Sensors 22 00421 g013
Figure 14. Schematic diagram for hybrid interfog communication.
Figure 14. Schematic diagram for hybrid interfog communication.
Sensors 22 00421 g014
Table 1. Alternative ways for calculating the quotient when dealing with integer division.
Table 1. Alternative ways for calculating the quotient when dealing with integer division.
Type of Integer DivisionCharacteristic Feature
Standard Euclidean divisionRemainder is always positive
Floored divisionRemainder always has the same sign of the divisor
Ceiled divisionRemainder always has the opposite sign of the divisor
Rounded divisionRemainder always has the least absolute value
Truncated divisionRemainder always has the same sign as the Dividend
Negative remaindersRemainder is always negative
Greatest absolute valueRemainder always has the greatest absolute value
Different sign from dividendRemainder always has the different sign from the Dividend
Table 2. Number of devices for each layer in a hub and spoke interfog scenario within the MEC framework proposed.
Table 2. Number of devices for each layer in a hub and spoke interfog scenario within the MEC framework proposed.
LayerItems
in Any Layer
Items
per Edge Layer
Items
per Fog Layer
Items
per Cloud Layer
Cloud k 0 = 1N/AN/A1
Fog k 1 = k N/A1k
Edge k 2 1k k 2
IoT Devices k 3 k k 2 k 3
Table 3. Number of devices for each layer in a full mesh interfog scenario within the MEC framework proposed.
Table 3. Number of devices for each layer in a full mesh interfog scenario within the MEC framework proposed.
LayerItems
in Any Layer
Items
per Edge Layer
Items
per Fog Layer
Items
per Cloud Layer
Cloud k 0 = 1 N/AN/AN/A
Fog k 1 = k N/A1k
Edge k 2 1k k 2
IoT Devices k 3 k k 2 k 3
Table 4. Channels defined within the model and their nomenclature.
Table 4. Channels defined within the model and their nomenclature.
Channel NameNomenclature
source devicesource edge D a { 0 } { a | k } E a / k
source edgesource fog E a / k { k } { a / k | k } F a / k 2
source fogcloud F a / k 2 { k } { a / k 2 | k } G a / k 3
clouddest.fog G b / k 3 { b / k 2 | k } { k } F b / k 2
dest.fogdest.edge F b / k 2 { b / k | k } { k } E b / k
dest.edgedest.device E b / k { b | k } { 0 } D b
source fog ( F i )dest.fog ( F j ) F i { k + F j F j / F i + 1 k } { k + F i F i / F j + 1 k } F j
Table 5. Channels defined within the model and their usages.
Table 5. Channels defined within the model and their usages.
Channel NameModel
Cloud
Model
Full Mesh
Model
Hybrid
source devicesource edge
source edgesource fog
source fogcloud
clouddest. fog
dest. fogdest. edge
dest. edgedest. device
source fog ( F i )dest. fog ( F j )
Publisher’s Note: MDPI stays neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Share and Cite

MDPI and ACS Style

Roig, P.J.; Alcaraz, S.; Gilly, K.; Bernad, C.; Juiz, C. Arithmetic Framework to Optimize Packet Forwarding among End Devices in Generic Edge Computing Environments. Sensors 2022, 22, 421. https://doi.org/10.3390/s22020421

AMA Style

Roig PJ, Alcaraz S, Gilly K, Bernad C, Juiz C. Arithmetic Framework to Optimize Packet Forwarding among End Devices in Generic Edge Computing Environments. Sensors. 2022; 22(2):421. https://doi.org/10.3390/s22020421

Chicago/Turabian Style

Roig, Pedro Juan, Salvador Alcaraz, Katja Gilly, Cristina Bernad, and Carlos Juiz. 2022. "Arithmetic Framework to Optimize Packet Forwarding among End Devices in Generic Edge Computing Environments" Sensors 22, no. 2: 421. https://doi.org/10.3390/s22020421

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop