FetchTaskThread.java 9.6 KB
Newer Older
L
ligang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/*
 * 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 cn.escheduler.server.worker.runner;

import cn.escheduler.common.Constants;
import cn.escheduler.common.queue.ITaskQueue;
import cn.escheduler.common.thread.Stopper;
import cn.escheduler.common.thread.ThreadUtils;
import cn.escheduler.common.utils.FileUtils;
import cn.escheduler.common.utils.OSUtils;
import cn.escheduler.dao.ProcessDao;
26
import cn.escheduler.dao.model.*;
L
ligang 已提交
27 28 29 30 31 32 33
import cn.escheduler.server.zk.ZKWorkerClient;
import com.cronutils.utils.StringUtils;
import org.apache.commons.configuration.Configuration;
import org.apache.curator.framework.recipes.locks.InterProcessMutex;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

B
baoliang 已提交
34
import java.util.Arrays;
L
ligang 已提交
35
import java.util.Date;
B
baoliang 已提交
36
import java.util.List;
L
ligang 已提交
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
import java.util.concurrent.ExecutorService;
import java.util.concurrent.ThreadPoolExecutor;

/**
 *  fetch task thread
 */
public class FetchTaskThread implements Runnable{

    private static final Logger logger = LoggerFactory.getLogger(FetchTaskThread.class);
    /**
     *  set worker concurrent tasks
     */
    private final int taskNum;

    /**
     *  zkWorkerClient
     */
    private final ZKWorkerClient zkWorkerClient;

    /**
     * task queue impl
     */
    protected ITaskQueue taskQueue;

    /**
     *  process database access
     */
    private final ProcessDao processDao;

    /**
     *  worker thread pool executor
     */
    private final ExecutorService workerExecService;

    /**
     *  worker exec nums
     */
    private int workerExecNums;

    private Configuration conf;


    public FetchTaskThread(int taskNum, ZKWorkerClient zkWorkerClient,
                           ProcessDao processDao, Configuration conf,
                           ITaskQueue taskQueue){
        this.taskNum = taskNum;
        this.zkWorkerClient = zkWorkerClient;
        this.processDao = processDao;
        this.workerExecNums = conf.getInt(Constants.WORKER_EXEC_THREADS,
                Constants.defaultWorkerExecThreadNum);
        // worker thread pool executor
        this.workerExecService = ThreadUtils.newDaemonFixedThreadExecutor("Worker-Fetch-Task-Thread",workerExecNums);
        this.conf = conf;
        this.taskQueue = taskQueue;
    }

B
baoliang 已提交
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
    /**
     * Check if the task runs on this worker
     * @param taskInstance
     * @param host
     * @return
     */
    private boolean checkWorkerGroup(TaskInstance taskInstance, String host){

        int taskWorkerGroupId = taskInstance.getWorkerGroupId();
        ProcessInstance processInstance = processDao.findProcessInstanceByTaskId(taskInstance.getId());
        if(processInstance == null){
            logger.error("cannot find the task:{} process instance", taskInstance.getId());
            return false;
        }
        int processWorkerGroupId = processInstance.getWorkerGroupId();

B
baoliang 已提交
109
        taskWorkerGroupId = (taskWorkerGroupId <= 0 ? processWorkerGroupId : taskWorkerGroupId);
B
baoliang 已提交
110

B
baoliang 已提交
111
        if(taskWorkerGroupId <= 0){
B
baoliang 已提交
112 113
            return true;
        }
B
baoliang 已提交
114
        WorkerGroup workerGroup = processDao.queryWorkerGroupById(taskWorkerGroupId);
B
baoliang 已提交
115 116 117 118 119 120 121 122 123 124 125 126 127 128
        if(workerGroup == null ){
            logger.info("task {} cannot find the worker group, use all worker instead.", taskInstance.getId());
            return true;
        }
        String ips = workerGroup.getIpList();
        if(ips == null){
            logger.error("task:{} worker group:{} parameters(ip_list) is null, this task would be running on all workers",
                    taskInstance.getId(), workerGroup.getId());
        }
        String[] ipArray = ips.split(",");
        List<String> ipList =  Arrays.asList(ipArray);
        return ipList.contains(host);
    }

L
ligang 已提交
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153

