macksonmu commented on code in PR #1831:
URL: 
https://github.com/apache/incubator-streampark/pull/1831#discussion_r994905811


##########
streampark-console/streampark-console-service/src/assembly/script/schema/mysql-schema.sql:
##########
@@ -319,6 +319,24 @@ create table `t_team` (
   unique key `team_name_idx` (`team_name`) using btree
 ) engine = innodb default charset = utf8mb4 collate = utf8mb4_general_ci;
 
+-- ----------------------------
+-- Table of t_variable
+-- ----------------------------
+drop table if exists `t_variable`;
+create table `t_variable` (
+  `id` bigint not null auto_increment,
+  `variable_code` varchar(100) collate utf8mb4_general_ci not null comment 
'variable code',
+  `variable_value` varchar(1024) collate utf8mb4_general_ci not null comment 
'variable value',
+  `variable_name` varchar(100) collate utf8mb4_general_ci not null comment 
'variable name',

Review Comment:
   @1996fanrui For example, the variable code is 
"external.kafka.collect.brokers", and the variable name is "外部采集整合kafka". When 
we created the application, I forgot what the variable code was, but I knew it 
was called "采集整合", so I can search Enter the "采集整合" keywords in the box, and of 
course you can also search for kafka keywords.
   
   At the same time, I want to know more detailed information about this kafka, 
such as who the operator is, what is the data retention period, and how big is 
the cluster size, but I can't use the description to search, so I can only 
search or variable code or variable name, and the variable name is also for a 
simple display, is this feasible?



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