bitsail
bitsail copied to clipboard
BitSail is a distributed high-performance data integration engine which supports batch, streaming and incremental scenarios. BitSail is widely used to synchronize hundreds of trillions of data every d...
Signed-off-by: ## Pre-Checklist Note: Please complete **_ALL_** items in the following checklist. - [x] I have read through the [CONTRIBUTING.md](https://github.com/bytedance/bitsail/blob/master/docs/contributing.md) documentation. - [x] My code has the necessary comments and...
## Is your feature request related to a problem? Please describe Now we support source reader for unified arch in bitsail. In legacy mode, we already support messenger & dirty...

Got the master branch, and run `mvn clean package -D maven.test.skip=true` but got following compilation failure: ` /bitsail/bitsail-connectors/bitsail-connectors-legacy/bitsail-connector-ftp/src/main/java/com/bytedance/bitsail/connector/legacy/ftp/source/FtpInputFormat.java:[75,91] incompatible types: java.lang.String cann ot be converted to com.bytedance.bitsail.common.type.TypeInfoConverter ` The code...
本地docker环境已经启动。 请问执行case的流程是什么,按照文档说明报以上错误。
## Describe the bug CICD sometime fails due to flaky tests.
## Pre-Checklist Note: Please complete **_ALL_** items in the following checklist. - [x] I have read through the [CONTRIBUTING.md](https://github.com/bytedance/bitsail/blob/master/docs/contributing.md) documentation. - [x] My code has the necessary comments and documentation...
Uses reflection on `InetAddress` which no longer exists ```java final var cacheField = InetAddress.class.getDeclaredField("addressCache"); cacheField.setAccessible(true); final var addressCache = cacheField.get(InetAddress.class); var clazz = addressCache.getClass(); final var cacheMapField = clazz.getDeclaredField("cache"); cacheMapField.setAccessible(true);...