This is an automated email from the ASF dual-hosted git repository.

CritasWang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iotdb-docs.git


The following commit(s) were added to refs/heads/main by this push:
     new 3d2a122f Update community onboarding documentation (#1173)
3d2a122f is described below

commit 3d2a122f6f77f949c1dd1540593daabd57efd905
Author: PengchengZheng <[email protected]>
AuthorDate: Thu Jun 25 14:36:30 2026 +0800

    Update community onboarding documentation (#1173)
    
    * Update community onboarding documentation
    
    The Contributor onboarding section referenced a personal blog post from
    ~6 years ago for "how to debug IoTDB server", which no longer matches the
    current codebase (reported in discussion #17575). Replace it with the
    maintained README and Development Guide, and restructure the section into a
    clear path: set up accounts -> get the code running -> understand the
    design -> pick a task.
    
    Also fix the WeChat official account name in the Chinese channel page (it
    was outdated) and remove the discontinued DingTalk group entry.
    
    Co-Authored-By: Claude Opus 4.8 <[email protected]>
    
    * Emphasize mailing list and tidy onboarding links
    
    Make the developer mailing list the primary entry point for new
    contributors instead of leading with Jira/Confluence accounts. For finding
    tasks, list GitHub Issues before Jira. Replace the Confluence design-doc
    pointer with guidance to read the source together with the README, since
    the Confluence space is no longer actively maintained.
    
    Also convert the "download and installation" link from a relative path to
    the official website URL, consistent with the other links in the section.
    
    Co-Authored-By: Claude Opus 4.8 <[email protected]>
    
    ---------
    
    Co-authored-by: Claude Opus 4.8 <[email protected]>
---
 src/Community/About-the-Community.md | 44 +++++++++++++++++++++++-------------
 src/zh/Community/About.md            | 44 +++++++++++++++++++++++-------------
 src/zh/Community/Feedback.md         |  5 ++--
 3 files changed, 58 insertions(+), 35 deletions(-)

diff --git a/src/Community/About-the-Community.md 
b/src/Community/About-the-Community.md
index 802ce9f8..c01484e4 100644
--- a/src/Community/About-the-Community.md
+++ b/src/Community/About-the-Community.md
@@ -96,22 +96,34 @@ Referring to the Apache Software Foundation's community 
philosophy, our communit
 
 ### Contributor
 
-- Set up a development platform account:
-  - Create a Jira account: 
[https://issues.apache.org/jira/projects/IOTDB/issues](https://issues.apache.org/jira/projects/IOTDB/issues)
 to claim an issue.
-  - Create a Confluence account: 
[https://cwiki.apache.org/confluence/display/IOTDB/Home](https://cwiki.apache.org/confluence/display/IOTDB/Home).
 This will be used to write the design documentation.
-    Once created, send an email to the mailing list with **Introduction** and 
**Jira ID** and **Confluence ID** and the community PMC will add permissions to 
the account.
-- Long Term Matters:
-  - Learn how to debug IoTDB
-    - [How to debug IoTDB 
server](https://my.oschina.net/u/3664598/blog/4500279)
-  - Understand the basics of using IoTDB
-    - [IoTDB download and 
installation](../UserGuide/latest/Deployment-and-Maintenance/IoTDB-Package_apache.md)
-    - [IoTDB Quick Start 
Guide](https://iotdb.apache.org/UserGuide/latest/QuickStart/QuickStart_apache.html)
-    - [Data Schema and 
Concepts](https://iotdb.apache.org/UserGuide/latest/Basic-Concept/Data-Model-and-Terminology.html)
-    - [API 
Interface](https://iotdb.apache.org/UserGuide/latest/API/Programming-Java-Native-API.html)
-  - Understand IoTDB's Internal Design
-    - [IoTDB Design 
Documentation](https://cwiki.apache.org/confluence/display/IOTDB/Home)
-  - Finding tasks to be done
-    - [Resolving Issues on 
Jira](https://issues.apache.org/jira/projects/IOTDB/issues)
+Becoming a Contributor requires no election: anyone who makes a valid 
contribution to the project is a Contributor. The following is a recommended 
path to start contributing to IoTDB from scratch.
+
+#### Step 1: Join the community discussion
+
+- Subscribe to the developer mailing list <[email protected]>. The mailing 
list is the official communication channel of the Apache community, where 
development plans, technical discussions, and requests for help all take place. 
See [Communication 
Channels](https://iotdb.apache.org/Community/Communication-Channels.html) for 
how to subscribe.
+- When participating for the first time, feel free to send an email to 
introduce yourself. If you run into any problems during development, you can 
start a discussion on the mailing list.
+
+#### Step 2: Get the code running
+
+- To clone the source, build from source, and start and debug IoTDB in an IDE, 
refer to the documentation in the code repository:
+  - [Apache IoTDB 
README](https://github.com/apache/iotdb/blob/master/README.md) (environment 
requirements, building, and starting DataNode/CLI with breakpoint debugging in 
IDEA)
+  - [Development 
Guide](https://iotdb.apache.org/Community/Development-Guide.html) (contribution 
workflow, code formatting, PR conventions, etc.)
+- To get familiar with IoTDB as a user first, see:
+  - [IoTDB download and 
installation](https://iotdb.apache.org/UserGuide/latest/Deployment-and-Maintenance/IoTDB-Package_apache.html)
+  - [IoTDB Quick Start 
Guide](https://iotdb.apache.org/UserGuide/latest/QuickStart/QuickStart_apache.html)
+  - [Data Schema and 
Concepts](https://iotdb.apache.org/UserGuide/latest/Basic-Concept/Data-Model-and-Terminology.html)
+  - [Java Native 
API](https://iotdb.apache.org/UserGuide/latest/API/Programming-Java-Native-API.html)
+
+#### Step 3: Understand the internal design
+
+- The design and implementation of IoTDB mainly live in the source code; 
reading it together with the 
[README](https://github.com/apache/iotdb/blob/master/README.md) is recommended.
+- If you have questions about the design, feel free to raise them on the 
mailing list <[email protected]>, where community members will join the 
discussion.
+
+#### Step 4: Pick a task and start contributing
+
+- You can look for tasks that interest you on [GitHub 
Issues](https://github.com/apache/iotdb/issues) or 
[Jira](https://issues.apache.org/jira/projects/IOTDB/issues), or describe what 
you would like to work on via the mailing list. Newcomers are encouraged to 
start with issues labeled newbie / good first issue.
+- For the full contribution workflow (submit a PR → review → merge), see the 
[Development Guide](https://iotdb.apache.org/Community/Development-Guide.html).
+- If you run into problems, feel free to ask via the mailing list or the 
channels listed in [Communication 
Channels](https://iotdb.apache.org/Community/Communication-Channels.html).
 
 ## Code of Conduct in the Apache Community
 
diff --git a/src/zh/Community/About.md b/src/zh/Community/About.md
index a265abbd..4d216cd1 100644
--- a/src/zh/Community/About.md
+++ b/src/zh/Community/About.md
@@ -100,22 +100,34 @@
 
 ### Contributor
 
-- 创建开发平台账号:
-  - 创建 Jira 
账号:[https://issues.apache.org/jira/projects/IOTDB/issues](https://issues.apache.org/jira/projects/IOTDB/issues)
 ,用来认领 issue。
-  - 创建 Confluence 
账号:[https://cwiki.apache.org/confluence/display/IOTDB/Home](https://cwiki.apache.org/confluence/display/IOTDB/Home)
 ,之后用来写设计文档。
-    创建好后,向邮件列表发送一封邮件,包括 **自我介绍** 以及 **Jira ID** 和 **Confluence ID**,社区 PMC 
会为账户添加权限。
-- 长期事项:
-  - 学习如何调试 IoTDB
-    - [如何调试 IoTDB server](https://my.oschina.net/u/3664598/blog/4500279)
-  - 学习 IoTDB 的基本使用
-    - [IoTDB 
下载与安装](../UserGuide/latest/Deployment-and-Maintenance/IoTDB-Package_apache.md)
-    - [IoTDB 
快速上手](https://iotdb.apache.org/zh/UserGuide/Master/QuickStart/QuickStart.html)
-    - 
[数据模式与概念](https://iotdb.apache.org/zh/UserGuide/latest/Basic-Concept/Data-Model-and-Terminology.html)
-    - [API 
接口](https://iotdb.apache.org/zh/UserGuide/latest/API/Programming-Java-Native-API.html)
-  - 了解 IoTDB 的内部设计
-    - [IoTDB 设计文档](https://cwiki.apache.org/confluence/display/IOTDB/Home)
-  - 寻找待做任务
-    - [在 Jira 上解决 issue](https://issues.apache.org/jira/projects/IOTDB/issues)
+成为 Contributor 不需要评选,任何向项目提交了有效贡献的人都是 Contributor。下面是从零开始参与 IoTDB 开发的推荐路径。
+
+#### 第一步:加入社区交流
+
+- 订阅开发者邮件列表 <[email protected]>。邮件列表是 Apache 
社区官方指定的交流渠道,开发计划、技术讨论、问题求助都在这里进行,订阅方式见[交流与反馈](https://iotdb.apache.org/zh/Community/Feedback.html)。
+- 第一次参与时,欢迎发一封邮件做个自我介绍。开发过程中遇到任何问题,都可以在邮件列表中发起讨论。
+
+#### 第二步:把代码跑起来
+
+- 拉取源码、从源码编译、在 IDE 中启动并调试 IoTDB,请参考代码仓库的说明文档:
+  - [Apache IoTDB 
README](https://github.com/apache/iotdb/blob/master/README.md)(环境要求、编译,以及在 IDEA 
中启动 DataNode/CLI、设置断点调试)
+  - 
[贡献指南](https://iotdb.apache.org/zh/Community/Development-Guide.html)(贡献流程、代码格式化、PR
 规范等)
+- 想先以普通用户身份了解 IoTDB,可参考:
+  - [IoTDB 
下载与安装](https://iotdb.apache.org/zh/UserGuide/latest/Deployment-and-Maintenance/IoTDB-Package_apache.html)
+  - [IoTDB 
快速上手](https://iotdb.apache.org/zh/UserGuide/latest/QuickStart/QuickStart.html)
+  - 
[数据模型与概念](https://iotdb.apache.org/zh/UserGuide/latest/Basic-Concept/Data-Model-and-Terminology.html)
+  - [Java 原生 
API](https://iotdb.apache.org/zh/UserGuide/latest/API/Programming-Java-Native-API.html)
+
+#### 第三步:了解内部设计
+
+- IoTDB 的设计与实现主要体现在源码中,建议结合 
[README](https://github.com/apache/iotdb/blob/master/README.md) 和源码阅读。
+- 对设计有疑问时,欢迎在邮件列表 <[email protected]> 中提出,社区成员会参与讨论。
+
+#### 第四步:找一个任务并开始贡献
+
+- 你可以在 [GitHub Issues](https://github.com/apache/iotdb/issues) 或 
[Jira](https://issues.apache.org/jira/projects/IOTDB/issues) 
上寻找感兴趣的任务,也可以在邮件列表中说明你想做的方向。新手建议从标记为新手友好(newbie / good first issue)的任务入手。
+- 完整的贡献流程(提交 PR → 审阅 → 
合并)请见[贡献指南](https://iotdb.apache.org/zh/Community/Development-Guide.html)。
+- 
遇到问题,欢迎随时通过[交流与反馈](https://iotdb.apache.org/zh/Community/Feedback.html)中的邮件列表、微信群或
 QQ 群提问。
 
 ## 社区公约
 
diff --git a/src/zh/Community/Feedback.md b/src/zh/Community/Feedback.md
index 1a5b430a..5fd4aad9 100644
--- a/src/zh/Community/Feedback.md
+++ b/src/zh/Community/Feedback.md
@@ -48,10 +48,9 @@ Github Issue 链接:<https://github.com/apache/iotdb/issues>
 ## 途径四:通过微信群、QQ 群等方式进行交流
 
 - 入群方式:
-  - 微信群——添加好友:apache_iotdb
+  - 微信群——添加好友:apache_iotdb
   - QQ 群——659990460
-  - 钉钉群:搜索群名称加入【Apache IoTDB 交流 1 群】
-  - 微信公众号:IoTDB 漫游指南
+  - 微信公众号:Apache IoTDB(微信号:Apache-IoTDB)
   - 我们非常期待您分享您使用 IoTDB 的经验:[调研问卷](https://github.com/apache/iotdb/issues/748)
 
 ## 途径五:通过 Slack 进行交流(全英文)

Reply via email to