-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Yiran <[email protected]>
- Loading branch information
Showing
12 changed files
with
326 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# FLOWS | ||
The `Flows` table provides the flow task information. | ||
|
||
```sql | ||
public=> DESC TABLE INFORMATION_SCHEMA.FLOWS; | ||
``` | ||
|
||
```sql | ||
Column | Type | Key | Null | Default | Semantic Type | ||
------------------+--------+-----+------+---------+--------------- | ||
flow_name | String | | NO | | FIELD | ||
flow_id | UInt32 | | NO | | FIELD | ||
table_catalog | String | | NO | | FIELD | ||
flow_definition | String | | NO | | FIELD | ||
comment | String | | YES | | FIELD | ||
expire_after | Int64 | | YES | | FIELD | ||
source_table_ids | String | | YES | | FIELD | ||
sink_table_name | String | | NO | | FIELD | ||
flownode_ids | String | | YES | | FIELD | ||
options | String | | YES | | FIELD | ||
(10 rows) | ||
``` | ||
|
||
The columns in table: | ||
|
||
* `flow_name`: the flow task's name. | ||
* `flow_id`: the flow task's id. | ||
* `table_catalog`: the catalog this flow belongs to, named as `table_catalog` to keep consistent with the `INFORMATION_SCHEMA` standard. | ||
* `flow_definition`: the flow task's definition. It's the SQL statement used to create the flow task. | ||
* `comment`: the comment of the flow task. | ||
* `expire_after`: the expire time of the flow task. | ||
* `source_table_ids`: the source table ids of the flow task. | ||
* `sink_table_name`: the sink table name of the flow task. | ||
* `flownode_ids`: the flownode ids used by the flow task. | ||
* `options`: extra options of the flow task. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# FLOWS | ||
`Flows` 表提供了 Flow 任务的相关信息。 | ||
|
||
```sql | ||
public=> DESC TABLE INFORMATION_SCHEMA.FLOWS; | ||
``` | ||
|
||
```sql | ||
Column | Type | Key | Null | Default | Semantic Type | ||
------------------+--------+-----+------+---------+--------------- | ||
flow_name | String | | NO | | FIELD | ||
flow_id | UInt32 | | NO | | FIELD | ||
table_catalog | String | | NO | | FIELD | ||
flow_definition | String | | NO | | FIELD | ||
comment | String | | YES | | FIELD | ||
expire_after | Int64 | | YES | | FIELD | ||
source_table_ids | String | | YES | | FIELD | ||
sink_table_name | String | | NO | | FIELD | ||
flownode_ids | String | | YES | | FIELD | ||
options | String | | YES | | FIELD | ||
(10 rows) | ||
``` | ||
|
||
表中的列: | ||
|
||
* `flow_name`: Flow 任务的名称。 | ||
* `flow_id`: Flow 任务的 id。 | ||
* `table_catalog`: 该 Flow 所属的目录,命名为 `table_catalog` 以保持与 `INFORMATION_SCHEMA` 标准一致。 | ||
* `flow_definition`: Flow 任务的定义,是用于创建 Flow 任务的 SQL 语句。 | ||
* `comment`: Flow 任务的注释。 | ||
* `expire_after`: Flow 任务的过期时间。 | ||
* `source_table_ids`: Flow 任务的源表 id。 | ||
* `sink_table_name`: Flow 任务的目标表名称。 | ||
* `flownode_ids`: Flow 任务使用的 flownode id。 | ||
* `options`: Flow 任务的其他额外选项。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# FLOWS | ||
The `Flows` table provides the flow task information. | ||
|
||
```sql | ||
public=> DESC TABLE INFORMATION_SCHEMA.FLOWS; | ||
``` | ||
|
||
```sql | ||
Column | Type | Key | Null | Default | Semantic Type | ||
------------------+--------+-----+------+---------+--------------- | ||
flow_name | String | | NO | | FIELD | ||
flow_id | UInt32 | | NO | | FIELD | ||
table_catalog | String | | NO | | FIELD | ||
flow_definition | String | | NO | | FIELD | ||
comment | String | | YES | | FIELD | ||
expire_after | Int64 | | YES | | FIELD | ||
source_table_ids | String | | YES | | FIELD | ||
sink_table_name | String | | NO | | FIELD | ||
flownode_ids | String | | YES | | FIELD | ||
options | String | | YES | | FIELD | ||
(10 rows) | ||
``` | ||
|
||
The columns in table: | ||
|
||
* `flow_name`: the flow task's name. | ||
* `flow_id`: the flow task's id. | ||
* `table_catalog`: the catalog this flow belongs to, named as `table_catalog` to keep consistent with the `INFORMATION_SCHEMA` standard. | ||
* `flow_definition`: the flow task's definition. It's the SQL statement used to create the flow task. | ||
* `comment`: the comment of the flow task. | ||
* `expire_after`: the expire time of the flow task. | ||
* `source_table_ids`: the source table ids of the flow task. | ||
* `sink_table_name`: the sink table name of the flow task. | ||
* `flownode_ids`: the flownode ids used by the flow task. | ||
* `options`: extra options of the flow task. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# FLOWS | ||
`Flows` 表提供了 Flow 任务的相关信息。 | ||
|
||
```sql | ||
public=> DESC TABLE INFORMATION_SCHEMA.FLOWS; | ||
``` | ||
|
||
```sql | ||
Column | Type | Key | Null | Default | Semantic Type | ||
------------------+--------+-----+------+---------+--------------- | ||
flow_name | String | | NO | | FIELD | ||
flow_id | UInt32 | | NO | | FIELD | ||
table_catalog | String | | NO | | FIELD | ||
flow_definition | String | | NO | | FIELD | ||
comment | String | | YES | | FIELD | ||
expire_after | Int64 | | YES | | FIELD | ||
source_table_ids | String | | YES | | FIELD | ||
sink_table_name | String | | NO | | FIELD | ||
flownode_ids | String | | YES | | FIELD | ||
options | String | | YES | | FIELD | ||
(10 rows) | ||
``` | ||
|
||
表中的列: | ||
|
||
* `flow_name`: Flow 任务的名称。 | ||
* `flow_id`: Flow 任务的 id。 | ||
* `table_catalog`: 该 Flow 所属的目录,命名为 `table_catalog` 以保持与 `INFORMATION_SCHEMA` 标准一致。 | ||
* `flow_definition`: Flow 任务的定义,是用于创建 Flow 任务的 SQL 语句。 | ||
* `comment`: Flow 任务的注释。 | ||
* `expire_after`: Flow 任务的过期时间。 | ||
* `source_table_ids`: Flow 任务的源表 id。 | ||
* `sink_table_name`: Flow 任务的目标表名称。 | ||
* `flownode_ids`: Flow 任务使用的 flownode id。 | ||
* `options`: Flow 任务的其他额外选项。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters