You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Develop a new device/application strategy by extending the DeviceStrategy class. Your algorithm should be distinct from the existing ones but can utilise properties already involved (such as cloud costs) in combination with unused properties.
Recommended directions:
Certain IoT data can only be processed by specific nodes. Your algorithm should consider the data type when selecting a node.
Implement an algorithm that takes into account a trust value. Initially, all nodes should have the same trust value; however, this value should change positively or negatively based on specific events. For example, the trust value could decrease if a node’s load exceeds a certain threshold, if the cost of operating a node becomes too high, or if the node becomes unavailable at random intervals.
Implement a weighted score algorithm that calculates a score for each node based on several criteria. The node with the highest score will be selected for processing IoT data.
Develop a threshold-based selection method to filter nodes based on predefined thresholds. Nodes that exceed the specified cost or load thresholds or fall below the minimum trust value will be excluded from consideration.
The text was updated successfully, but these errors were encountered:
Develop a new device/application strategy by extending the DeviceStrategy class. Your algorithm should be distinct from the existing ones but can utilise properties already involved (such as cloud costs) in combination with unused properties.
Recommended directions:
The text was updated successfully, but these errors were encountered: