|
@@ -0,0 +1,57 @@
|
|
|
+# mysql
|
|
|
+# url=jdbc:postgresql://192.168.220.154:5432/dolphinscheduler
|
|
|
+spring.datasource.url=jdbc:mysql://192.168.220.188:3306/dolphinscheduler?useUnicode=true&characterEncoding=UTF-8
|
|
|
+spring.datasource.username=root
|
|
|
+spring.datasource.password=root@123
|
|
|
+spring.datasource.type=com.alibaba.druid.pool.DruidDataSource
|
|
|
+# driver-class-name=org.postgresql.Driver
|
|
|
+spring.datasource.driver-class-name=com.mysql.jdbc.Driver
|
|
|
+spring.datasource.initialSize=5
|
|
|
+spring.datasource.minIdle=5
|
|
|
+spring.datasource.maxActive=20
|
|
|
+spring.datasource.maxWait=60000
|
|
|
+spring.datasource.timeBetweenEvictionRunsMillis=60000
|
|
|
+spring.datasource.minEvictableIdleTimeMillis=300000
|
|
|
+spring.datasource.validationQuery=SELECT 1 FROM DUAL
|
|
|
+spring.datasource.testWhileIdle=true
|
|
|
+spring.datasource.testOnBorrow=false
|
|
|
+spring.datasource.testOnReturn=false
|
|
|
+spring.datasource.poolPreparedStatements=true
|
|
|
+spring.datasource.maxPoolPreparedStatementPerConnectionSize=20
|
|
|
+spring.datasource.spring.datasource.filters=stat,wall,log4j
|
|
|
+spring.datasource.connectionProperties=druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000
|
|
|
+
|
|
|
+#mybatis
|
|
|
+mybatis-plus.mapper-locations=classpath*:/org.apache.dolphinscheduler.dao.mapper/*.xml
|
|
|
+
|
|
|
+mybatis-plus.typeEnumsPackage=org.apache.dolphinscheduler.*.enums
|
|
|
+
|
|
|
+#实体扫描,多个package用逗号或者分号分隔
|
|
|
+mybatis-plus.typeAliasesPackage=org.apache.dolphinscheduler.dao.entity
|
|
|
+
|
|
|
+#主键类型 AUTO:"数据库ID自增", INPUT:"用户输入ID", ID_WORKER:"全局唯一ID (数字类型唯一ID)", UUID:"全局唯一ID UUID";
|
|
|
+mybatis-plus.global-config.db-config.id-type=AUTO
|
|
|
+
|
|
|
+#字段策略 IGNORED:"忽略判断",NOT_NULL:"非 NULL 判断"),NOT_EMPTY:"非空判断"
|
|
|
+mybatis-plus.global-config.db-config.field-strategy=NOT_NULL
|
|
|
+
|
|
|
+#驼峰下划线转换
|
|
|
+mybatis-plus.global-config.db-config.column-underline=true
|
|
|
+mybatis-plus.global-config.db-config.logic-delete-value=-1
|
|
|
+mybatis-plus.global-config.db-config.logic-not-delete-value=0
|
|
|
+mybatis-plus.global-config.db-config.banner=false
|
|
|
+#原生配置
|
|
|
+mybatis-plus.configuration.map-underscore-to-camel-case=true
|
|
|
+mybatis-plus.configuration.cache-enabled=false
|
|
|
+mybatis-plus.configuration.call-setters-on-nulls=true
|
|
|
+mybatis-plus.configuration.jdbc-type-for-null=null
|
|
|
+
|
|
|
+# data quality analysis is not currently in use. please ignore the following configuration
|
|
|
+# task record flag
|
|
|
+task.record.flag=false
|
|
|
+task.record.datasource.url=jdbc:mysql://192.168.xx.xx:3306/etl?characterEncoding=UTF-8
|
|
|
+task.record.datasource.username=xx
|
|
|
+task.record.datasource.password=xx
|
|
|
+
|
|
|
+# Logger Config
|
|
|
+logging.level.org.apache.dolphinscheduler.dao=debug
|