Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 3.9k
Flink Doris Connector #5371
Copy link
Copy link
Closed
Labels
area/spark-connectorIssues or PRs related to Spark connectorIssues or PRs related to Spark connectorkind/featureCategorizes issue or PR as related to a new feature.Categorizes issue or PR as related to a new feature.
Description
Activity
Metadata
Metadata
Assignees
Labels
area/spark-connectorIssues or PRs related to Spark connectorIssues or PRs related to Spark connectorkind/featureCategorizes issue or PR as related to a new feature.Categorizes issue or PR as related to a new feature.
Refer to Spark Doris Connector test method Flink Connector
CREATE TABLE myUserTable (
user_id STRING,
user_name STRING
uv BIGINT,
pv BIGINT,
PRIMARY KEY (user_id) NOT ENFORCED
) WITH (
'connector' ='doris',
'fe.host' ='ip:port',
'username' ='users',
'password' ='password',
'tableName' ='table1'
);