不借助于Flink集群,如何让任务本地执行

前言:
在做flink实时计算平台的时候,我遇到过这样一个问题,在执行sql任务的时候,我们需要预先创建一些Table,View,甚至是functions。这些其实flink-sql-client已经提供了,但不支持yarn的per-job模式。所以我就弄了一个任务,专门执行ddl的sql,但是这过程中有一个问题,其实这个job不需要借助于yarn的资源,直接本地跑就行了,只要能连接到你的catalog。

MysqlCatalog

Flink官方是没有实现基于Mysql的Catalog的,最新版本的Flink1.11中,虽然有Jdbc的Catalog,但它的实现的本意并不是一个元数据管理,而是把flink的schema映射到数据的对应的表中,从而实现可以直接往表里写数据,显然不是我想要的。

如何实现一个Mysql的Catalog不是本文的重点,后续我会专门写一篇基于Mysql的Catalog的实现的文章,敬请期待。

DDL执行任务

Flink1.11开始已经全面支持 Flink DDL 的SQL了,包括创建catalog,创建 database,创建view等。使用streamTableEnv.executeSql就能轻松搞定,无需再去自己解析。下面是我用于专门执行ddl的 flink任务的代码

public static void executeSql(String sqlContent) throws Exception {
        ParameterTool active = ParameterTool.fromPropertiesFile(LocalStreamingJob.class.getClassLoader().getResourceAsStream("app.properties"));
        String activeFile = String.format("app-%s.properties", active.get("profiles.active"));
        ParameterTool tool = ParameterTool.fromPropertiesFile(LocalStreamingJob.class.getClassLoader().getResourceAsStream(activeFile));
        Configuration conf = tool.getConfiguration();

        StreamExecutionEnvironment streamEnv = StreamExecutionEnvironment.getExecutionEnvironment();
        EnvironmentSettings settings = EnvironmentSettings.newInstance()
                .inStreamingMode()
                .useBlinkPlanner()
                .build();
        StreamTableEnvironment streamTableEnv = StreamTableEnvironment.create(streamEnv, settings);

        // 注册默认的catalog
        MysqlCatalog catalog = new MysqlCatalog(
                conf.get(CATALOG_DEFAULT_NAME),
                conf.get(CATALOG_DEFAULT_DATABASE),
                conf.get(CATALOG_DEFAULT_USER),
                conf.get(CATALOG_DEFAULT_PASSWORD),
                conf.get(CATALOG_DEFAULT_URL));

        streamTableEnv.registerCatalog(conf.get(CATALOG_DEFAULT_NAME), catalog);

        //使用默认的catalog,在sql里显示 使用'use catalog xxx'语句,可以覆盖
        streamTableEnv.executeSql(String.format("USE CATALOG `%s`", conf.get(CATALOG_DEFAULT_NAME)));
        // 使用默认的database,在sql里显示 使用'use xxx'语句,可以覆盖
        streamTableEnv.executeSql(String.format("USE `%s`", conf.get(CATALOG_DEFAULT_DATABASE)));

        String[] contentArr = StringUtils.split(sqlContent, ";");
        List<String> sqls = new ArrayList<>(contentArr.length);
        Collections.addAll(sqls, contentArr);
        for(String sql : sqls) {
            streamTableEnv.executeSql(sql).print();
        }
    }

如何本地执行

所谓的本地执行就是在线上执行时,无需提交到集群;就像在IDEA里直接运行一样,首先假设你的平台实现了一个提交ddl的rest接口,通过调用这个接口,传入待执行的sql,就能在catalog中创建一张表。那如何能做到?在我阅读Flink-Clients的源代码的时候,我发现ClientUtils里有这样一段代码:

public static void executeProgram(
            PipelineExecutorServiceLoader executorServiceLoader,
            Configuration configuration,
            PackagedProgram program,
            boolean enforceSingleJobExecution,
            boolean suppressSysout) throws ProgramInvocationException {
        checkNotNull(executorServiceLoader);
        // jar包的classloader
        final ClassLoader userCodeClassLoader = program.getUserCodeClassLoader();
        //当前线程的classloader
        final ClassLoader contextClassLoader = Thread.currentThread().getContextClassLoader();
        try {
            //把当前的classloader设置成jar包的classloader
            Thread.currentThread().setContextClassLoader(userCodeClassLoader);

            LOG.info("Starting program (detached: {})", !configuration.getBoolean(DeploymentOptions.ATTACHED));

            ContextEnvironment.setAsContext(
                executorServiceLoader,
                configuration,
                userCodeClassLoader,
                enforceSingleJobExecution,
                suppressSysout);

            StreamContextEnvironment.setAsContext(
                executorServiceLoader,
                configuration,
                userCodeClassLoader,
                enforceSingleJobExecution,
                suppressSysout);

            try {
                program.invokeInteractiveModeForExecution();
            } finally {
                ContextEnvironment.unsetAsContext();
                StreamContextEnvironment.unsetAsContext();
            }
        } finally {
            //最后还原classloader
            Thread.currentThread().setContextClassLoader(contextClassLoader);
        }
    }

显然,当你需要在一个线程里执行其它classloader里的代码时,只需要设置成代码的classloader,执行完后,再还原classloader就可以了,使用套路就是:

try {
    Thread.currentThread().setContextClassLoader(userCodeClassLoader);
    .....
} finally {
    Thread.currentThread().setContextClassLoader(contextClassLoader);
}

有了上面的思路,那么本地执行executeSql就完美解决了,代码如下:

public void executeSql(String sqlContent) {
    File flinkFile = new File(flinkHome + "/lib");
    if(!flinkFile.exists()) {
      throw new ServiceException(String.format("file:[%s] not exists", flinkHome + "/lib"));
    }
    if(!flinkFile.isDirectory()) {
      throw new ServiceException(String.format("file:[%s] is not a directory", flinkHome + "/lib"));
    }

    List<URL> urls = new ArrayList<>();
    File[] files = flinkFile.listFiles();
    try {
      for (File file : files) {
        urls.add(file.toURI().toURL());
      }
      File localEnvFile = new File(sqlJarFile);
      urls.add(localEnvFile.toURI().toURL());
    } catch (MalformedURLException e) {
      throw new ServiceException(e.getMessage());
    }
    
    ClassLoader flinkClassLoader = new URLClassLoader(urls.toArray(new URL[urls.size()]));
    Objects.requireNonNull(flinkClassLoader, "flink classloader can not be null");
    final ClassLoader contextClassLoader = Thread.currentThread().getContextClassLoader();
    try {
      Thread.currentThread().setContextClassLoader(flinkClassLoader);
       //加载远端的类
      Class<?> clazz = flinkClassLoader.loadClass("com.shizhengchao.github.local.env.LocalStreamingJob");
       //反射调用执行
      Method method = clazz.getMethod("executeSql", String.class);
      method.invoke(null, sqlContent);
    } catch (Exception e) {
      if(e instanceof InvocationTargetException) {
        throw new ServiceException(e.getCause());
      } else {
        throw new ServiceException(e.getMessage());
      }
    } finally {
      Thread.currentThread().setContextClassLoader(contextClassLoader);
    }
  }

最后,数据库里也有对应的ddl的信息了:


metastore

小插曲

在这期间出一了一个小问题:我的平台使用了ebean作为我的ORM框架,而我的mysqlcatalo的实现,我最初也是用ebean。这会导致在设置ClassLoader时,两边的Mapper冲突,出现catalog那端的mapper直接把实时平台的mapper覆盖掉了,导致一直报相应的Bean没有注册到EbeanServer。最后,我不得不把Catalog的实现换成了原生JDBC。

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