You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
+ rengine/
+ controller/
# The auto configuration entry of the controller.
+ src/main/java/com/wl4g/rengine/controller/config/
+ RengineControllerAutoConfiguration.java
+ src/main/java/com/wl4g/rengine/job/
# The cluster sharding job type of proactive collect tasks.
+ job/
+ AbstractJobExecutor.java # Abstract job base.# Global Master controller, responsible for scanning the schedule configuration # table, and allocating and starting different types of execution controllers.
+ GlobalEngineMasterController.java
# The according to the configuration, parallel(distributed job) invoke workflow graph.
+ EngineGenericExecutionController.java
# The consumpting data from Kafka in parallel(distributed job), and invoke workflow graph.
+ EngineKafkaExecutionController.java
+ ...