Flink源码-集群启动之JobManager的启动

主要内容

Flink 架构

首先要熟悉flink架构基础知识,了解client、jobmanager、taskmanager的基本用途;本文通过源码角度分析各个组件的启动流程深入理解client、jobmanager、taskmanager的功能和之间的交互
首先集群启动脚本分析,也是便于我们从源头找到阅读flink源码的流程。

集群启动脚本start-cluster

首先集群启动时会执行start-cluster脚本,如下:

$ ./bin/start-cluster.sh

start-cluster核心代码如下:

"${FLINK_BIN_DIR}"/jobmanager.sh start "${master}" "${webuiport}"

如上述会调用jobmanager.sh脚本

     ENTRYPOINT=standalonesession

   "${FLINK_BIN_DIR}"/flink-daemon.sh $STARTSTOP $ENTRYPOINT "${args[@]}"

jommanager.sh脚本中会调用Flink-daemon.sh脚本

    (standalonesession)
        CLASS_TO_RUN=org.apache.flink.runtime.entrypoint.StandaloneSessionClusterEntrypoint 

jobmanager启动的入口类

jobmanager.sh脚本中会调用启动的入口类StandaloneSessionClusterEntrypoint,分析如下:

jobmanager功能概述

概述:jobmanager启动过程首先初始化各种服务(initializeServices(configuration, pluginManager)),包括haServices,blobServer,heartbeatServices,metricRegistry,archivedExecutionGraphStore,之后会启动三大组件WebMonitorEndpoint、ResourceManager、DispatcherRunner;WebMonitorEndpoint主要功能接收来自客户端的请求服务,然后转发到不同的handler处理,比如提交作业submitJob会调用SubmitJobHandler处理。;ResourceManager负责资源的分配和管理;Dispatcher 负责用于接收作业的提交,并进行持久化,生成要执行的作业管理器任务,并在主任务失败时进行恢复,还会会拉起一个JobMaster。

启动过程涉及的核心类及方法

StandaloneSessionClusterEntrypoint.main()->ClusterEntrypoint.runCluster()
具体过程:

public static void main(String[] args) {
        // startup checks and logging
        EnvironmentInformation.logEnvironmentInfo(
                LOG, StandaloneSessionClusterEntrypoint.class.getSimpleName(), args);
        SignalHandler.register(LOG);
        JvmShutdownSafeguard.installAsShutdownHook(LOG);
        //获取配置
        final EntrypointClusterConfiguration entrypointClusterConfiguration =
                ClusterEntrypointUtils.parseParametersOrExit(
                        args,
                        new EntrypointClusterConfigurationParserFactory(),
                        StandaloneSessionClusterEntrypoint.class);
        Configuration configuration = loadConfiguration(entrypointClusterConfiguration);

        StandaloneSessionClusterEntrypoint entrypoint =
                new StandaloneSessionClusterEntrypoint(configuration);
      //启动集群
        ClusterEntrypoint.runClusterEntrypoint(entrypoint);
    }

执行main方法启动集群jobmanager,ClusterEntrypoint.runClusterEntrypoint(entrypoint);

最终会调用ClusterEntrypoint的runCluster()方法:

  private void runCluster(Configuration configuration, PluginManager pluginManager)
            throws Exception {
        synchronized (lock) {
            /**
            *初始化各种服务(6个):
            *commonRpcService 一个基于akka得actorSystem,内部会启动一个actor;主节点启动完会自己给自己发送一个hello消息,最终是有这个service处理的。
            *ioExecutor 专门处理IO的服务。
            *haServices 具体是哪种高可用实现是读取flink-conf.yml配置(high-availability = zookeeper),一般是创建一个zookeeperHaService内部主要使用curator框架。
            *blobServer做大文件的传送服务比如用户作业的jar包,TM上传log文件等
             *heartbeatServices
            */
            initializeServices(configuration, pluginManager);

            // write host information into configuration
            configuration.setString(JobManagerOptions.ADDRESS, commonRpcService.getAddress());
            configuration.setInteger(JobManagerOptions.PORT, commonRpcService.getPort());

            final DispatcherResourceManagerComponentFactory
                    dispatcherResourceManagerComponentFactory =
                            createDispatcherResourceManagerComponentFactory(configuration);
            //创建组件
            clusterComponent =
                    dispatcherResourceManagerComponentFactory.create(
                            configuration,
                            ioExecutor,
                            commonRpcService,
                            haServices,
                            blobServer,
                            heartbeatServices,
                            metricRegistry,
                            archivedExecutionGraphStore,
                            new RpcMetricQueryServiceRetriever(
                                    metricRegistry.getMetricQueryServiceRpcService()),
                            this);

        }
    }

