We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While I create table from rocketmq I can't find which parameter can set the name server address it tips only support these parameters
EnvironmentSettings settings = EnvironmentSettings.inStreamingMode(); TableEnvironment env = TableEnvironment.create(settings); System.out.println("test"); env.executeSql( "CREATE TABLE rocketmq_source (\n" + " `user_id` STRING\n" + ") WITH (\n" + " 'connector' = 'rocketmq',\n" + " 'nameServerAddress' = 'localhost:9876',\n" + " 'rocketmq.source.topic' = 'test',\n" + " 'rocketmq.source.group' = 'test'\n" + ");" ); env.executeSql("show tables").print(); env.executeSql("select * from rocketmq_source").print();
The text was updated successfully, but these errors were encountered:
It should be rocketmq.client.endpoints
rocketmq.client.endpoints
Sorry, something went wrong.
No branches or pull requests
While I create table from rocketmq
I can't find which parameter can set the name server address
it tips only support these parameters
The text was updated successfully, but these errors were encountered: