Complete the code to deploy an edge node in a SCADA system.
deploy_edge_node --location [1] --connectivity stableThe edge node should be deployed at the field_site to process data close to the source.
Complete the code to configure data filtering on the edge device.
configure_filter --device_id 101 --filter_type [1]
Using a threshold filter reduces data sent to the central system by only forwarding important changes.
Fix the error in the edge node update command.
update_edge_node --node_id 55 --firmware_version [1]
The correct firmware version format is v1.2.3 with a 'v' prefix.
Fill both blanks to set up edge data caching with correct parameters.
setup_cache --cache_size [1] --cache_expiry [2]
Setting cache size to 512MB and expiry to 30m balances memory use and data freshness.
Fill all three blanks to define an edge processing rule for temperature data.
define_rule --sensor [1] --condition [2] --action [3]
The rule triggers an alert when temp_sensor_7 readings are greater than a limit, so send_alert is the action.