Event-Driven Integration · 2024 · Addverb Technologies

UPS Healthcare — Movu Robotic Shuttle Integration

Integrated 50+ Movu robotic shuttles and automated lifts into the existing ASRS platform for a US-based UPS Healthcare warehouse — unifying orchestration across heterogeneous hardware and exposing real-time shuttle health to operators.

RoleSoftware Development Engineer
Timeline2024
Scale50+ shuttles · 99.9% telemetry capture
Impact−70% downtime diagnosis time

Problem

UPS Healthcare deployed Movu robotic shuttles on top of an existing ASRS. The two stacks spoke different protocols and kept their own state, so operators had no single view of shuttle health. Incidents (stalled shuttles, failed handoffs, lift timeouts) took hours to triage and blocked pharma-grade throughput SLAs.

My Contribution

Tech Stack

High-Level Design (HLD)

flowchart LR
  SH["Movu Shuttles
(50+)"] -->|REST / TCP| ADAPT["Movu Adapter
Service"] LF["Automated Lifts"] --> ADAPT ADAPT --> Q[(RabbitMQ)] Q --> ING["Telemetry Ingestor"] ING --> M[(MongoDB
time-series)] Q --> ASRS["ASRS Core
(Spring Boot)"] ASRS <--> DB[(MySQL)] M --> DASH["Health Dashboard
(Grafana)"] ASRS --> UI["Operator UI"]

Low-Level Design — Telemetry Path

sequenceDiagram
  autonumber
  participant S as Shuttle
  participant A as Movu Adapter
  participant Q as RabbitMQ (topic: shuttle.telemetry)
  participant I as Ingestor
  participant M as MongoDB
  participant G as Grafana

  S->>A: heartbeat + status (1Hz)
  A->>Q: publish telemetry event
  Q->>I: consume (idempotent)
  I->>M: upsert shuttle state (doc)
  I-->>Q: ack
  G->>M: query (last 5m window)
  G-->>Operator: live shuttle health panel

  Note over Q,M: DLQ + replay path for transient failures
                

Impact