@@ -196,7 +196,7 @@ A complete TDengine system runs on one or more physical nodes. Logically, it inc
...
@@ -196,7 +196,7 @@ A complete TDengine system runs on one or more physical nodes. Logically, it inc
To explain the relationship between vnode, mnode, taosc and application and their respective roles, the following is an analysis of a typical data writing process.
To explain the relationship between vnode, mnode, taosc and application and their respective roles, the following is an analysis of a typical data writing process.
![ typical process of TDengine](page://images/architecture/message.png)
![ typical process of TDengine](https://raw.githubusercontent.com/taosdata/TDengine/develop/documentation20/en/images/architecture/message.png)
<center> Picture 2 typical process of TDengine </center>
<center> Picture 2 typical process of TDengine </center>
1. Application initiates a request to insert data through JDBC, ODBC, or other APIs.
1. Application initiates a request to insert data through JDBC, ODBC, or other APIs.
...
@@ -265,6 +265,7 @@ If a database has N replicas, thus a virtual node group has N virtual nodes, but
...
@@ -265,6 +265,7 @@ If a database has N replicas, thus a virtual node group has N virtual nodes, but
<center> Picture 3 TDengine Slave Writing Process </center>
<center> Picture 3 TDengine Slave Writing Process </center>
1. Slave vnode receives a data insertion request forwarded by Master vnode.
1. Slave vnode receives a data insertion request forwarded by Master vnode.
...
@@ -415,7 +416,7 @@ For the data collected by device D1001, the number of records per hour is counte
...
@@ -415,7 +416,7 @@ For the data collected by device D1001, the number of records per hour is counte
TDengine creates a separate table for each data collection point, but in practical applications, it is often necessary to aggregate data from different data collection points. In order to perform aggregation operations efficiently, TDengine introduces the concept of STable. STable is used to represent a specific type of data collection point. It is a table set containing multiple tables. The schema of each table in the set is the same, but each table has its own static tag. The tags can be multiple and be added, deleted and modified at any time. Applications can aggregate or statistically operate all or a subset of tables under a STABLE by specifying tag filters, thus greatly simplifying the development of applications. The process is shown in the following figure:
TDengine creates a separate table for each data collection point, but in practical applications, it is often necessary to aggregate data from different data collection points. In order to perform aggregation operations efficiently, TDengine introduces the concept of STable. STable is used to represent a specific type of data collection point. It is a table set containing multiple tables. The schema of each table in the set is the same, but each table has its own static tag. The tags can be multiple and be added, deleted and modified at any time. Applications can aggregate or statistically operate all or a subset of tables under a STABLE by specifying tag filters, thus greatly simplifying the development of applications. The process is shown in the following figure:
![Diagram of multi-table aggregation query](page://images/architecture/multi_tables.png)
![Diagram of multi-table aggregation query](https://raw.githubusercontent.com/taosdata/TDengine/develop/documentation20/en/images/architecture/multi_tables.png)
<center> Picture 4 Diagram of multi-table aggregation query </center>
<center> Picture 4 Diagram of multi-table aggregation query </center>