Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/UserGuide/Master/Reference/UDF-Libraries.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Based on the ability of user-defined functions, IoTDB provides a series of funct
| UDF-1.3.3.zip | V1.3.3 and above | [UDF.zip](https://alioss.timecho.com/upload/UDF-1.3.3.zip) |
| UDF-1.3.2.zip | V1.0.0~V1.3.2 | [UDF.zip](https://alioss.timecho.com/upload/UDF-1.3.2.zip) |

2. Place the library-udf.jar file from the obtained compressed package in the path of IoTDB at `/iotdb-enterprise-x.x.x.x-bin/ext/udf`
2. Place the library-udf.jar file in the compressed file obtained in the directory `/ext/udf ` of all nodes in the IoTDB cluster
3. In the SQL command line terminal (CLI) or visualization console (Workbench) SQL operation interface of IoTDB, execute the corresponding function registration statement as follows.
4. Batch registration: Two registration methods: registration script or SQL full statement
- Register Script
Expand Down
4 changes: 2 additions & 2 deletions src/UserGuide/Master/User-Manual/Operate-Metadata_apache.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,13 +327,13 @@ The SQL syntax for creating a metadata template is as follows:
CREATE DEVICE TEMPLATE <templateName> ALIGNED? '(' <measurementId> <attributeClauses> [',' <measurementId> <attributeClauses>]+ ')'
```

**Example 1:** Create a template containing two non-aligned timeseires
**Example 1:** Create a template containing two non-aligned timeseries

```shell
IoTDB> create device template t1 (temperature FLOAT encoding=RLE, status BOOLEAN encoding=PLAIN compression=SNAPPY)
```

**Example 2:** Create a template containing a group of aligned timeseires
**Example 2:** Create a template containing a group of aligned timeseries

```shell
IoTDB> create device template t2 aligned (lat FLOAT encoding=Gorilla, lon FLOAT encoding=Gorilla)
Expand Down
4 changes: 2 additions & 2 deletions src/UserGuide/Master/User-Manual/Operate-Metadata_timecho.md
Original file line number Diff line number Diff line change
Expand Up @@ -324,13 +324,13 @@ The SQL syntax for creating a metadata template is as follows:
CREATE DEVICE TEMPLATE <templateName> ALIGNED? '(' <measurementId> <attributeClauses> [',' <measurementId> <attributeClauses>]+ ')'
```

**Example 1:** Create a template containing two non-aligned timeseires
**Example 1:** Create a template containing two non-aligned timeseries

```shell
IoTDB> create device template t1 (temperature FLOAT encoding=RLE, status BOOLEAN encoding=PLAIN compression=SNAPPY)
```

**Example 2:** Create a template containing a group of aligned timeseires
**Example 2:** Create a template containing a group of aligned timeseries

```shell
IoTDB> create device template t2 aligned (lat FLOAT encoding=Gorilla, lon FLOAT encoding=Gorilla)
Expand Down
2 changes: 1 addition & 1 deletion src/UserGuide/Master/User-Manual/User-defined-function.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ CREATE FUNCTION <UDF-NAME> AS <UDF-CLASS-FULL-PATHNAME> (USING URI URI-STRING)
#### Method 1: Manually place the jar package

Prepare:
When registering using this method, it is necessary to place the JAR package in advance in the 'ext/udf' directory of all DataNodes in the cluster (which can be configured).
When registering using this method, it is necessary to place the JAR package in advance in the `ext/udf` directory of all nodes in the cluster (which can be configured).

Registration statement:

Expand Down
2 changes: 1 addition & 1 deletion src/UserGuide/latest/Reference/UDF-Libraries.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Based on the ability of user-defined functions, IoTDB provides a series of funct
| UDF-1.3.3.zip | V1.3.3 and above | [UDF.zip](https://alioss.timecho.com/upload/UDF-1.3.3.zip) |
| UDF-1.3.2.zip | V1.0.0~V1.3.2 | [UDF.zip](https://alioss.timecho.com/upload/UDF-1.3.2.zip) |

2. Place the library-udf.jar file from the obtained compressed package in the path of IoTDB at `/iotdb-enterprise-x.x.x.x-bin/ext/udf`
2. Place the library-udf.jar file in the compressed file obtained in the directory `/ext/udf ` of all nodes in the IoTDB cluster
3. In the SQL command line terminal (CLI) or visualization console (Workbench) SQL operation interface of IoTDB, execute the corresponding function registration statement as follows.
4. Batch registration: Two registration methods: registration script or SQL full statement
- Register Script
Expand Down
4 changes: 2 additions & 2 deletions src/UserGuide/latest/User-Manual/Operate-Metadata_apache.md
Original file line number Diff line number Diff line change
Expand Up @@ -324,13 +324,13 @@ The SQL syntax for creating a metadata template is as follows:
CREATE DEVICE TEMPLATE <templateName> ALIGNED? '(' <measurementId> <attributeClauses> [',' <measurementId> <attributeClauses>]+ ')'
```

**Example 1:** Create a template containing two non-aligned timeseires
**Example 1:** Create a template containing two non-aligned timeseries

```shell
IoTDB> create device template t1 (temperature FLOAT encoding=RLE, status BOOLEAN encoding=PLAIN compression=SNAPPY)
```

**Example 2:** Create a template containing a group of aligned timeseires
**Example 2:** Create a template containing a group of aligned timeseries

```shell
IoTDB> create device template t2 aligned (lat FLOAT encoding=Gorilla, lon FLOAT encoding=Gorilla)
Expand Down
4 changes: 2 additions & 2 deletions src/UserGuide/latest/User-Manual/Operate-Metadata_timecho.md
Original file line number Diff line number Diff line change
Expand Up @@ -324,13 +324,13 @@ The SQL syntax for creating a metadata template is as follows:
CREATE DEVICE TEMPLATE <templateName> ALIGNED? '(' <measurementId> <attributeClauses> [',' <measurementId> <attributeClauses>]+ ')'
```

**Example 1:** Create a template containing two non-aligned timeseires
**Example 1:** Create a template containing two non-aligned timeseries

```shell
IoTDB> create device template t1 (temperature FLOAT encoding=RLE, status BOOLEAN encoding=PLAIN compression=SNAPPY)
```

**Example 2:** Create a template containing a group of aligned timeseires
**Example 2:** Create a template containing a group of aligned timeseries

```shell
IoTDB> create device template t2 aligned (lat FLOAT encoding=Gorilla, lon FLOAT encoding=Gorilla)
Expand Down
2 changes: 1 addition & 1 deletion src/UserGuide/latest/User-Manual/User-defined-function.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ CREATE FUNCTION <UDF-NAME> AS <UDF-CLASS-FULL-PATHNAME> (USING URI URI-STRING)
#### Method 1: Manually place the jar package

Prepare:
When registering using this method, it is necessary to place the JAR package in advance in the 'ext/udf' directory of all DataNodes in the cluster (which can be configured).
When registering using this method, it is necessary to place the JAR package in advance in the `ext/udf` directory of all nodes in the cluster (which can be configured).

Registration statement:

Expand Down
2 changes: 1 addition & 1 deletion src/zh/UserGuide/Master/Reference/UDF-Libraries.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
| UDF-1.3.3.zip | V1.3.3及以上 | [压缩包](https://alioss.timecho.com/upload/UDF-1.3.3.zip) |
| UDF-1.3.2.zip | V1.0.0~V1.3.2 | [压缩包](https://alioss.timecho.com/upload/UDF-1.3.2.zip) |

2. 将获取的压缩包中的 library-udf.jar 文件放置在IoTDB中 `/iotdb-enterprise-x.x.x.x-bin/ext/udf` 的路径下
2. 将获取的压缩包中的 library-udf.jar 文件放置在 IoTDB 集群所有节点的 `/ext/udf` 的目录下
3. 在 IoTDB 的 SQL 命令行终端(CLI)或可视化控制台(Workbench)的 SQL 操作界面中,执行下述相应的函数注册语句。
4. 批量注册:两种注册方式:注册脚本 或 SQL汇总语句
- 注册脚本
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ CREATE FUNCTION <UDF-NAME> AS <UDF-CLASS-FULL-PATHNAME> (USING URI URI-STRING)
#### 方式一:手动放置jar包

准备工作:
使用该种方式注册时,需要提前将 JAR 包放置到集群所有 DataNode 的 `ext/udf`目录下(该目录可配置)。
使用该种方式注册时,需要提前将 JAR 包放置到集群所有节点的 `ext/udf`目录下(该目录可配置)。

注册语句:

Expand Down
2 changes: 1 addition & 1 deletion src/zh/UserGuide/latest/Reference/UDF-Libraries.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
| UDF-1.3.3.zip | V1.3.3及以上 | [压缩包](https://alioss.timecho.com/upload/UDF-1.3.3.zip) |
| UDF-1.3.2.zip | V1.0.0~V1.3.2 | [压缩包](https://alioss.timecho.com/upload/UDF-1.3.2.zip) |

2. 将获取的压缩包中的 library-udf.jar 文件放置在IoTDB中 `/iotdb-enterprise-x.x.x.x-bin/ext/udf` 的路径下
2. 将获取的压缩包中的 library-udf.jar 文件放置在 IoTDB 集群所有节点的 `/ext/udf` 的目录下
3. 在 IoTDB 的 SQL 命令行终端(CLI)或可视化控制台(Workbench)的 SQL 操作界面中,执行下述相应的函数注册语句。
4. 批量注册:两种注册方式:注册脚本 或 SQL汇总语句
- 注册脚本
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ CREATE FUNCTION <UDF-NAME> AS <UDF-CLASS-FULL-PATHNAME> (USING URI URI-STRING)
#### 方式一:手动放置jar包

准备工作:
使用该种方式注册时,需要提前将 JAR 包放置到集群所有 DataNode 的 `ext/udf`目录下(该目录可配置)。
使用该种方式注册时,需要提前将 JAR 包放置到集群所有节点的 `ext/udf`目录下(该目录可配置)。

注册语句:

Expand Down