Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat & docs: 1.修改同步工具日志为追加写入 2.大幅修改同步工具的用户手册 3.新增用户手册和使用样例进入用户手册 #14

Merged
merged 9 commits into from
Jun 15, 2023
Merged
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,7 @@ datax/plugin_test.go
datax/plugin.go
*.txt
*.out
*.exe
*.exe
release/*
*.zip
*.tar.gz
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ cover:
.PHONY: release
release:
@go generate ./... && cd cmd/datax && go build && cd ../..

@go run tools/datax/release/main.go
.PHONY: doc
doc:
@godoc -http=:6080
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ go-etl将提供的etl能力如下:

使用[go-etl用户手册](README_USER.md)开始数据同步

### 开发宝典
### 数据同步开发宝典

参考[go-etl开发者文档](datax/README.md)来帮助开发
参考[go-etl数据同步开发者文档](datax/README.md)来帮助开发

## 模块简介
### datax

本包将提供类似于阿里巴巴[DataX](https://github.com/alibaba/DataX)的接口去实现go的etl框架,目前主要实现了job框架内的数据同步能力,监控等功能还未实现.
本包将提供类似于阿里巴巴[DataX](https://github.com/alibaba/DataX)的接口去实现go的etl框架,目前主要实现了job框架内的数据同步能力.

#### plan

Expand Down
Loading