-
Notifications
You must be signed in to change notification settings - Fork 260
/
dir.yaml
812 lines (788 loc) · 26.4 KB
/
dir.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
---
# How it is organised
#
# - Each doc node is a yaml dict
# - A doc node is either a grouping node or a content node
# - A doc node may have edition: ee for enterprise only content
#
# Grouping node
# - Must have a 'title_en' (English), 'title_cn' (Chinese) is optional wehn no need to translate. e.g. FAQ
# - Parent nodes must NOT have a 'path'
#
# Content node can be one of:
# - Just the path to the markdown file (the first line of which is extracted as its title)
# the path is relative inside the per-language sub-dir i.e. en_US and zh_CN
# - A node with 'title_en' 'title_cn' and 'path'
- title_en: EMQX Overview
title_cn: EMQX 概览
path: './' # this is the index page, {en_US,zh_CN}/README.md is the content
collapsed: true
children:
- title_en: What's New
title_cn: 全新功能
path: getting-started/new-features
- title_en: Feature Comparison
title_cn: 功能对比
path: getting-started/feature-comparison
- title_en: Get Started
title_cn: 快速开始
path: getting-started/getting-started
- title_en: Operating Limitations
title_cn: 使用限制
path: getting-started/restrictions
- title_en: FAQ
title_cn: 常见问题解答
collapsed: true
children:
- title_en: Concept FAQs
title_cn: 概念问题
path: faq/concept
- title_en: Deployment FAQs
title_cn: 部署问题
path: faq/deployment
- title_en: Feature FAQs
title_cn: 功能问题
path: faq/feature
- title_en: Usage FAQs
title_cn: 使用问题
path: faq/faq
- title_en: Technical Support
title_cn: 技术支持
path: support/technical-support
- title_en: Product Roadmap
title_cn: 产品路线图
path: getting-started/roadmap
- title_en: Installation and Deployment
title_cn: 安装部署
path: deploy/install
collapsed: true
children:
- title_en: Install EMQX Enterprise
title_cn: 安装 EMQX 企业版
path: deploy/install-enterprise
collapsed: true
children:
- title_en: Deploy
title_cn: Docker
path: deploy/install-docker
- title_en: Debian
title_cn: Debian
path: deploy/install-debian
- title_en: Ubuntu
title_cn: Ubuntu
path: deploy/install-ubuntu
- title_en: CentOS/RHEL
title_cn: CentOS/RHEL
path: deploy/install-rhel
- title_en: macOS
title_cn: macOS
path: deploy/install-macOS
- title_en: Kubernetes
title_cn: Kubernetes
lang: en
path: 'https://docs.emqx.com/en/emqx-operator/latest/getting-started/getting-started.html'
- title_en: Kubernetes
title_cn: Kubernetes
lang: cn
path: 'https://docs.emqx.com/zh/emqx-operator/latest/getting-started/getting-started.html'
# - deploy/install-marketplace
- title_en: Work with License
title_cn: 配置 License
path: deploy/license
- title_en: Install EMQX Open Source
title_cn: 安装 EMQX 开源版
path: deploy/install-open-source
collapsed: true
children:
- title_en: Deploy
title_cn: Docker
path: deploy/install-docker-ce
- title_en: Debian
title_cn: Debian
path: deploy/install-debian-ce
- title_en: Ubuntu
title_cn: Ubuntu
path: deploy/install-ubuntu-ce
- title_en: CentOS/RHEL
title_cn: CentOS/RHEL
path: deploy/install-rhel-ce
- title_en: macOS
title_cn: macOS
path: deploy/install-macOS-ce
- title_en: Kubernetes
title_cn: Kubernetes
lang: en
path: 'https://docs.emqx.com/en/emqx-operator/latest/getting-started/getting-started.html'
- title_en: Kubernetes
title_cn: Kubernetes
lang: cn
path: 'https://docs.emqx.com/zh/emqx-operator/latest/getting-started/getting-started.html'
- title_en: Install from Source Code
title_cn: 源码编译安装
path: deploy/install-source
- title_en: Upgrade Guide
title_cn: 升级指南
collapsed: true
children:
- title_en: Rolling Upgrade
title_cn: 滚动升级
path: deploy/rolling-upgrades
- deploy/upgrade-cluster
- title_en: Upgrade EMQX on Kubernetes
title_cn: Upgrade EMQX on Kubernetes
lang: en
path: https://www.emqx.com/en/blog/how-to-upgrade-emqx-in-kubernetes
- title_en: 在 Kubernetes 中升级 EMQX
title_cn: 在 Kubernetes 中升级 EMQX
lang: cn
path: https://www.emqx.com/zh/blog/how-to-upgrade-emqx-in-kubernetes
# - deploy/hot-upgrades
# - title_en: Migrate to Enterprise
# title_cn: 迁移到企业版
# path: deploy/migrate-to-enterprise
- title_en: Developer Guide
title_cn: 开发者指南
path: connect-emqx/developer-guide
collapsed: true
children:
- title_en: Publish/Subscribe
title_cn: 发布订阅
path: messaging/introduction
collapsed: true
children:
- messaging/mqtt-concepts
- messaging/publish-and-subscribe
# - messaging/explore-mqtt
- messaging/mqtt-shared-subscription
- messaging/mqtt-retained-message
- messaging/mqtt-will-message
- messaging/mqtt-exclusive-subscription
- messaging/mqtt-delayed-publish
- messaging/mqtt-auto-subscription
- messaging/mqtt-topic-rewrite
- messaging/mqtt-wildcard-subscription
# - messaging/nanomq
# - messaging/neuron
- durability/durability_introduction
- title_en: Client SDK
title_cn: 客户端 SDK
path: connect-emqx/introduction
collapsed: true
children:
- connect-emqx/c
- connect-emqx/java
- connect-emqx/go
- connect-emqx/python
- connect-emqx/javascript
- title_en: MQTT Wechat miniprogram example
title_cn: MQTT 微信小程序示例
lang: cn
path: connect-emqx/wechat-miniprogram
- title_en: REST API
title_cn: REST API
path: admin/api
collapsed: true
children:
- title_en: EMQX Enterprise API Docs
title_cn: EMQX Enterprise API Docs
lang: en
path: https://docs.emqx.com/en/enterprise/v${EE_MINOR_VERSION}/admin/api-docs.html
- title_en: EMQX 企业版 API 文档
title_cn: EMQX 企业版 API 文档
lang: cn
path: https://docs.emqx.com/zh/enterprise/v${EE_MINOR_VERSION}/admin/api-docs.html
- title_en: EMQX Open Source API Docs
title_cn: EMQX Open Source API Docs
lang: en
path: https://docs.emqx.com/en/emqx/v${CE_MINOR_VERSION}/admin/api-docs.html
- title_en: EMQX 开源版 API 文档
title_cn: EMQX 开源版 API 文档
lang: cn
path: https://docs.emqx.com/zh/emqx/v${CE_MINOR_VERSION}/admin/api-docs.html
- title_en: EMQX Clustering
title_cn: 构建集群
path: deploy/cluster/introduction
collapsed: true
children:
- deploy/cluster/mria-introduction
- deploy/cluster/create-cluster
- deploy/cluster/security
- title_en: Configure Load Balancer
title_cn: 集群负载均衡
path: deploy/cluster/lb
children:
- deploy/cluster/lb-nginx
- deploy/cluster/lb-haproxy
- title_en: Node Evacuation and Cluster Load Rebalancing
title_cn: 节点疏散与集群负载重平衡
path: deploy/cluster/rebalancing
- title_en: Performance and Tuning
title_cn: 性能与调优
path: performance/overview
children:
- performance/tune
- performance/benchmark-emqtt-bench
- performance/benchmark-xmeter
- performance/performance-reference
- title_en: Security Guide
title_cn: 安全指南
path: access-control/security-guide
collapsed: true
children:
- title_en: Network and TLS
title_cn: 网络与 TLS
path: network/overview
collapsed: true
children:
- network/emqx-mqtt-tls
- network/mqtt-client-tls
- network/tls-certificate
- network/crl
- network/ocsp
- title_en: GMSSL
title_cn: 国密 SSL
lang: cn
path: network/gmssl
# - network/ipv6
- title_en: Authentication
title_cn: 认证
path: access-control/authn/authn
collapsed: true
children:
- access-control/authn/x509
- access-control/authn/jwt
- title_en: Password-Based Authentication
title_cn: 密码认证
path: access-control/authn/pwoverview
collapsed: true
children:
- access-control/authn/mnesia
- access-control/authn/mysql
- access-control/authn/mongodb
- access-control/authn/postgresql
- access-control/authn/redis
- access-control/authn/ldap
- access-control/authn/http
- access-control/authn/scram
- access-control/authn/scram_restapi
- access-control/authn/kerberos
- access-control/authn/cinfo
- network/psk-authentication
- access-control/authn/user_management
- access-control/authn/acl
- title_en: Authorization
title_cn: 授权
path: access-control/authz/authz
collapsed: true
children:
- access-control/authz/file
- access-control/authz/mnesia
- access-control/authz/mysql
- access-control/authz/mongodb
- access-control/authz/postgresql
- access-control/authz/redis
- access-control/authz/ldap
- access-control/authz/http
- access-control/blacklist
- access-control/flapping-detect
- title_en: Rule Engine
title_cn: 规则引擎
path: data-integration/rules
collapsed: true
children:
- data-integration/rule-get-started
- data-integration/rule-sql-syntax
- data-integration/rule-sql-events-and-fields
- data-integration/rule-sql-builtin-functions
- data-integration/rule-sql-jq
# - data-integration/rule-sql-user-defined-function
- title_en: Schema Registry
title_cn: Schema
path: data-integration/schema-registry
collapsed: true
children:
- data-integration/schema-registry-example-avro
- data-integration/schema-registry-example-protobuf
- title_en: Schema Validation
title_cn: Schema 验证
path: data-integration/schema-validation
- title_en: Message Transformation
title_cn: 消息转换
path: data-integration/message-transformation
- title_en: Sparkplug
title_cn: Sparkplug
path: data-integration/sparkplug
- title_en: Flow Designer
title_cn: Flow 设计器
path: flow-designer/introduction
- title_en: Data Integration
title_cn: 数据集成
path: data-integration/data-bridges
collapsed: true
children:
- data-integration/connector
- title_en: Webhook
title_cn: Webhook
path: data-integration/webhook
- title_en: Apache Kafka
title_cn: Apache Kafka
path: data-integration/data-bridge-kafka
- title_en: Apache IoTDB
title_cn: Apache IoTDB
path: data-integration/data-bridge-iotdb
- title_en: Apache Pulsar
title_cn: Apache Pulsar
path: data-integration/data-bridge-pulsar
- title_en: AWS Kinesis
title_cn: AWS Kinesis
path: data-integration/data-bridge-kinesis
- title_en: AWS S3
title_cn: AWS S3
path: data-integration/s3
- title_en: Azure Blob Storage
title_cn: Azure Blob Storage
path: data-integration/azure-blob-storage
- title_en: Azure Event Hubs
title_cn: Azure Event Hubs
path: data-integration/data-bridge-azure-event-hub
- title_en: Cassandra
title_cn: Cassandra
path: data-integration/data-bridge-cassa
- title_en: ClickHouse
title_cn: ClickHouse
path: data-integration/data-bridge-clickhouse
- title_en: Confluent
title_cn: Confluent
path: data-integration/confluent-sink
- title_en: Couchbase
title_cn: Couchbase
path: data-integration/data-bridge-couchbase
- title_en: Datalayers
title_cn: Datalayers
path: data-integration/data-bridge-datalayers
- title_en: DynamoDB
title_cn: DynamoDB
path: data-integration/data-bridge-dynamo
- title_en: Elasticsearch
title_cn: Elasticsearch
path: data-integration/elasticsearch
- title_en: GCP PubSub
title_cn: GCP PubSub
path: data-integration/data-bridge-gcp-pubsub
- title_en: GreptimeDB
title_cn: GreptimeDB
path: data-integration/data-bridge-greptimedb
- title_en: HStreamDB
title_cn: HStreamDB
path: data-integration/data-bridge-hstreamdb
- title_en: HTTP Server
title_cn: HTTP Server
path: data-integration/data-bridge-webhook
- title_en: InfluxDB
title_cn: InfluxDB
path: data-integration/data-bridge-influxdb
- title_en: Microsoft SQL Server
title_cn: Microsoft SQL Server
path: data-integration/data-bridge-sqlserver
- title_en: MongoDB
title_cn: MongoDB
path: data-integration/data-bridge-mongodb
- title_en: MQTT
title_cn: MQTT
path: data-integration/data-bridge-mqtt
- title_en: MySQL
title_cn: MySQL
path: data-integration/data-bridge-mysql
- title_en: OpenTSDB
title_cn: OpenTSDB
path: data-integration/data-bridge-opents
- title_en: Oracle Database
title_cn: Oracle Database
path: data-integration/data-bridge-oracle
- title_en: PostgreSQL
title_cn: PostgreSQL
path: data-integration/data-bridge-pgsql
- title_en: RabbitMQ
title_cn: RabbitMQ
path: data-integration/data-bridge-rabbitmq
- title_en: Redis
title_cn: Redis
path: data-integration/data-bridge-redis
- title_en: RocketMQ
title_cn: RocketMQ
path: data-integration/data-bridge-rocketmq
- title_en: Snowflake
title_cn: Snowflake
path: data-integration/snowflake
- title_en: SysKeeper
title_cn: SysKeeper
path: data-integration/syskeeper
- title_en: TDengine
title_cn: TDengine
path: data-integration/data-bridge-tdengine
- title_en: TimescaleDB
title_cn: TimescaleDB
path: data-integration/data-bridge-timescale
# TODO
# - title_en: Examples and Tutorials
# title_cn: 示例和教程
# children:
# - data-integration/rule-configs
- title_en: Administration Guide
title_cn: 管理员指南
path: admin/admin-guide
collapsed: true
children:
- title_en: Configuration Files
title_cn: 配置文件
path: configuration/configuration
collapsed: true
children:
- title_en: Cluster
title_cn: 集群
path: configuration/cluster
- title_en: Listener
title_cn: 监听器
path: configuration/listener
- title_en: MQTT
title_cn: MQTT
path: configuration/mqtt
- title_en: Flapping Detection
title_cn: 连接抖动
path: configuration/flapping
- title_en: Limiter
title_cn: 速率限制器
path: configuration/limiter
- title_en: Logs
title_cn: 日志
path: configuration/logs
- title_en: Prometheus
title_cn: Prometheus
path: configuration/prometheus
- title_en: Dashboard
title_cn: Dashboard
path: configuration/dashboard
- title_en: License
title_cn: License
path: configuration/license
- title_en: EMQX Enterprise Configuration Manual
title_cn: EMQX 企业版配置手册
lang: cn
path: https://docs.emqx.com/zh/enterprise/v${EE_VERSION}/hocon/
- title_en: EMQX Enterprise Configuration Manual
title_cn: EMQX 企业版配置手册
lang: en
path: https://docs.emqx.com/en/enterprise/v${EE_VERSION}/hocon/
- title_en: EMQX Open Source Configuration Manual
title_cn: EMQX 开源版配置手册
lang: cn
path: https://docs.emqx.com/zh/emqx/v${CE_VERSION}/hocon/
- title_en: EMQX Open Source Configuration Manual
title_cn: EMQX 开源版配置手册
lang: en
path: https://docs.emqx.com/en/emqx/v${CE_VERSION}/hocon/
- title_en: Command Line Interface
title_cn: 命令行接口
path: admin/cli
- title_en: MQTT Durable Sessions
title_cn: MQTT 会话持久化
collapsed: true
children:
- durability/management
- durability/managing-replication
- title_en: EMQX Dashboard
title_cn: EMQX Dashboard
path: dashboard/introduction
collapsed: true
children:
- dashboard/dashboard
- title_en: Monitoring
title_cn: 监控
path: dashboard/monitoring
children:
- dashboard/connections/connections
- dashboard/subscriptions/overview
- dashboard/retained
- dashboard/delay-pub
- title_en: Access Control
title_cn: 访问控制
path: dashboard/acloverview
children:
- dashboard/authn
- dashboard/authz
- title_en: Integration
title_cn: 集成
path: dashboard/bridgeoverview
children:
- dashboard/rules
- dashboard/configuration
- dashboard/extensions
- dashboard/diagnose
- dashboard/system
- title_en: Single Sign-On (SSO)
title_cn: 单点登录 (SSO)
path: dashboard/sso
collapsed: true
children:
- dashboard/sso-ldap
- dashboard/sso-saml
- dashboard/sso-oidc
- dashboard/audit-log
- title_en: Rate Limit
title_cn: 速率限制
path: rate-limit/rate-limit
- title_en: Logs and Observability
title_cn: 日志及可观测性
path: observability/overview
collapsed: true
children:
- observability/metrics-and-stats
- observability/alarms
- observability/log
- observability/topic-metrics
- observability/slow-subscribers-statistics
- observability/tracer
- observability/mqtt-system-topics
- observability/prometheus
- observability/datadog
- title_en: Integrate with OpenTelemetry
title_cn: 集成 OpenTelemetry
path: observability/open-telemetry/open-telemetry
collapsed: true
children:
- title_en: Metrics
title_cn: 指标
path: observability/open-telemetry/metrics
- title_en: Logs
title_cn: 日志
path: observability/open-telemetry/logs
- title_en: Traces
title_cn: 追踪
path: observability/open-telemetry/traces
- title_en: Backup and Restore
title_cn: 备份与恢复
path: operations/backup-restore
- title_en: Plugin and Extension
title_cn: 插件与扩展
path: extensions/introduction
collapsed: true
children:
- extensions/hooks
- extensions/plugins
# - extensions/lang-lua
- extensions/exhook
- title_en: Telemetry
title_cn: 遥测
path: telemetry/telemetry
- title_en: Advanced Features
title_cn: 高级功能
collapsed: true
path: mqtt-over-quic/advanced-feature
children:
- title_en: MQTT over QUIC
title_cn: MQTT over QUIC
path: mqtt-over-quic/introduction
collapsed: true
children:
- title_en: Features and Benefits
title_cn: 优势与特性
path: mqtt-over-quic/features-mqtt-over-quic
- mqtt-over-quic/getting-started
# - mqtt-over-quic/client
- title_en: Cluster Linking
title_cn: 集群连接
path: cluster-linking/introduction
collapsed: true
children:
- cluster-linking/quick-start
- cluster-linking/configuration
- title_en: File Transfer over MQTT
title_cn: 基于 MQTT 的文件传输
path: file-transfer/introduction
collapsed: true
children:
- file-transfer/quick-start
- file-transfer/broker
- file-transfer/client
- title_en: Multi-Protocol Gateway
title_cn: 多协议网关
path: gateway/gateway
collapsed: true
children:
- gateway/stomp
- gateway/mqttsn
- gateway/coap
- gateway/lwm2m
- gateway/exproto
- title_en: OCPP Gateway
title_cn: OCPP 网关
path: gateway/ocpp
- title_en: JT/T 808 Gateway
title_cn: JT/T 808 协议网关
path: gateway/jt808
collapsed: true
children:
- gateway/jt808_data_exchange
- title_en: GB/T 32960 Gateway
title_cn: GB/T 32960 协议网关
path: gateway/gbt32960
#- gateway/tcp
- client-attributes/client-attributes
- title_en: Tutorials
title_cn: 实用教程
path: tutorial/tutorial
collapsed: true
children:
- tutorial/mqtt-programming
## Infrastructure
# MQTT over QUIC
# File transfer
## Dashboard
# Configuration
# - title_en: Back
# title_cn: 运维操作
# children:
# 备份与恢复
# - title_en: Hot Upgrades
# title_cn: 版本热升级
# path: deploy/hot-upgrades
# - title_en: Rolling Upgrades
# title_cn: 滚动升级
# path: deploy/hot-upgrades
# - operations/debug
# - operations/diagnostic-mode
# - operations/production-notes
## Device connectivity
# - title_en: Advanced MQTT Features
# title_cn: MQTT 高级特性
# children:
# - advanced/retained
# - advanced/shared-subscriptions
# - advanced/delayed-publish
# - advanced/auto-subscriptions
# - advanced/topic-rewrite
# - advanced/system-topic
# - advanced/quic
## Developers & Testers
- title_en: EMQX Essentials
title_cn: EMQX 基础知识
path: design/emqx-essentials
collapsed: true
children:
- title_en: MQTT Guide
title_cn: MQTT Guide
lang: en
path: https://www.emqx.com/en/mqtt-guide
- title_en: MQTT 教程
title_cn: MQTT 教程
lang: cn
path: https://www.emqx.com/zh/mqtt-guide
- title_en: Design and Implementation
title_cn: 设计与实现
path: design/overview
collapsed: true
children:
- design/clustering
- design/inflight-window-and-message-queue
- design/retransmission
# - design/design
# - title_en: SDK & Tools
# title_cn: SDK 与工具
# children:
# - development/client
# - development/c
# - development/java
# - development/go
# - development/erlang
# - development/javascript
# - development/python
# - development/resource
- title_en: Reference
title_cn: 参考指南
path: introduction/reference
collapsed: true
children:
- title_en: MQTT 5.0 Specification
title_cn: MQTT 5.0 协议
path: https://docs.oasis-open.org/mqtt/mqtt/v5.0/mqtt-v5.0.html
- title_en: MQTT 3.1.1 Specification
title_cn: MQTT 3.1.1 协议
path: http://docs.oasis-open.org/mqtt/mqtt/v3.1.1/os/mqtt-v3.1.1-os.html
- title_en: MQTT Glossary
title_cn: MQTT 术语
path: https://docs.oasis-open.org/mqtt/mqtt/v5.0/os/mqtt-v5.0-os.html#_Toc3901003
- title_en: MQTT 5.0 Features
title_cn: MQTT 5.0 Features
lang: en
path: https://www.emqx.com/en/blog/introduction-to-mqtt-5
- title_en: MQTT 5.0 特性
title_cn: MQTT 5.0 特性
lang: cn
path: https://www.emqx.com/zh/blog/introduction-to-mqtt-5
- title_en: MQTT Reason Code
title_cn: MQTT 原因码
path: https://www.emqx.com/en/blog/mqtt5-new-features-reason-code-and-ack
- title_en: Release Notes
title_cn: 版本发布历史
collapsed: true
children:
- title_en: EMQX Enterprise Release Notes
title_cn: EMQX 企业版版本发布历史
collapsed: true
path: changes/all-changes-ee
children:
- changes/changes-ee-v5
- changes/changes-ee-v4
- title_en: Known Issues
title_cn: 已知问题
children:
- changes/known-issues-5.8
- changes/known-issues-5.3
- changes/known-issues-5.1
- title_en: Incompatible Changes
title_cn: 不兼容变更
collapsed: true
children:
- changes/breaking-changes-ee-5.8
- changes/breaking-changes-ee-5.7
- changes/breaking-changes-ee-5.6
- changes/breaking-changes-ee-5.5
- changes/breaking-changes-ee-5.4
- title_en: Incompatible Changes between EMQX 4.4 and EMQX 5.1
title_cn: 从 EMQX 4.4 到 EMQX 5.1 的不兼容变更
path: changes/breaking-changes-5.1.0
collapsed: true
children:
- changes/auth-4.4-to-5.1-compatibility
- changes/data-integration-4.4-to-5.1-incompatibility
- changes/gateway-4.4-to-5.1-incompatibility
- title_en: End of Life Dates
title_cn: 产品生命周期结束日期
path: changes/eol-ee
- title_en: EMQX Open Source Release Notes
title_cn: EMQX 开源版版本发布历史
collapsed: true
path: changes/all-changes-ce
children:
- changes/changes-ce-v5
- changes/changes-ce-v4
- title_en: Version 0.1 to 3.x
title_cn: v0.1-v3.x 版本
path: changes/changes-ce-v3
- title_en: Incompatible Changes
title_cn: 不兼容变更
collapsed: true
children:
- changes/breaking-changes-ce-5.8
- changes/breaking-changes-ce-5.7
- changes/breaking-changes-ce-5.6
- changes/breaking-changes-ce-5.5
- changes/breaking-changes-ce-5.4
- title_en: Incompatible Changes between EMQX 4.4 and EMQX 5.1
title_cn: 从 EMQX 4.4 到 EMQX 5.1 的不兼容变更
path: changes/breaking-changes-5.1.0
collapsed: true
children:
- changes/auth-4.4-to-5.1-compatibility
- changes/data-integration-4.4-to-5.1-incompatibility
- changes/gateway-4.4-to-5.1-incompatibility