IoT 数据采集框架 (IoT-DC)
文章目录
IoT-DC framework
a IoT data collector framework and power by springboot+netty+rabbitmq/kafka
一个基于 springboot+netty+rabbitmq 实现的 物联网设备(IoT) 数据接入的项目
src: https://github.com/Theembers/iot-dc
thanks for star! 😃 ⭐⭐⭐⭐⭐
the obsolete version (branch:s-0.1) will be not update yet (except bug fix), the master will be rebuild as new one. thanks follow!
旧版本以封版(分支s-0.1)不再更新(除了bug修改),master 分支将启用新的设计,敬请期待!
🎉 new framework had be done! you can running with iot-example
-me.theembers.iot.TestCollector
to debug it.
🎉 新版本框架已基本完成!可以通过 iot-example
-me.theembers.iot.TestCollector
运行调试。
IoT platform framework (IoT平台总体架构设计)
about the new IoT-DC Framework (关于新版 IoT-DC Framework)
抽离了netty的实现逻辑,保留了基础框架
- iot-framework-dc 抽象了基础的接入逻辑模型。如下图:
-
router 模型 & device shadow 模型
路由器 (router),把接入的数据分发到符合规则 (rule) 的处理器 (processor) 中进行处理。
-
processor-link 模型
router 通过选择器 (Selector) 选择出的导航 (Route) 维护了一个调度者 (Dispatcher) 调度者负责管理被使用的 processor链 以及 processor 的调用 规则:
1 | /** |
- iot-dc-netty-server 是之前的netty实现,目前(2019-11-07)只是迁移了老模块的代码,后期会修改结构,所以暂不做架构说明。新分支侧着架构设计,所以具体实现可能要延后实现。