migration:
  taskRefreshIntervalsMillisecond: 15000
  taskOfflineSchedulerIntervalsMillisecond: 10000
  mainTaskRefreshIntervalsMillisecond: 60000
spring:
  datasource:
    type: com.alibaba.druid.pool.DruidDataSource
    druid:
      test-while-idle: false
      test-on-borrow: true
      validation-query: "select 1"
      validation-query-timeout: 30000
  sql:
    init:
      mode: always
  web:
    resources:
      static-locations: classpath:resources
  main:
    allow-circular-references: true
# log config
logging:
  level:
    org.opengauss.admin.plugin: INFO
    org.springframework: warn
  file:
    name: logs/plugins_data_migration.log
mybatis-plus:
  # Search for the specified package alias
  typeAliasesPackage: org.opengauss.admin.plugin.domain

  mapperLocations: classpath*:mapper/*.xml
  # Load the global configuration file
  configuration:
    mapUnderscoreToCamelCase: true
    log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl