starrocks-connector-for-apache-flink
starrocks-connector-for-apache-flink copied to clipboard
## What type of PR is this: - [ ] BugFix - [ ] Feature - [ ] Enhancement - [ ] Refactor - [ ] UT - [x] Doc...
Hello, I have a question to ask. Will starRocks source support custom SQL queries such as join operations?
## What type of PR is this: - [x] BugFix - [ ] Feature - [ ] Enhancement - [ ] Refactor - [ ] UT - [ ] Doc...
## What type of PR is this: - [ ] BugFix - [ ] Feature - [ ] Enhancement - [ ] Refactor - [ ] UT - [x] Doc...
## What type of PR is this: - [ ] BugFix - [ ] Feature - [x] Enhancement - [ ] Refactor - [ ] UT - [ ] Doc...
When I deploy Starrocks in Docker and use Flink-connector-Starrocks to import data, the BE node IP is the internal IP of the container. Flink cannot access this IP. Is there...
## What type of PR is this: - [ ] BugFix - [ ] Feature - [x] Enhancement - [ ] Refactor - [ ] UT - [ ] Doc...
https://github.com/StarRocks/starrocks-connector-for-apache-flink/blob/08de67ad0f5c3cd9fbc3707466df6c642dfee7e7/src/main/java/com/starrocks/connector/flink/table/source/StarRocksDynamicLookupFunction.java#L99 Current implementation is loading all the data of the table which will cause OOM while the the data volume is too big, suggest can support load data by specific...
auto add `__op` for primary key table even when user specified `sink.properties.columns` ## What type of PR is this: - [x] BugFix - [ ] Feature - [x] Enhancement -...
When inserting data like the below: ```java String[] records = new String[]{ "[{\"id\":400, \"name\":\"400\"}]", "[{\"id\":500, \"name\":\"500\"}]" }; DataStream source = env.fromElements(records); ``` It fails since connector wrapped the json array...