惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

N
Netflix TechBlog - Medium
Blog — PlanetScale
Blog — PlanetScale
Google DeepMind News
Google DeepMind News
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
F
Fortinet All Blogs
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Stack Overflow Blog
Stack Overflow Blog
人人都是产品经理
人人都是产品经理
H
Hackread – Cybersecurity News, Data Breaches, AI and More
L
LangChain Blog
Microsoft Security Blog
Microsoft Security Blog
Apple Machine Learning Research
Apple Machine Learning Research
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
博客园_首页
IT之家
IT之家
V
V2EX
C
Check Point Blog
MongoDB | Blog
MongoDB | Blog
Last Week in AI
Last Week in AI
B
Blog
J
Java Code Geeks
大猫的无限游戏
大猫的无限游戏
雷峰网
雷峰网

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
IoT data into D365 Supply Chain: the Azure-native pattern
SapotaCorp · 2026-05-24 · via DEV Community
Cover image for IoT data into D365 Supply Chain: the Azure-native pattern

SapotaCorp

Logistics and distribution operators running Dynamics 365 Supply Chain Management increasingly need the product of live operational data: shipments tracked by GPS, inventory reads from RFID, vehicle status from telemetry. The question isn't whether to do it - the question is whether to build custom pipelines or use what Microsoft already ships.

Three architectures show up in discussion. Two of them fail at scale.

The pattern that doesn't survive contact with reality

Teams unfamiliar with the Azure telemetry stack often draft one of:

  • Excel + batch imports: store sensor readings in spreadsheets, import to F&O via DMF every hour. Fails because sensor volumes (thousands of readings per second across a fleet) break Excel long before they get close to F&O's batch window.
  • Third-party integration platform with daily pushes: rents the problem and pushes it outside the team's control. Real-time predictive insights become yesterday's snapshot.
  • SharePoint manual logging: proposed surprisingly often in early architecture workshops. Doesn't scale past one pilot truck.

None of these deliver near-real-time data and none scale to fleet size.

The Azure-native pipeline

The pattern Microsoft's reference architectures recommend for this scenario:

  1. Ingestion layer: Azure IoT Hub receives telemetry from all devices (sensors, RFID readers, vehicle telemetry). One MQTT or AMQP endpoint per device class, scaled by IoT Hub units.
  2. Stream processing: Azure Stream Analytics reads from IoT Hub, windows the data (e.g., 1-minute rolling windows for vehicle position, 5-minute for inventory reads), runs aggregations and anomaly detection inline.
  3. Enrichment and routing: Stream Analytics outputs to multiple sinks - Dataverse for operational data consumed by Power Apps, Azure Service Bus for workflow triggers, Azure Blob for cold-storage analytics.
  4. Into D365: Power Automate flows triggered by Dataverse changes (or Service Bus messages) update F&O via data entities or business events. For very high throughput, bypass Power Automate and call F&O directly via a custom service.
  5. Analytics layer: the cold Blob store feeds Azure Synapse for predictive models; the predictions loop back via Dataverse into F&O's master planning inputs.

This stack scales to millions of events per day without custom infrastructure.

Trade-offs inside the pattern

The architecture has its own decisions:

  • Stream Analytics vs Azure Functions: Stream Analytics has declarative SQL-like syntax and built-in windowing. Functions give more flexibility at the cost of more code. Stream Analytics first, functions when you hit a wall.
  • Dataverse as the hot store vs F&O direct: Dataverse tolerates frequent writes better than F&O tables. Write to Dataverse, let dual-write or custom sync push to F&O on the schedule F&O can digest.
  • Power Automate vs custom service: Power Automate is fine up to a few hundred triggers per minute. Above that, a custom service on the F&O side is the escape hatch.
  • Data volume in F&O: don't push every sensor reading into F&O. Aggregate in Stream Analytics (e.g., "vehicle X at location Y for 15-minute window"), write the aggregates, let F&O carry only what planners actually query.

The last point catches most projects: the instinct to "have all the data in F&O" is what tanks F&O performance.

Security and operations

  • Device identity: each device gets an IoT Hub identity with X.509 cert or SAS key. Revocation handled via IoT Hub device registry.
  • Network isolation: Private Link between IoT Hub, Stream Analytics, and the F&O perimeter. Public endpoints only where unavoidable.
  • Monitoring: Azure Monitor dashboards on IoT Hub throughput, Stream Analytics latency, Dataverse write volumes. Alerts when any sink falls behind.
  • Cost controls: IoT Hub units and Stream Analytics streaming units are the two cost drivers. Size them against measured peak throughput, not imagined volume.

What ships with the architecture

A working IoT-to-F&O integration has: IoT Hub with device provisioning automation, Stream Analytics jobs for each data class with versioned SQL queries, Dataverse custom tables for the operational projections, Power Automate or custom-service writers to F&O, and a runbook for adding new device types without architecture review each time.

The build cost is front-loaded. The recurring cost is much lower than a custom integration platform because the glue layers (IoT Hub, Stream Analytics, Dataverse, Power Automate) are Microsoft-managed. That's the recommendation: lean on managed services, avoid infrastructure you'd otherwise own forever.