shaolei7788

Results 8 issues of shaolei7788

binlog同步到别的mysql数据库时,当table内容为[ "*"]时,会报database.*没权限 解决办法:修改 BinlogUtil#checkTablesPrivilege 方法 if (CollectionUtils.isNotEmpty(tables)) 改为 if (CollectionUtils.isNotEmpty(tables) && !"*".equals(tables.get(0)))

bug

读取ftp数据的时候,FtpSourceFactory#createSource,ftpConfig.setColumn 每个FieldConf的index为null,会导致FtpInputFormat#nextRecordInternal 里的分支永远不会执行, 需要修改一下 将图1的图片改为 ftpConfig.setColumn(syncConf.getReader().getFieldList());

bug

mysql表字段是int类型 在jdbc阶段转为BigDecimalColumn ,但是在hbase写入阶段又没有对应的类型,就会抛异常

bug

为了防止重复提交作业,如果提交任务传如果提入了jobId并且长度为32位那么就使用该jobId作为flink任务运行的jobId。 如果没传入jobId,那么就使用flink自己生成的jobId 关联的issue是 758

写入数据到sftp的时候,FtpColumnConverter#toExternal 方法,List columnData = new ArrayList(ftpConfig.getColumn().size()); 当RowData 第一个元素为null时,再去调用columnData.set方法会报错 解决办法: List columnData = new ArrayList(ftpConfig.getColumn().size()); 改成 List columnData = Arrays.asList(new String[ftpConfig.getColumn().size()]); 然后修改 FtpColumnConverter#createExternalConverter方法 将list.add改成 list.set

bug

自定义flink jobId,如果传了jobId 就用指定的jobId,如果没传就使用flink自动生成的jobId

feature-request

**Alluxio Version:** What version of Alluxio are you using? 2.9.0 **Describe the bug** A clear and concise description of what the bug is. Unable to display complete file directory ![image](https://github.com/Alluxio/alluxio/assets/39719096/1a30fa37-7cf1-48a3-9718-4a34128649fa)...

type-bug
stale

### What changes are proposed in this pull request? Proxy server doesn't support authentication, it may cause security issues. I implement Authenticator Interface to check accessKey, it will improve proxy...