Skip to content

Commit

Permalink
prepare 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Baoqi committed May 9, 2021
1 parent d8d94fa commit b1e3561
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@

<https://github.com/GuandataOSS/universe-lite/releases>

其中 0.9.0如果需要使用 python任务或者python插件任务需要python中安装对应的 duckdb 0.2.5 版本
其中 0.10.0如果需要使用 python任务或者python插件任务需要python中安装对应的 duckdb 0.2.6 版本

文件

- universe-lite-0.9.0.jar: works on Linux, Windows & Mac, depends on JDK 8 or above
- universe-lite-0.9.0: native image on 64bit linux, don't depend on JDK
- universe-lite-0.10.0.jar: works on Linux, Windows & Mac, depends on JDK 8 or above
- universe-lite-0.10.0: native image on 64bit linux, don't depend on JDK


# 项目背景
Expand Down Expand Up @@ -132,12 +132,12 @@ jdbc是最常见的操作,类似于开发平台的 “sql节点”的“获取
| user | string | false | | |
| password | string | false | | |
| pre\_statement | StringList or string | false | [] | |
| query | string | ? | | 当作为获取数据节点时必须而且是SELECT SQL |
| query | string | ? | | 当作为获取数据节点时必须而且是SELECT SQL |
| jdbc.fetchsize | int | false | | 当作为获取数据节点时可选一般为 int 类型但是对于MySQL等支持特殊字符串 Integer.MIN\_VALUE |
| jdbc.autocommit | boolean | false | true | 是否把所有的statements或query都放在一个transaction中比如对于Postgresql如果我们要使得 fetchsize生效比如设置 autocommit 为false |
| statement | string | ? | | 当作为插入数据节点时必须一般为非查询的 CREATE / UPDATE/ INSERT |
| jdbc.batchsize | int | false | 1000 | 当作为插入数据节点时如果有 input则会转为每个batch插入目标表的行数 |
| input | StringList or string | false | | 只有当作为插入数据节点并且需要把input 表的数据一行一行进行bind并插入目标时才需要 |
| statement | string | ? | | 当作为插入数据节点时必须一般为非查询的 CREATE / UPDATE/ INSERT |
| jdbc.batchsize | int | false | 1000 | 当作为插入数据节点时如果有 input则会转为每个batch插入目标表的行数 |
| input | StringList or string | false | | 只有当作为插入数据节点并且需要把input 表的数据一行一行进行bind并插入目标时才需要 |

具体的例子请参考 config/mysql\_task\_status\_to\_postgresql.conf.template 样例该例子中把 mysql 中的一张表批量插入到 postgresql中

Expand Down

0 comments on commit b1e3561

Please sign in to comment.