cj495840252 opened a new issue, #110:
URL: https://github.com/apache/rocketmq-flink/issues/110
While I create table from rocketmq
I can't find which parameter can set the name server address
it tips only support these parameters
```java
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();
```

--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]