添加 flink hbase 连接器依赖
Adding flink hbase connector dependency
我正在尝试从 flink 连接 Hbase 和 Druid。我在 intellij 中添加了以下依赖项。
https://mvnrepository.com/artifact/org.apache.flink/flink-hbase_2.10
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-hbase_2.10</artifactId>
<version>1.3.2</version>
</dependency>
和 https://github.com/druid-io/tranquility. Seems maven central has only version 0.8.2 而不是 0.9.
<dependency>
<groupId>io.druid</groupId>
<artifactId>tranquility-flink_2.11</artifactId>
<version>0.9.0</version>
</dependency>
但是 intellij 说找不到依赖项。如何添加此依赖项?
经过大量尝试,我 manually 添加了库:
在您的文件中找到您的pom.xml
右击它 --> Maven --> Import
- 等待项目加载:D
- 按 ctrl+alt+shift+s(这将打开项目 window。)
然后点击绿色+号导入maven库
我正在尝试从 flink 连接 Hbase 和 Druid。我在 intellij 中添加了以下依赖项。
https://mvnrepository.com/artifact/org.apache.flink/flink-hbase_2.10
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-hbase_2.10</artifactId>
<version>1.3.2</version>
</dependency>
和 https://github.com/druid-io/tranquility. Seems maven central has only version 0.8.2 而不是 0.9.
<dependency>
<groupId>io.druid</groupId>
<artifactId>tranquility-flink_2.11</artifactId>
<version>0.9.0</version>
</dependency>
但是 intellij 说找不到依赖项。如何添加此依赖项?
经过大量尝试,我 manually 添加了库:
在您的文件中找到您的pom.xml
右击它 --> Maven --> Import
- 等待项目加载:D
- 按 ctrl+alt+shift+s(这将打开项目 window。)
然后点击绿色+号导入maven库