@guandata/guanetl 0.1.23 → 0.1.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/README.md +6 -3
- package/binaries/guanetl-darwin-arm64 +0 -0
- package/binaries/guanetl-darwin-x64 +0 -0
- package/binaries/guanetl-linux-arm64 +0 -0
- package/binaries/guanetl-linux-x64 +0 -0
- package/binaries/guanetl-win32-x64.exe +0 -0
- package/package.json +1 -1
- package/skills/guanetl/SKILL.md +7 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## @guandata/guanetl 0.1.24 - 2026-07-29
|
|
4
|
+
|
|
5
|
+
- ETL 预览支持一次选择多个节点,并按批次并行执行,复杂流程的检查效率更高。
|
|
6
|
+
- 创建 ETL 后会直接显示可编辑的 `etl.go` 骨架,Agent 可立即继续编写和保存流程。
|
|
7
|
+
- 优化大型目录树的查询指引,并更新底层依赖以提升安全性和运行稳定性。
|
|
8
|
+
|
|
3
9
|
## @guandata/guanetl 0.1.23 - 2026-07-28
|
|
4
10
|
|
|
5
11
|
- 写操作会按 clifetch 实际选中的 `guancli`、`guancli-lite` 或自定义 CLI 回显目标环境,避免混合安装时提示与真实写入环境相反;`task cancel` 也会在远端变更前提示目标。
|
package/README.md
CHANGED
|
@@ -51,6 +51,12 @@ guanetl install-skill
|
|
|
51
51
|
|
|
52
52
|
## 版本更新
|
|
53
53
|
|
|
54
|
+
### @guandata/guanetl 0.1.24
|
|
55
|
+
|
|
56
|
+
- ETL 预览支持一次选择多个节点,并按批次并行执行,复杂流程的检查效率更高。
|
|
57
|
+
- 创建 ETL 后会直接显示可编辑的 `etl.go` 骨架,Agent 可立即继续编写和保存流程。
|
|
58
|
+
- 优化大型目录树的查询指引,并更新底层依赖以提升安全性和运行稳定性。
|
|
59
|
+
|
|
54
60
|
### @guandata/guanetl 0.1.23
|
|
55
61
|
|
|
56
62
|
- ETL 写操作会准确提示实际目标环境,混合安装或切换环境时更容易确认操作位置。
|
|
@@ -143,7 +149,4 @@ npm unlink -g @guandata/guanetl
|
|
|
143
149
|
```bash
|
|
144
150
|
# 编译所有平台 binary(需要 Go 工具链)
|
|
145
151
|
npm run build
|
|
146
|
-
|
|
147
|
-
# 发布到内部 Nexus npm 仓库
|
|
148
|
-
npm publish
|
|
149
152
|
```
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
package/skills/guanetl/SKILL.md
CHANGED
|
@@ -140,7 +140,10 @@ guanetl edit <etl_id> --dir <work_dir>
|
|
|
140
140
|
```bash
|
|
141
141
|
guanetl export --dir <work_dir>
|
|
142
142
|
# 保存闭环默认要求预览至少返回 1 行;明确允许合法空结果时可省略 --require-nonempty
|
|
143
|
-
|
|
143
|
+
# 多输出 ETL 一次传多个节点 ID:分批并行执行(默认同时最多 2 个任务,对齐 BI
|
|
144
|
+
# 单用户预览并发上限)、结果按序输出,不要逐节点调用;若网页端另有预览在跑
|
|
145
|
+
# 导致提交被拒,加 --max-parallel 1 串行重试
|
|
146
|
+
guanetl preview <node_id> [node_id...] --dir <work_dir> --require-nonempty
|
|
144
147
|
guanetl save --dir <work_dir> --dry-run
|
|
145
148
|
guanetl save --dir <work_dir>
|
|
146
149
|
guanetl run <etl_id> --wait # 可选:保存后触发执行并等待完成
|
|
@@ -167,8 +170,9 @@ guanetl run <etl_id> --wait # 可选:保存后触发执行并等待
|
|
|
167
170
|
2. 如需在指定子目录下创建,先分别确认 ETL 目录树和数据集目录树。两棵树相互独立,同名目录的 id 也不同,不能把 `guancli etl get` 输出节点里的 ParentDirId 当作 `create --parent-dir` 使用。`guancli workflow tree` 返回的是工作流/经典数据流目录树,也不能用于智能 ETL 的 `create --parent-dir`。
|
|
168
171
|
|
|
169
172
|
```bash
|
|
170
|
-
guancli etl tree # ETL 所在目录,用于 create --parent-dir
|
|
171
|
-
guancli ds tree # 输出数据集目录,用于 create --output-parent-dir / BasicOutputDatasetInDir
|
|
173
|
+
guancli etl tree --max-depth 2 # ETL 所在目录,用于 create --parent-dir
|
|
174
|
+
guancli ds tree --max-depth 2 # 输出数据集目录,用于 create --output-parent-dir / BasicOutputDatasetInDir
|
|
175
|
+
# 目录树很大时用 --keyword 词 过滤;--max-depth 0(默认不传)为全量
|
|
172
176
|
guanetl mkdir-pair "ODS" --etl-parent <etl_parent_id> --ds-parent <ds_parent_id>
|
|
173
177
|
```
|
|
174
178
|
|