• flink 在使用upsert_kafka connector 时报错,找不到类Exeption: Could not find any factory for identifier 'upsert-kafka' that implements 'org.apache.flink.table.factories.DynamicTableFactory' in the classpath.


     原因:因为Flink 加载 table Factory 使用的时SPI机制,而正常的flink jar包是不包含META-INF.services 路径的,需要自己去添加

    org.apache.flink.table.factories.TableFactory

    # 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.
    
    org.apache.flink.streaming.connectors.kafka.KafkaTableSourceSinkFactory
    org.apache.flink.connector.jdbc.catalog.factory.JdbcCatalogFactory
    org.apache.flink.connector.jdbc.table.JdbcTableSourceSinkFactory
    org.apache.flink.streaming.connectors.redis.RedisTableSinkFactory
    org.apache.flink.connectors.kudu.table.KuduTableFactory
    org.apache.flink.connectors.kudu.table.KuduCatalogFactory

    参考链接:https://blog.csdn.net/u013516966/article/details/106536525

  • 相关阅读:
    JS模板引擎 :ArtTemplate (2)
    JS模板引擎 :ArtTemplate (1)
    nodeJs 初探 ~
    javascript高级函数
    Js高程笔记->引用类型
    html5离线存储
    (摘抄)HTTP 协议详解
    cordova /phonegap 自定义插件
    phonegap/cordova常用命令
    phonegap上传以及下载图片
  • 原文地址:https://www.cnblogs.com/yangxusun9/p/14473640.html
Copyright © 2020-2023  润新知