qiaojialin commented on code in PR #400: URL: https://github.com/apache/iotdb-docs/pull/400#discussion_r1833777035
########## src/zh/UserGuide/Master/User-Manual/Data-subscription.md: ########## @@ -0,0 +1,428 @@ +# 数据订阅 + +## 1. 功能介绍 + +IoTDB 数据订阅模块(又称 IoTDB 订阅客户端)是IoTDB V1.3.3 版本后支持的功能,它为用户提供了一种区别于数据查询的流式数据消费方式。它参考了 Kafka 等消息队列产品的基本概念和逻辑,**提供数据订阅和消费接口**,但并不是为了完全替代这些消费队列的产品,更多的是在简单流式获取数据的场景为用户提供更加便捷的数据订阅服务。 + +在下面应用场景中,使用 IoTDB 订阅客户端消费数据会有显著的优势: + +1. **替换大量数据的轮询查询**:避免查询频率高、测点多时,轮询查询对原有系统性能的较大影响;避免查询范围不好确定问题,可保证下游拿到准确全量的数据; Review Comment: ```suggestion 1. **持续获取最新数据**:使用订阅的方式,比定时查询更实时、应用编程更简单、系统负担更小; ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
