commit | 818d1fdedaad63631eab5d44ec90c748cfcf299f | [log] [tgz] |
---|---|---|
author | Alex Sorokoumov <aleksandr.sorokoumov@gmail.com> | Tue Sep 05 16:28:14 2023 -0700 |
committer | Tzu-Li (Gordon) Tai <tzulitai@apache.org> | Tue Sep 12 10:42:20 2023 -0700 |
tree | 8c8eaf5ffce7e15c7758787fa9fd71586ba11bda | |
parent | d6525c1481fc2d2821f361d2d5ce48f97221dd74 [diff] |
[FLINK-33017] Remove dependency on shaded guava The bump in shaded guava in Flink 1.18 changed import paths and caused the class loader fail when loading ManagedMemoryUtils. Looking at the root cause of the issue, shading was used as a technique to avoid dependency hell. As flink-connector-kafka should work with both flink 1.17 and 1.18 that use different guava versions (and hence library import paths), shading did not really solve the problem it was introduced for in the first place. There are several several options to work around the problem. First, we could introduce our own shading for guava. Second, we could see if the dependency on guava is necessary at all and maybe remove it completely. This patch takes the latter route and removes dependency on guava from this connector.
This repository contains the official Apache Flink Kafka connector.
Apache Flink is an open source stream processing framework with powerful stream- and batch-processing capabilities.
Learn more about Flink at https://flink.apache.org/
Prerequisites:
git clone https://github.com/apache/flink-connector-kafka.git cd flink-connector-kafka mvn clean package -DskipTests
The resulting jars can be found in the target
directory of the respective module.
The Flink committers use IntelliJ IDEA to develop the Flink codebase. We recommend IntelliJ IDEA for developing projects that involve Scala code.
Minimal requirements for an IDE are:
The IntelliJ IDE supports Maven out of the box and offers a plugin for Scala development.
Check out our Setting up IntelliJ guide for details.
Don’t hesitate to ask!
Contact the developers and community on the mailing lists if you need any help.
Open an issue if you found a bug in Flink.
The documentation of Apache Flink is located on the website: https://flink.apache.org or in the docs/
directory of the source code.
This is an active open-source project. We are always open to people who want to use the system or contribute to it. Contact us if you are looking for implementation tasks that fit your skills. This article describes how to contribute to Apache Flink.
Apache Flink is an open source project of The Apache Software Foundation (ASF). The Apache Flink project originated from the Stratosphere research project.