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();
   ```
   
![test](https://github.com/apache/rocketmq-flink/assets/63491689/a50d4134-0c58-4201-90dc-f4fc3bc8868d)
   


-- 
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-unsubscr...@rocketmq.apache.org.apache.org

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

Reply via email to