Uploaded image for project: 'Flink'
  1. Flink
  2. FLINK-27100 Support parquet format in FileStore
  3. FLINK-27286

Fix table store connector throws ClassNotFoundException: org.apache.flink.table.store.shaded.org.apache.flink.connector.file.table.RowDataPartitionComputer

    XMLWordPrintableJSON

Details

    Description

      This is caused by FLINK-27172. Currently table store excludes file connector dependencies shading as follows:

      <exclude>org.apache.flink.connector.base.*</exclude>
      <exclude>org.apache.flink.connector.file.*</exclude>
      

      However this only excludes classes in org.apache.flink.connector.base and org.apache.flink.connector.file packages and does not exclude classes in their sub-packages. The correct excluding pattern should be:

      <exclude>org.apache.flink.connector.base.**</exclude>
      <exclude>org.apache.flink.connector.file.**</exclude>
      

      This change will also be checked by e2e tests in the near future.

      Attachments

        Issue Links

          Activity

            People

              TsReaper Caizhi Weng
              TsReaper Caizhi Weng
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: