dolphinscheduler master实现去中心化源码分析

dolphinscheduler Master服务是去中心化的,也就是没有master和slave之分,每个master都参与工作,那么它是如何每个Master服务去取任务执行时,每个Master都取到不同的任务,并且不会漏掉,不会重复的呢 ,下面从源码角度来分析这个问题

MasterServer.java

csharp 复制代码
/**
 * run master server
 */
@PostConstruct
public void run() throws SchedulerException {
    ......

    this.masterSlotManager.start();

    // self tolerant

    ......
    
    this.masterSchedulerBootstrap.start();
    ......
}

在DS(后面dolphinschedule的简称)中提出了一个Slot(插槽)的概念,每个Master都有专属于自己的SlotId,当master减少或增加时,会刷新这个Id。

2. 先看SlotId的生成原理

kotlin 复制代码
this.masterSlotManager.start();
csharp 复制代码
public void start() {
    serverNodeManager.addMasterInfoChangeListener(new MasterSlotManager.SlotChangeListener());
}

这里注册了addMasterInfoChangeListener , 从字面上分析,这里会监听卸载Zookeeper中的Master信息的变化;先分析SlotChangeListener

ini 复制代码
public class SlotChangeListener implements MasterInfoChangeListener {

    private final Lock slotLock = new ReentrantLock();

    private final MasterPriorityQueue masterPriorityQueue = new MasterPriorityQueue();

    @Override
    public void notify(Map<String, MasterHeartBeat> masterNodeInfo) {
    // 一旦master信息发生变化会走到这里,masterNodeInfo是所有master的最新信息
        List<Server> serverList = masterNodeInfo.values().stream()
                .filter(heartBeat -> !heartBeat.getServerStatus().equals(ServerStatus.BUSY))
                .map(this::convertHeartBeatToServer).collect(Collectors.toList());
        syncMasterNodes(serverList);
    }

    /**
     * sync master nodes
     */
    private void syncMasterNodes(List<Server> masterNodes) {
        slotLock.lock();
        try {
            //masterPriorityQueue 是一个阻塞优先队列
            this.masterPriorityQueue.clear();
            // 把masterNodes,会获得一个根据createTime排序的队列,这样在各个master节点中,这个优先队列中的排序顺序就都是固定一样的
            this.masterPriorityQueue.putAll(masterNodes);
            // 这里是根据当前节点的IP来获取队列中的Index来当做SlotId
            int tempCurrentSlot = masterPriorityQueue.getIndex(masterConfig.getMasterAddress());
            int tempTotalSlot = masterNodes.size();
            if (tempCurrentSlot < 0) {
                totalSlot = 0;
                currentSlot = 0;
                log.warn("Current master is not in active master list");
            } else if (tempCurrentSlot != currentSlot || tempTotalSlot != totalSlot) {
                totalSlot = tempTotalSlot;
                currentSlot = tempCurrentSlot;
                log.info("Update master nodes, total master size: {}, current slot: {}", totalSlot, currentSlot);
            }
        } finally {
            slotLock.unlock();
        }
    }
    ......
 }

从SlotChangeListener源码中,可以知道SlotId的来源,来源于Zookeeper中masterInfo信息的变化,而masterinfo信息是由master启动时主动注册上去的(临时节点,下线自动删除)。

3. 如何利用SlotId来取任务Command

scss 复制代码
MasterSchedulerBootstrap.start()

这个方法最终会执行到MasterSchedulerBootstrap的run()方法

