blob: f463846134b61075cde6207fa02dd22321f84d83 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.shardingsphere.elasticjob.executor;
import org.apache.shardingsphere.elasticjob.api.JobConfiguration;
import org.apache.shardingsphere.elasticjob.api.listener.ShardingContexts;
import org.apache.shardingsphere.elasticjob.infra.exception.JobExecutionEnvironmentException;
import org.apache.shardingsphere.elasticjob.tracing.event.JobExecutionEvent;
import org.apache.shardingsphere.elasticjob.tracing.event.JobStatusTraceEvent.State;
import java.util.Collection;
import java.util.Map;
/**
* Job facade.
*/
public interface JobFacade {
/**
* Load job configuration.
*
* @param fromCache load from cache or not
* @return job configuration
*/
JobConfiguration loadJobConfiguration(boolean fromCache);
/**
* check job execution environment.
*
* @throws JobExecutionEnvironmentException job execution environment exception
*/
void checkJobExecutionEnvironment() throws JobExecutionEnvironmentException;
/**
* Failover If necessary.
*/
void failoverIfNecessary();
/**
* Register job begin.
*
* @param shardingContexts sharding contexts
*/
void registerJobBegin(ShardingContexts shardingContexts);
/**
* Register job completed.
*
* @param shardingContexts sharding contexts
*/
void registerJobCompleted(ShardingContexts shardingContexts);
/**
* Register job completed. And error sharding items.
*
* @param shardingContexts sharding contexts
* @param itemErrorMessages error items
*/
void registerJobCompleted(ShardingContexts shardingContexts, Map<Integer, String> itemErrorMessages);
/**
* Get sharding contexts.
*
* @return sharding contexts
*/
ShardingContexts getShardingContexts();
/**
* Set task misfire flag.
*
* @param shardingItems sharding items to be set misfire flag
* @return whether satisfy misfire condition
*/
boolean misfireIfRunning(Collection<Integer> shardingItems);
/**
* Clear misfire flag.
*
* @param shardingItems sharding items to be cleared misfire flag
*/
void clearMisfire(Collection<Integer> shardingItems);
/**
* Judge job whether need to execute misfire tasks.
*
* @param shardingItems sharding items
* @return whether need to execute misfire tasks
*/
boolean isExecuteMisfired(Collection<Integer> shardingItems);
/**
* Judge job whether need resharding.
*
* @return whether need resharding
*/
boolean isNeedSharding();
/**
* Call before job executed.
*
* @param shardingContexts sharding contexts
*/
void beforeJobExecuted(ShardingContexts shardingContexts);
/**
* Call after job executed.
*
* @param shardingContexts sharding contexts
*/
void afterJobExecuted(ShardingContexts shardingContexts);
/**
* Post job execution event.
*
* @param jobExecutionEvent job execution event
*/
void postJobExecutionEvent(JobExecutionEvent jobExecutionEvent);
/**
* Post job status trace event.
*
* @param taskId task Id
* @param state job state
* @param message job message
*/
void postJobStatusTraceEvent(String taskId, State state, String message);
/**
* Is current job belong to DAG.
*
* @return is dag job
*/
boolean isDagJob();
/**
* Check Dag Group States.
*/
void checkDagStates();
/**
* Check current job's dependencies are all success.
*/
void checkDagJobDependencies();
}