调用DefaultDispatcherResourceManagerComponentFactory.create()创建WebMonitorEndpoint、ResourceManager、Dispatcher;代码如下:

 public DispatcherResourceManagerComponent create(
            Configuration configuration,
            Executor ioExecutor,
            RpcService rpcService,
            HighAvailabilityServices highAvailabilityServices,
            BlobServer blobServer,
            HeartbeatServices heartbeatServices,
            MetricRegistry metricRegistry,
            ArchivedExecutionGraphStore archivedExecutionGraphStore,
            MetricQueryServiceRetriever metricQueryServiceRetriever,
            FatalErrorHandler fatalErrorHandler)
            throws Exception {

        LeaderRetrievalService dispatcherLeaderRetrievalService = null;
        LeaderRetrievalService resourceManagerRetrievalService = null;
        /**
         * TODO 创建三大组件
         */
        WebMonitorEndpoint<?> webMonitorEndpoint = null;
        ResourceManager<?> resourceManager = null;
        DispatcherRunner dispatcherRunner = null;
        ......
      ///返回DispatcherRestEndpoint类型的对象
        webMonitorEndpoint = restEndpointFactory.createRestEndpoint(
                            configuration,
                            dispatcherGatewayRetriever,
                            resourceManagerGatewayRetriever,
                            blobServer,
                            executor,
                            metricFetcher,
                            highAvailabilityServices.getClusterRestEndpointLeaderElectionService(),
                            fatalErrorHandler);

            log.debug("Starting Dispatcher REST endpoint.");
            //TODO 启动的关键方法-重点分析
            webMonitorEndpoint.start();

resourceManager = resourceManagerFactory.createResourceManager(
                            configuration,
                            ResourceID.generate(),
                            rpcService,
                            highAvailabilityServices,
                            heartbeatServices,
                            fatalErrorHandler,
                            new ClusterInformation(hostname, blobServer.getPort()),
                            webMonitorEndpoint.getRestBaseUrl(),
                            metricRegistry,
                            hostname,
                            ioExecutor);

 dispatcherRunner = dispatcherRunnerFactory.createDispatcherRunner(
                            highAvailabilityServices.getDispatcherLeaderElectionService(),
                            fatalErrorHandler,
                            new HaServicesJobGraphStoreFactory(highAvailabilityServices),
                            ioExecutor,
                            rpcService,
                            partialDispatcherServices);

            log.debug("Starting ResourceManager.");
            resourceManager.start();


如上首先初始化各种服务,之后创建三大组件WebMonitorEndpoint、ResourceManager、DispatcherRunner。

分析WebMonitorEndpoint、ResourceManager、DispatcherRunner组件启动过程

WebMonitorEndpoint启动

WebMointorEndpoint类图:

image.png

调用从父类RestServerEndpoint继承的start()方法,start()方法主要作用有3个:1初始化各个handler 2.启动netty服务 3,进行leader选举.

/**
     * Starts this REST server endpoint.
     *
     * @throws Exception if we cannot start the RestServerEndpoint
     */
    public final void start() throws Exception {
      .....
       //1.初始化handler  调用DispatcherRestEndpoint对象的initializeHandlers方法
      handlers = initializeHandlers(restAddressFuture);
      //2.启动netty引导器 ,ServerBootstrap
      bootstrap = new ServerBootstrap();
      //3.启动WebMonitEndpoint  leader选举
      startInternal();
      .....

    }

调用DispatcherRestEndpoint类的initializeHandlers()方法初始化handlers:

protected List<Tuple2<RestHandlerSpecification, ChannelInboundHandler>> initializeHandlers(
            final CompletableFuture<String> localAddressFuture) {


        /**
         *         //TODO  ChannelInboundHandler channelRead0()方法,这个方法会自动被Netty去调用执行
         *         不管初始的哪个handler,里面都有一个 handlerRequest的方法
         *         channelRead0()的底层,最终调用的就是handler.handleRequest()方法,
         *         当我们提交job的时候,最终由WebMonitorEndpoint 接收到,跳转到JobSubmitHandler来执行
         *         最终执行请求的就是handle Request()方法
         */
        List<Tuple2<RestHandlerSpecification, ChannelInboundHandler>> handlers =
              //调用父类WebMonitorEndpoint的方法
                super.initializeHandlers(localAddressFuture);

        // Add the Dispatcher specific handlers

        final Time timeout = restConfiguration.getTimeout();
        //处理用户提交作业请求的handler
        JobSubmitHandler jobSubmitHandler =
                new JobSubmitHandler(
                        leaderRetriever, timeout, responseHeaders, executor, clusterConfiguration);

        handlers.add(Tuple2.of(jobSubmitHandler.getMessageHeaders(), jobSubmitHandler));

        return handlers;
    }

调用WebMonitorEndpoint类的startInternal() :


/**
*启动leader选举
*
*/
 public void startInternal() throws Exception {

      //执行leader选举
        leaderElectionService.start(this);
        startExecutionGraphCacheCleanupTask();

        if (hasWebUI) {
            log.info("Web frontend listening at {}.", getRestBaseUrl());
        }
    }

leaderElectionService.start()方法在Flink代码中会经常看到,一般在需要leader选举时都会调用。主要使用Curator框架,leader选举成功将会回调当前类的grantLeadership()方法。
未完待续,下篇将继续分析Dispatcher的创建流程及作用。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,921评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,635评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,393评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,836评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,833评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,685评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,043评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,694评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,671评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,670评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,779评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,424评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,027评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,984评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,214评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,108评论 2 351
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,517评论 2 343

推荐阅读更多精彩内容