You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by "CalvinKirs (via GitHub)" <gi...@apache.org> on 2023/01/30 05:28:50 UTC

[GitHub] [incubator-seatunnel] CalvinKirs commented on a diff in pull request #3679: [Feature][Connector-V2] StarRocks source connector

CalvinKirs commented on code in PR #3679:
URL: https://github.com/apache/incubator-seatunnel/pull/3679#discussion_r1090187631


##########
docs/en/connector-v2/source/StarRocks.md:
##########
@@ -0,0 +1,144 @@
+# StarRocks
+
+> StarRocks source connector
+
+## Description
+Read external data source data through StarRocks.
+The internal implementation of StarRocks source connector is obtains the query plan from the frontend (FE), 
+delivers the query plan as a parameter to BE nodes, and then obtains data results from BE nodes..
+## Key features
+
+- [x] [batch](../../concept/connector-v2-features.md)
+- [ ] [stream](../../concept/connector-v2-features.md)
+- [x] [exactly-once](../../concept/connector-v2-features.md)
+- [x] [schema projection](../../concept/connector-v2-features.md)
+
+## Options
+
+| name                    | type   | required | default value     |
+|-------------------------|--------|----------|-------------------|
+| node_urls               | list   | yes      | -                 |
+| username                | string | yes      | -                 |
+| password                | string | yes      | -                 |
+| database                | string | yes      | -                 |
+| table                   | string | yes      | -                 |
+| scan_filter             | string | no       | -                 |
+| fields                  | config | yes      | -                 |

Review Comment:
   For the newly added Connector, we use the scheam field to define this information. FYI https://github.com/apache/incubator-seatunnel/issues/3823



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org