sunskybrave opened a new issue, #24208:
URL: https://github.com/apache/shardingsphere/issues/24208
## Bug Report
**version 5.1.0 shardingsphere-jdbc-core-spring-boot-starter**
in debug mode, the application can not successfully start
console log shows that:
```
INFO 33576 --- [ main] org.quartz.impl.StdSchedulerFactory : Using default
implementation for ThreadExecutor
INFO 33576 --- [ main] org.quartz.core.SchedulerSignalerImpl : Initialized
Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
INFO 33576 --- [ main] org.quartz.core.QuartzScheduler : Quartz Scheduler
v.2.3.2 created.
INFO 33576 --- [ main] org.quartz.simpl.RAMJobStore : RAMJobStore
initialized.
INFO 33576 --- [ main] org.quartz.core.QuartzScheduler : Scheduler
meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId
'NON_CLUSTERED'
Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
NOT STARTED.
Currently in standby mode.
Number of jobs executed: 0
Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support
persistence. and is not clustered.
INFO 33576 --- [ main] org.quartz.impl.StdSchedulerFactory : Quartz
scheduler 'quartzScheduler' initialized from an externally provided properties
instance.
INFO 33576 --- [ main] org.quartz.impl.StdSchedulerFactory : Quartz
scheduler version: 2.3.2
INFO 33576 --- [ main] org.quartz.core.QuartzScheduler : JobFactory set to:
org.springframework.scheduling.quartz.SpringBeanJobFactory@33684b87`
```
i have checked the maven configs, i found that the
shardingsphere-db-discovery contains the quartz package, but i just didnt set
any database discovery configuration.
```
<!--shardingsphere jdbc-->
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>shardingsphere-jdbc-core-spring-boot-starter</artifactId>
<version>5.1.1</version>
</dependency>
spring:
shardingsphere:
datasource:
names: db0
db0:
url: jdbc:mysql://localhost:3306/test
username: root
password: root
type: com.alibaba.druid.pool.DruidDataSource
rules:
sharding:
sharding-algorithms:
table-mod:
type: MOD
props:
sharding-count: 10
tables:
orders:
actual-data-nodes: db0.orders_$->{0..9}
table-strategy:
standard:
sharding-column: order_no
sharding-algorithm-name: table-mod
enabled: true
props:
sql-show: true
```
i'm just wondering how to disable the quartz schedule
--
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]