seeger12138 opened a new issue #1883: URL: https://github.com/apache/shardingsphere-elasticjob/issues/1883
## Feature Request **The LiteJobFacade#isExecuteMisfired method first obtains whether points are needed from zk`(!isNeedSharding())`, and then judges whether misfired is enabled`configService.load(true).isMisfire()`. This is a performance loss for the misfired configuration that is not turned on.** ### Is your feature request related to a problem? **just suggestion** ### Describe the feature you would like. **Reverse order` !isNeedSharding() && configService.load(true).isMisfire()` -> `configService.load(true).isMisfire() && !isNeedSharding()`. According to the short-circuit characteristics, if the misfired configuration is not turned on, there will be no additional performance loss.** -- 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. For queries about this service, please contact Infrastructure at: [email protected]
