Skip to content

Commit 34cbddd

Browse files
authored
Both the modeling and writing chapters have added explanations for no… (#491)
1 parent 54b8e72 commit 34cbddd

File tree

32 files changed

+64
-0
lines changed

32 files changed

+64
-0
lines changed

src/UserGuide/Master/Tree/Basic-Concept/Data-Model-and-Terminology.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ After a database is set, the ancestral layers, children and descendant layers of
5757

5858
The Layer Name of database can only consist of characters, numbers, and underscores, like `root.storagegroup_1`.
5959

60+
**Schema-less writing**: When metadata is not defined, data can be directly written through an insert statement, and the required metadata will be automatically recognized and registered in the database, achieving automatic modeling.
61+
6062
### Path
6163

6264
A `path` is an expression that conforms to the following constraints:

src/UserGuide/Master/Tree/Basic-Concept/Write-Delete-Data.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ Writing a repeat timestamp covers the original timestamp data, which can be rega
3333

3434
The [INSERT SQL statement](../SQL-Manual/SQL-Manual.md#insert-data) statement is used to insert data into one or more specified timeseries created. For each point of data inserted, it consists of a [timestamp](../Basic-Concept/Data-Model-and-Terminology.md) and a sensor acquisition value (see [Data Type](../Basic-Concept/Data-Type.md)).
3535

36+
**Schema-less writing**: When metadata is not defined, data can be directly written through an insert statement, and the required metadata will be automatically recognized and registered in the database, achieving automatic modeling.
37+
3638
In the scenario of this section, take two timeseries `root.ln.wf02.wt02.status` and `root.ln.wf02.wt02.hardware` as an example, and their data types are BOOLEAN and TEXT, respectively.
3739

3840
The sample code for single column data insertion is as follows:

src/UserGuide/V0.13.x/Data-Concept/Data-Model-and-Terminology.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ After a storage group is set, the ancestral layers, children and descendant laye
5353

5454
The Layer Name of storage group can only consist of characters, numbers and underscores, like `root.storagegroup_1`.
5555

56+
**Schema-less writing**: When metadata is not defined, data can be directly written through an insert statement, and the required metadata will be automatically identified and registered in the storage group, achieving automatic modeling.
57+
5658
### Path
5759

5860
A `path` is an expression that conforms to the following constraints:

src/UserGuide/V0.13.x/Write-And-Delete-Data/Write-Data.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ This section mainly introduces the use of [INSERT SQL statement](../Reference/SQ
2929

3030
The [INSERT SQL statement](../Reference/SQL-Reference.md) statement is used to insert data into one or more specified timeseries created. For each point of data inserted, it consists of a [timestamp](../Data-Concept/Data-Model-and-Terminology.md) and a sensor acquisition value (see [Data Type](../Data-Concept/Data-Type.md)).
3131

32+
**Schema-less writing**: When metadata is not defined, data can be directly written through an insert statement, and the required metadata will be automatically identified and registered in the storage group, achieving automatic modeling.
33+
3234
In the scenario of this section, take two timeseries `root.ln.wf02.wt02.status` and `root.ln.wf02.wt02.hardware` as an example, and their data types are BOOLEAN and TEXT, respectively.
3335

3436
The sample code for single column data insertion is as follows:

src/UserGuide/V1.0.x/Data-Concept/Data-Model-and-Terminology.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ After a database is set, the ancestral layers, children and descendant layers of
5555

5656
The Layer Name of database can only consist of characters, numbers, and underscores, like `root.storagegroup_1`.
5757

58+
**Schema-less writing**: When metadata is not defined, data can be directly written through an insert statement, and the required metadata will be automatically recognized and registered in the database, achieving automatic modeling.
59+
5860
### Path
5961

6062
A `path` is an expression that conforms to the following constraints:

src/UserGuide/V1.0.x/Write-Data/Write-Data.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ Writing a repeat timestamp covers the original timestamp data, which can be rega
3131

3232
The [INSERT SQL statement](../Reference/SQL-Reference.md) statement is used to insert data into one or more specified timeseries created. For each point of data inserted, it consists of a [timestamp](../Data-Concept/Data-Model-and-Terminology.md) and a sensor acquisition value (see [Data Type](../Data-Concept/Data-Type.md)).
3333

34+
**Schema-less writing**: When metadata is not defined, data can be directly written through an insert statement, and the required metadata will be automatically recognized and registered in the database, achieving automatic modeling.
35+
3436
In the scenario of this section, take two timeseries `root.ln.wf02.wt02.status` and `root.ln.wf02.wt02.hardware` as an example, and their data types are BOOLEAN and TEXT, respectively.
3537

3638
The sample code for single column data insertion is as follows:

src/UserGuide/V1.1.x/Data-Concept/Data-Model-and-Terminology.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ After a database is set, the ancestral layers, children and descendant layers of
5555

5656
The Layer Name of database can only consist of characters, numbers, and underscores, like `root.storagegroup_1`.
5757

58+
**Schema-less writing**: When metadata is not defined, data can be directly written through an insert statement, and the required metadata will be automatically recognized and registered in the database, achieving automatic modeling.
59+
5860
### Path
5961

6062
A `path` is an expression that conforms to the following constraints:

src/UserGuide/V1.1.x/Write-Data/Write-Data.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ Writing a repeat timestamp covers the original timestamp data, which can be rega
3131

3232
The [INSERT SQL statement](../Reference/SQL-Reference.md) statement is used to insert data into one or more specified timeseries created. For each point of data inserted, it consists of a [timestamp](../Data-Concept/Data-Model-and-Terminology.md) and a sensor acquisition value (see [Data Type](../Data-Concept/Data-Type.md)).
3333

34+
**Schema-less writing**: When metadata is not defined, data can be directly written through an insert statement, and the required metadata will be automatically recognized and registered in the database, achieving automatic modeling.
35+
3436
In the scenario of this section, take two timeseries `root.ln.wf02.wt02.status` and `root.ln.wf02.wt02.hardware` as an example, and their data types are BOOLEAN and TEXT, respectively.
3537

3638
The sample code for single column data insertion is as follows:

src/UserGuide/V1.2.x/Basic-Concept/Data-Model-and-Terminology.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ The Layer Name of database can only consist of characters, numbers, and undersco
5757

5858
> Note :Database name do not support enclosing * in back quotes, e.g., root.\ ` * \ `, but the rest of the level is free of this restriction.
5959
60+
**Schema-less writing**: When metadata is not defined, data can be directly written through an insert statement, and the required metadata will be automatically recognized and registered in the database, achieving automatic modeling.
61+
6062
### Path
6163

6264
A `path` is an expression that conforms to the following constraints:

src/UserGuide/V1.2.x/User-Manual/Write-Delete-Data.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ Writing a repeat timestamp covers the original timestamp data, which can be rega
3333

3434
The [INSERT SQL statement](../SQL-Manual/SQL-Manual.md) statement is used to insert data into one or more specified timeseries created. For each point of data inserted, it consists of a [timestamp](../Basic-Concept/Data-Model-and-Terminology.md) and a sensor acquisition value (see [Data Type](../Basic-Concept/Data-Type.md)).
3535

36+
**Schema-less writing**: When metadata is not defined, data can be directly written through an insert statement, and the required metadata will be automatically recognized and registered in the database, achieving automatic modeling.
37+
3638
In the scenario of this section, take two timeseries `root.ln.wf02.wt02.status` and `root.ln.wf02.wt02.hardware` as an example, and their data types are BOOLEAN and TEXT, respectively.
3739

3840
The sample code for single column data insertion is as follows:

0 commit comments

Comments
 (0)