kezhenxu94 commented on a change in pull request #6500:
URL: https://github.com/apache/dolphinscheduler/pull/6500#discussion_r727684184



##########
File path: 
dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/datasource/SpringConnectionFactory.java
##########
@@ -106,17 +115,30 @@ public DruidDataSource dataSource() throws SQLException {
         //auto commit
         
druidDataSource.setDefaultAutoCommit(PropertyUtils.getBoolean(Constants.SPRING_DATASOURCE_DEFAULT_AUTO_COMMIT,
 true));
         druidDataSource.init();
+        logger.info("Initialize Druid DataSource success");
         return druidDataSource;
     }
 
+    @Bean(name = "datasource")
+    @Profile(value = {ProfileType.UNIT_TEST})
+    public DataSource h2DataSource() {
+        EmbeddedDatabaseBuilder embeddedDatabaseBuilder = new 
EmbeddedDatabaseBuilder(new FileSystemResourceLoader());
+        EmbeddedDatabase datasource = 
embeddedDatabaseBuilder.setType(EmbeddedDatabaseType.H2)
+                .setName("DolphinSchedulerUT;MODE=MySQL")
+                .addScript("file:../sql/dolphinscheduler_h2.sql")
+                .build();
+        logger.info("Initialize H2 DataSource success");
+        return datasource;
+    }

Review comment:
       Ideally, I'd rather provide multiple datasources (h2, postgresql, mysql, 
etc.) with profiles that can be shared between all modules, and we can choose 
one of them via specifying Spring profile without changing the configuration 
files, and I would like to specify the profile in standalone-server instead of 
duplicate the codes.
   
   But, I'd suggest renaming the profile name `unit_test`, `!unit_test` to 
something like `h2`, `mysql`, `postgresql`, and defaulting it to our 
recommended database. SO that I can refer to profile `h2` (instead of 
`unit_test`) in standalone server.




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