Browse Source

Remove unused caffeine cache (#15830)

3.2.2-release-bak
Wenjun Ruan 8 months ago committed by GitHub
parent
commit
883848f6ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      dolphinscheduler-master/pom.xml
  2. 11
      dolphinscheduler-master/src/main/resources/application.yaml
  3. 11
      dolphinscheduler-master/src/test/resources/application.yaml
  4. 11
      dolphinscheduler-standalone-server/src/main/resources/application.yaml

4
dolphinscheduler-master/pom.xml

@ -102,10 +102,6 @@
<groupId>org.codehaus.janino</groupId>
<artifactId>janino</artifactId>
</dependency>
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
</dependency>
<dependency>
<groupId>org.apache.hbase.thirdparty</groupId>

11
dolphinscheduler-master/src/main/resources/application.yaml

@ -22,17 +22,6 @@ spring:
jackson:
time-zone: UTC
date-format: "yyyy-MM-dd HH:mm:ss"
cache:
# default enable cache, you can disable by `type: none`
type: none
cache-names:
- tenant
- user
- processDefinition
- processTaskRelation
- taskDefinition
caffeine:
spec: maximumSize=100,expireAfterWrite=300s,recordStats
datasource:
driver-class-name: org.postgresql.Driver
url: jdbc:postgresql://127.0.0.1:5432/dolphinscheduler

11
dolphinscheduler-master/src/test/resources/application.yaml

@ -20,17 +20,6 @@ spring:
jackson:
time-zone: UTC
date-format: "yyyy-MM-dd HH:mm:ss"
cache:
# default enable cache, you can disable by `type: none`
type: none
cache-names:
- tenant
- user
- processDefinition
- processTaskRelation
- taskDefinition
caffeine:
spec: maximumSize=100,expireAfterWrite=300s,recordStats
datasource:
driver-class-name: org.postgresql.Driver
url: jdbc:postgresql://127.0.0.1:5432/dolphinscheduler

11
dolphinscheduler-standalone-server/src/main/resources/application.yaml

@ -23,17 +23,6 @@ spring:
date-format: "yyyy-MM-dd HH:mm:ss"
banner:
charset: UTF-8
cache:
# default enable cache, you can disable by `type: none`
type: none
cache-names:
- tenant
- user
- processDefinition
- processTaskRelation
- taskDefinition
caffeine:
spec: maximumSize=100,expireAfterWrite=300s,recordStats
sql:
init:
schema-locations: classpath:sql/dolphinscheduler_h2.sql

Loading…
Cancel
Save