courses > Cellular IoT Foundations > IoT product lifecycle overview

7.4

Support and maintenance lifecycle

TL;DR

Key takeaways

1

Observability beats a ping.

Monitor connectivity, hardware health, data quality, power status, and security to catch issues before they hit the business.

2

FOTA keeps a fleet secure without recalls.

A/B partitioning downloads updates to an inactive slot and auto-rolls-back on failure, preventing bricked devices.

3

Delta updates save constrained bandwidth.

Sending only the binary difference can shrink an update by about 95% and cut transfer time by roughly 80% which is critical for NB-IoT.

4

Predictive maintenance replaces fixed schedules.

Modeling Remaining Useful Life (RUL) with regression, classification, or deep learning enables just-in-time service and can cut unplanned downtime by up to 50%.

5

Supply chain work never stops.

Multi-sourcing and component life-cycle monitoring must continue through the entire operational life to survive surprise obsolescence.

6

Sunset devices securely.

Cryptographic erasure, certificate revocation, certified hardware disposal, and WEEE compliance prevent both security breaches and environmental harm.

Deployment day is exciting, but it begins the longest phase of the IoT product lifecycle. A fleet in the field may need to run reliably for 10 to 20 years, which means firmware updates, battery monitoring, security patches, predictive maintenance, supply chain vigilance, and eventually secure decommissioning. This lesson covers the key components of post-deployment support and what it takes to keep a fleet healthy over its entire operational life.

What you'll learn

What deep observability means beyond "is the device online?"

Enterprise IoT operations require continuous metrics across the device, gateway, and cloud layers. Simple connectivity checks are not enough; you need observability across five dimensions:

  • Connectivity: RSSI (signal strength), packet loss rate, and reconnection frequency, to spot dead spots, interference, or carrier issues.
  • Hardware health: CPU usage, memory drift, and internal temperature, whose abnormal patterns can signal firmware bugs or component degradation.
  • Data quality: Timestamp precision, deduplication rates, and schema drift, because corrupted data undermines the value of the whole system.
  • Power status: Battery state of charge (SOC) and discharge rate per transmission cycle, to predict when a device needs a battery replacement.
  • Security: Authentication success rates and unusual connection or topic-access patterns, which are early indicators of intrusion or credential leakage.

How Firmware-Over-the-Air (FOTA) updates work safely

When monitoring surfaces a vulnerability, a persistent bug, or a performance regression, you need to deploy a fix without physically recalling thousands of devices. This makes FOTA an operational necessity. Its core safety mechanism is A/B partitioning: storage is split into an active and an inactive slot. Updates download to the inactive slot while the active slot keeps running; the device then verifies the digital signature, reboots into the new firmware, and runs a post-update connectivity check. If it cannot reach the cloud within a timeout, it automatically rolls back to the previous firmware on the other partition.

For bandwidth-constrained deployments, especially NB-IoT devices delta updates transmit only the binary difference between firmware versions rather than the whole image. This can cut file size by roughly 95% (for example, from 410 KB to 20 KB) and reduce transfer time by around 80%.

How predictive maintenance differs from proactive and reactive approaches

Traditional maintenance follows fixed schedules like replacing batteries every 12 months, and inspecting hardware quarterly. Predictive maintenance moves to just-in-time predictions based on actual device behavior. Its primary metric is Remaining Useful Life (RUL), the estimated time between a device's current state and predicted failure. Machine learning models analyze patterns like battery discharge curves, signal trends, and temperature fluctuations. Three common modeling approaches:

  • Regression models predict a continuous value, such as RUL in hours or days, from historical sensor data.
  • Classification algorithms sort devices into risk buckets (healthy, watch, critical) from current telemetry.
  • Deep learning (LSTM / CNN) handles complex, non-linear degradation patterns where statistical methods fall short.

Combined with digital twins, predictive maintenance forms the backbone of proactive fleet management, and organizations using these techniques can reduce unplanned downtime by up to 50%.

Why supply chain vigilance continues after deployment

Post-deployment supply chain management ensures you can keep building, repairing, and maintaining the product for its full lifespan. Because nearly 30% of semiconductor EOL events occur without formal notice, the multi-source design, PCN/PDN workflows, and alternate qualification practices from manufacturing must stay active throughout the operational life not just during the initial build.

How to securely sunset and decommission devices

Every device eventually reaches end of life, and a poorly managed sunset leaves unmonitored devices in the field leaving an expanding attack surface and a contributor to e-waste. Secure decommissioning has four steps:

  • Data sanitization: Use cryptographic erasure to irrevocably delete encryption keys, the most efficient method for flash-based devices. NIST distinguishes "clearing" (simple recovery protection) from "purging" (lab-grade protection).
  • Certificate revocation: Revoke device certificates using a Certificate Revocation List (CRL) for batch processing or the Online Certificate Status Protocol (OCSP) for real-time revocation.
  • Hardware disposal: Work with IT Asset Disposition (ITAD) partners holding R2v3 or NAID AAA certifications, documenting disposal by serial number for environmental audits.
  • WEEE compliance: Manufacturers must provide collection and recycling for products at end of life, which frequently contain hazardous materials such as lead and mercury.
quiz

Lesson 7.4 Self-assessment

1. What safety mechanism lets a FOTA (Firmware-Over-the-Air) update roll back if it fails?

2. What is the primary metric used in predictive maintenance?

3. Which step of secure decommissioning irrevocably deletes a device's encryption keys?

faq

Frequently asked questions