stream2000 commented on code in PR #8961:
URL: https://github.com/apache/hudi/pull/8961#discussion_r1229285881


##########
hudi-flink-datasource/hudi-flink/src/main/java/org/apache/hudi/sink/utils/Pipelines.java:
##########
@@ -447,11 +448,17 @@ public static DataStreamSink<Object> 
dummySink(DataStream<Object> dataStream) {
   }
 
   public static String opName(String operatorN, Configuration conf) {
-    return operatorN + ": " + conf.getString(FlinkOptions.TABLE_NAME);
+    return operatorN + ": " + getDbTableName(conf);
   }
 
   public static String opUID(String operatorN, Configuration conf) {
-    return "uid_" + operatorN + "_" + conf.getString(FlinkOptions.TABLE_NAME);
+    return "uid_" + operatorN + "_" + getDbTableName(conf);
+  }
+
+  public static String getDbTableName(Configuration conf) {

Review Comment:
   Do you mean to add a new parameter in `FlinkStreamerConfig`? If not, could 
you help pointing out where the code is, thanks~ 
   



-- 
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]

Reply via email to