Skip to content

Commit

Permalink
Merge pull request #488 from ggservice007/main
Browse files Browse the repository at this point in the history
feat:Add the basic function for the data lineage and error log.
  • Loading branch information
bjwswang authored Jan 4, 2024
2 parents 851d917 + 147dc0f commit fe314a0
Show file tree
Hide file tree
Showing 20 changed files with 1,338 additions and 330 deletions.
109 changes: 109 additions & 0 deletions apiserver/graph/generated/generated.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions apiserver/graph/generated/models_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions apiserver/graph/schema/dataprocessing.gql
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ query allDataProcessListByPage($input: AllDataProcessListByPageInput!){
post_data_set_name
post_data_set_version
start_datetime
error_msg
}
message
}
Expand Down Expand Up @@ -63,6 +64,7 @@ query dataProcessDetails($input: DataProcessDetailsInput){
start_time
end_time
creator
error_msg
config {
name
description
Expand Down
3 changes: 3 additions & 0 deletions apiserver/graph/schema/dataprocessing.graphqls
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@ type DataProcessItem {
post_data_set_version: String
# 开始时间
start_datetime: String!
# 错误日志
error_msg: String
}

# 数据处理支持类型
Expand Down Expand Up @@ -169,6 +171,7 @@ type DataProcessDetailsItem {
start_time: String!
end_time: String!
creator: String!
error_msg: String
config: [DataProcessConfig!]
}

Expand Down
Loading

0 comments on commit fe314a0

Please sign in to comment.