java 复制代码
@Override
public void run() {
    MasterServerLoadProtection serverLoadProtection = masterConfig.getServerLoadProtection();
    while (!ServerLifeCycleManager.isStopped()) {
        try {
.......
            //SlotId就在这个findCommands方法中,实现不同的master取不同的command
            List<Command> commands = findCommands();
            if (CollectionUtils.isEmpty(commands)) {
                // indicate that no command ,sleep for 1s
                Thread.sleep(Constants.SLEEP_TIME_MILLIS);
                continue;
            }

            commands.parallelStream()
                    .forEach(command -> {
                        try {
                            Optional<WorkflowExecuteRunnable> workflowExecuteRunnableOptional =
                                    workflowExecuteRunnableFactory.createWorkflowExecuteRunnable(command);
                            if (!workflowExecuteRunnableOptional.isPresent()) {
                                log.warn(
                                        "The command execute success, will not trigger a WorkflowExecuteRunnable, this workflowInstance might be in serial mode");
                                return;
                            }
                            WorkflowExecuteRunnable workflowExecuteRunnable = workflowExecuteRunnableOptional.get();
                            ProcessInstance processInstance = workflowExecuteRunnable
                                    .getWorkflowExecuteContext().getWorkflowInstance();
                            if (processInstanceExecCacheManager.contains(processInstance.getId())) {
                                log.error(
                                        "The workflow instance is already been cached, this case shouldn't be happened");
                            }
                            processInstanceExecCacheManager.cache(processInstance.getId(), workflowExecuteRunnable);
                            workflowEventQueue.addEvent(
                                    new WorkflowEvent(WorkflowEventType.START_WORKFLOW, processInstance.getId()));
                        } catch (WorkflowCreateException workflowCreateException) {
                            log.error("Master handle command {} error ", command.getId(), workflowCreateException);
                            commandService.moveToErrorCommand(command, workflowCreateException.toString());
                        }
                    });
            MasterServerMetrics.incMasterConsumeCommand(commands.size());
        } catch (InterruptedException interruptedException) {
            log.warn("Master schedule bootstrap interrupted, close the loop", interruptedException);
            Thread.currentThread().interrupt();
            break;
        } catch (Exception e) {
            log.error("Master schedule workflow error", e);
            // sleep for 1s here to avoid the database down cause the exception boom
            ThreadUtils.sleep(Constants.SLEEP_TIME_MILLIS);
        }
    }
}
java 复制代码
private List<Command> findCommands() throws MasterException {
    try {
        long scheduleStartTime = System.currentTimeMillis();
        // 这里拿到自己的SlotId
        int thisMasterSlot = masterSlotManager.getSlot();
        int masterCount = masterSlotManager.getMasterSize();
        if (masterCount <= 0) {
            log.warn("Master count: {} is invalid, the current slot: {}", masterCount, thisMasterSlot);
            return Collections.emptyList();
        }
        int pageSize = masterConfig.getFetchCommandNum();
        //这里通过slotId去取command
        final List<Command> result =
                commandService.findCommandPageBySlot(pageSize, masterCount, thisMasterSlot);
        if (CollectionUtils.isNotEmpty(result)) {
            long cost = System.currentTimeMillis() - scheduleStartTime;
            log.info(
                    "Master schedule bootstrap loop command success, fetch command size: {}, cost: {}ms, current slot: {}, total slot size: {}",
                    result.size(), cost, thisMasterSlot, masterCount);
            ProcessInstanceMetrics.recordCommandQueryTime(cost);
        }
        return result;
    } catch (Exception ex) {
        throw new MasterException("Master loop command from database error", ex);
    }
}

最终会走到Mapper中

xml 复制代码
<select id="queryCommandPageBySlot" resultType="org.apache.dolphinscheduler.dao.entity.Command">
    select *
    from t_ds_command
    where id % #{masterCount} = #{thisMasterSlot}
    order by process_instance_priority, id asc
        limit #{limit}
</select>

这里通过id 对master的总数取余,如果等于当前的SlotId,则取出,实现多master取同一张表中的command,而master之间相互不冲突

相关推荐
得物技术2 天前
从埋点需求到规则资产:Hermes Agent 重构得物数仓工作流
大数据·llm·ai编程
久美子2 天前
AI驱动数仓建设的Harness工程实践——本体建模、知识分层与上下文工程
大数据
大树883 天前
金刚石散热越强,管路越先见顶
大数据·运维·服务器·人工智能·ai
大志哥1233 天前
ES和Logstash日志链路系统上线后遭遇切片爆炸(解决)
大数据·elasticsearch
果丁智能3 天前
物联网智能锁赋能集中式住宿:身份核验与远程权限管控的全链路技术实践
大数据·人工智能·物联网·智能家居
ApacheSeaTunnel3 天前
实战演示 | 基于 Apache SeaTunnel 与 Apache DolphinScheduler 实现 MySQL 到 Doris 离线定时增量同步
大数据·mysql·开源·doris·数据集成·seatunnel·数据同步
weixin_397574093 天前
PDF复杂表格的1:1还原引擎:跨页表格自动拼接技术实战
大数据·人工智能·pdf
极光代码工作室3 天前
基于数据仓库的电商数据分析平台
大数据·hadoop·python·spark·数据可视化
秋名山码民3 天前
Graph RAG 深度解析:从向量检索到知识推理的技术演进
大数据·人工智能·rag
m0_380167143 天前
面向开发者的Top10加密货币数据API(2026年最新)
大数据·人工智能·区块链