![JAR search and dependency download from the Maven repository](/logo.png)
indi.atlantis.framework.chaconne.cluster.ConsumerModeJobBeanInitializer Maven / Gradle / Ivy
/**
* Copyright 2017-2021 Fred Feng ([email protected])
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package indi.atlantis.framework.chaconne.cluster;
import java.util.concurrent.TimeUnit;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.beans.factory.annotation.Value;
import com.github.paganini2008.devtools.ArrayUtils;
import com.github.paganini2008.devtools.multithreads.RetryableTimer;
import indi.atlantis.framework.chaconne.ChaconneBeanNames;
import indi.atlantis.framework.chaconne.DependencyType;
import indi.atlantis.framework.chaconne.Job;
import indi.atlantis.framework.chaconne.JobBeanInitializer;
import indi.atlantis.framework.chaconne.JobBeanLoader;
import indi.atlantis.framework.chaconne.JobFutureHolder;
import indi.atlantis.framework.chaconne.JobKey;
import indi.atlantis.framework.chaconne.JobManager;
import indi.atlantis.framework.chaconne.SerialDependencyScheduler;
import indi.atlantis.framework.chaconne.TriggerType;
import indi.atlantis.framework.chaconne.model.JobKeyQuery;
/**
*
* ConsumerModeJobBeanInitializer
*
* @author Fred Feng
*
* @since 2.0.1
*/
public class ConsumerModeJobBeanInitializer extends RestClientRetryable implements JobBeanInitializer {
@Value("${spring.application.cluster.name}")
private String clusterName;
@Autowired
private JobManager jobManager;
@Qualifier(ChaconneBeanNames.INTERNAL_JOB_BEAN_LOADER)
@Autowired
private JobBeanLoader jobBeanLoader;
@Qualifier(ChaconneBeanNames.EXTERNAL_JOB_BEAN_LOADER)
@Autowired(required = false)
private JobBeanLoader externalJobBeanLoader;
@Autowired
private SerialDependencyScheduler serialDependencyScheduler;
@Autowired
private JobFutureHolder jobFutureHolder;
@Autowired
private RetryableTimer retryableTimer;
@Override
public void initializeJobBeans() throws Exception {
retryableTimer.executeAndRetryWithFixedDelay(this, DEFAULT_RETRY_INTERVAL, TimeUnit.SECONDS);
}
@Override
public void execute() throws Throwable {
handleSerialDependencies();
}
private void handleSerialDependencies() throws Exception {
JobKeyQuery jobQuery = new JobKeyQuery();
jobQuery.setClusterName(clusterName);
jobQuery.setTriggerType(TriggerType.DEPENDENT);
JobKey[] jobKeys = jobManager.getJobKeys(jobQuery);
if (ArrayUtils.isNotEmpty(jobKeys)) {
Job job;
JobKey[] dependentKeys;
for (JobKey jobKey : jobKeys) {
job = jobBeanLoader.loadJobBean(jobKey);
if (job == null && externalJobBeanLoader != null) {
job = externalJobBeanLoader.loadJobBean(jobKey);
}
if (job == null) {
continue;
}
// update or schedule serial dependency job
dependentKeys = jobManager.getDependentKeys(jobKey, DependencyType.SERIAL);
if (ArrayUtils.isNotEmpty(dependentKeys)) {
if (serialDependencyScheduler.hasScheduled(jobKey)) {
serialDependencyScheduler.updateDependency(job, dependentKeys);
} else {
jobFutureHolder.add(jobKey, serialDependencyScheduler.scheduleDependency(job, dependentKeys));
}
}
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy