Remove unused caffeine cache (#15830)
This commit is contained in:
parent
2b5f8433b7
commit
883848f6ee
|
|
@ -102,10 +102,6 @@
|
||||||
<groupId>org.codehaus.janino</groupId>
|
<groupId>org.codehaus.janino</groupId>
|
||||||
<artifactId>janino</artifactId>
|
<artifactId>janino</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>com.github.ben-manes.caffeine</groupId>
|
|
||||||
<artifactId>caffeine</artifactId>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.hbase.thirdparty</groupId>
|
<groupId>org.apache.hbase.thirdparty</groupId>
|
||||||
|
|
|
||||||
|
|
@ -22,17 +22,6 @@ spring:
|
||||||
jackson:
|
jackson:
|
||||||
time-zone: UTC
|
time-zone: UTC
|
||||||
date-format: "yyyy-MM-dd HH:mm:ss"
|
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:
|
datasource:
|
||||||
driver-class-name: org.postgresql.Driver
|
driver-class-name: org.postgresql.Driver
|
||||||
url: jdbc:postgresql://127.0.0.1:5432/dolphinscheduler
|
url: jdbc:postgresql://127.0.0.1:5432/dolphinscheduler
|
||||||
|
|
|
||||||
|
|
@ -20,17 +20,6 @@ spring:
|
||||||
jackson:
|
jackson:
|
||||||
time-zone: UTC
|
time-zone: UTC
|
||||||
date-format: "yyyy-MM-dd HH:mm:ss"
|
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:
|
datasource:
|
||||||
driver-class-name: org.postgresql.Driver
|
driver-class-name: org.postgresql.Driver
|
||||||
url: jdbc:postgresql://127.0.0.1:5432/dolphinscheduler
|
url: jdbc:postgresql://127.0.0.1:5432/dolphinscheduler
|
||||||
|
|
|
||||||
|
|
@ -23,17 +23,6 @@ spring:
|
||||||
date-format: "yyyy-MM-dd HH:mm:ss"
|
date-format: "yyyy-MM-dd HH:mm:ss"
|
||||||
banner:
|
banner:
|
||||||
charset: UTF-8
|
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:
|
sql:
|
||||||
init:
|
init:
|
||||||
schema-locations: classpath:sql/dolphinscheduler_h2.sql
|
schema-locations: classpath:sql/dolphinscheduler_h2.sql
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue