datax下载github:https://github.com/alibaba/DataX
在使用datax作为迁移postgresq数据库的时候,发现连接非默认的public模式,一直table xxx does not find.
原因:postgresq 引用的版本问题
解决办法:更换版本
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.2.22</version>
</dependency>
然后重新打包使用即可,或者分别在datax\plugin\ 目录下的read、writer中直接替换jar包即可