    @Override
    public void run() {

        while (Stopper.isRunning()){
            InterProcessMutex mutex = null;
            try {
                if(OSUtils.checkResource(this.conf, false)) {

                    // creating distributed locks, lock path /escheduler/lock/worker
                    String zNodeLockPath = zkWorkerClient.getWorkerLockPath();
                    mutex = new InterProcessMutex(zkWorkerClient.getZkClient(), zNodeLockPath);
                    mutex.acquire();

                    ThreadPoolExecutor poolExecutor = (ThreadPoolExecutor) workerExecService;

                    for (int i = 0; i < taskNum; i++) {

                        int activeCount = poolExecutor.getActiveCount();
                        if (activeCount >= workerExecNums) {
                            logger.info("thread insufficient , activeCount : {} , workerExecNums : {}",activeCount,workerExecNums);
                            continue;
                        }

                        // task instance id str
B
baoliang 已提交
154
                        String taskQueueStr = taskQueue.poll(Constants.SCHEDULER_TASKS_QUEUE, false);
L
ligang 已提交
155

B
baoliang 已提交
156
                        if (!StringUtils.isEmpty(taskQueueStr )) {
L
ligang 已提交
157

B
baoliang 已提交
158 159 160
                            String[] taskStringArray = taskQueueStr.split(Constants.UNDERLINE);
                            String taskInstIdStr = taskStringArray[taskStringArray.length - 1];
                            Date now = new Date();
L
ligang 已提交
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
                            Integer taskId = Integer.parseInt(taskInstIdStr);

                            // find task instance by task id
                            TaskInstance taskInstance = processDao.findTaskInstanceById(taskId);

                            logger.info("worker fetch taskId : {} from queue ", taskId);

                            int retryTimes = 30;
                            // mainly to wait for the master insert task to succeed
                            while (taskInstance == null && retryTimes > 0) {
                                Thread.sleep(Constants.SLEEP_TIME_MILLIS);
                                taskInstance = processDao.findTaskInstanceById(taskId);
                                retryTimes--;
                            }

B
baoliang 已提交
176
                            if (taskInstance == null ) {
L
ligang 已提交
177 178 179
                                logger.error("task instance is null. task id : {} ", taskId);
                                continue;
                            }
B
baoliang 已提交
180 181 182
                            if(!checkWorkerGroup(taskInstance, OSUtils.getHost())){
                                continue;
                            }
B
baoliang 已提交
183
                            taskQueue.removeNode(Constants.SCHEDULER_TASKS_QUEUE, taskQueueStr);
B
baoliang 已提交
184
                            logger.info("remove task:{} from queue", taskQueueStr);
L
ligang 已提交
185 186 187 188 189 190 191 192 193

                            // set execute task worker host
                            taskInstance.setHost(OSUtils.getHost());
                            taskInstance.setStartTime(now);


                            // get process instance
                            ProcessInstance processInstance = processDao.findProcessInstanceDetailById(taskInstance.getProcessInstanceId());

194

L
ligang 已提交
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
                            // get process define
                            ProcessDefinition processDefine = processDao.findProcessDefineById(taskInstance.getProcessDefinitionId());


                            taskInstance.setProcessInstance(processInstance);
                            taskInstance.setProcessDefine(processDefine);


                            // get local execute path
                            String execLocalPath = FileUtils.getProcessExecDir(processDefine.getProjectId(),
                                    processDefine.getId(),
                                    processInstance.getId(),
                                    taskInstance.getId());
                            logger.info("task instance  local execute path : {} ", execLocalPath);


                            // set task execute path
                            taskInstance.setExecutePath(execLocalPath);

                            // check and create Linux users
                            FileUtils.createWorkDirAndUserIfAbsent(execLocalPath,
Q
qiaozhanwei 已提交
216
                                    processInstance.getTenantCode(), logger);
L
ligang 已提交
217

218
                            logger.info("task : {} ready to submit to task scheduler thread",taskId);
L
ligang 已提交
219 220
                            // submit task
                            workerExecService.submit(new TaskScheduleThread(taskInstance, processDao));
L
lidongdai 已提交
221

L
ligang 已提交
222
                        }
L
lidongdai 已提交
223

L
ligang 已提交
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
                    }
                }

                Thread.sleep(Constants.SLEEP_TIME_MILLIS);

            }catch (Exception e){
                logger.error("fetch task thread exception : " + e.getMessage(),e);
            }
            finally {
                if (mutex != null){
                    try {
                        mutex.release();
                    } catch (Exception e) {
                        if(e.getMessage().equals("instance must be started before calling this method")){
                            logger.warn("fetch task lock release");
                        }else{
                            logger.error("fetch task lock release failed : " + e.getMessage(),e);
                        }
                    }
                }
            }
        }
    }
}