|
32 | 32 | <name>ChunJun : Connector : Arctic</name>
|
33 | 33 |
|
34 | 34 | <properties>
|
35 |
| - <hadoop.version>2.7.5</hadoop.version> |
36 |
| - <iceberg.version>0.13.2</iceberg.version> |
37 |
| - <arctic.version>0.4.0</arctic.version> |
| 35 | + <iceberg.version>1.1.0</iceberg.version> |
| 36 | + <arctic.version>0.5.0-SNAPSHOT</arctic.version> |
38 | 37 | <connector.dir>arctic</connector.dir>
|
| 38 | + <hive.version>3.1.2</hive.version> |
| 39 | + <parquet.version>1.12.2</parquet.version> |
| 40 | + <hadoop.version>2.7.5</hadoop.version> |
39 | 41 | </properties>
|
40 | 42 |
|
41 | 43 | <dependencies>
|
|
67 | 69 | <dependency>
|
68 | 70 | <groupId>org.apache.hadoop</groupId>
|
69 | 71 | <artifactId>hadoop-common</artifactId>
|
70 |
| - <version>${hadoop.version}</version> |
| 72 | + <version>${hadoop2.version}</version> |
71 | 73 | <exclusions>
|
72 | 74 | <exclusion>
|
73 | 75 | <artifactId>commons-cli</artifactId>
|
|
92 | 94 |
|
93 | 95 | <dependency>
|
94 | 96 | <groupId>com.netease.arctic</groupId>
|
95 |
| - <artifactId>arctic-flink-1.12</artifactId> |
| 97 | + <artifactId>arctic-flink-1.15</artifactId> |
96 | 98 | <version>${arctic.version}</version>
|
| 99 | + <exclusions> |
| 100 | + <exclusion> |
| 101 | + <artifactId>parquet-hadoop-bundle</artifactId> |
| 102 | + <groupId>org.apache.parquet</groupId> |
| 103 | + </exclusion> |
| 104 | + </exclusions> |
| 105 | + </dependency> |
| 106 | + |
| 107 | + <dependency> |
| 108 | + <groupId>org.apache.iceberg</groupId> |
| 109 | + <artifactId>iceberg-flink-1.15</artifactId> |
| 110 | + <version>${iceberg.version}</version> |
| 111 | + </dependency> |
| 112 | + |
| 113 | + <!-- kino added --> |
| 114 | + <dependency> |
| 115 | + <groupId>org.apache.parquet</groupId> |
| 116 | + <artifactId>parquet-avro</artifactId> |
| 117 | + <version>${parquet.version}</version> |
| 118 | + </dependency> |
| 119 | + <dependency> |
| 120 | + <groupId>org.apache.parquet</groupId> |
| 121 | + <artifactId>parquet-hadoop-bundle</artifactId> |
| 122 | + <version>1.8.1</version> |
| 123 | + </dependency> |
| 124 | + <dependency> |
| 125 | + <groupId>org.apache.hive</groupId> |
| 126 | + <artifactId>hive-exec</artifactId> |
| 127 | + <version>${hive.version}</version> |
| 128 | + <exclusions> |
| 129 | + <exclusion> |
| 130 | + <artifactId>calcite-core</artifactId> |
| 131 | + <groupId>org.apache.calcite</groupId> |
| 132 | + </exclusion> |
| 133 | + <exclusion> |
| 134 | + <artifactId>calcite-avatica</artifactId> |
| 135 | + <groupId>org.apache.calcite</groupId> |
| 136 | + </exclusion> |
| 137 | + <exclusion> |
| 138 | + <artifactId>derby</artifactId> |
| 139 | + <groupId>org.apache.derby</groupId> |
| 140 | + </exclusion> |
| 141 | + <exclusion> |
| 142 | + <groupId>org.xerial.snappy</groupId> |
| 143 | + <artifactId>snappy-java</artifactId> |
| 144 | + </exclusion> |
| 145 | + <exclusion> |
| 146 | + <artifactId>slf4j-log4j12</artifactId> |
| 147 | + <groupId>org.slf4j</groupId> |
| 148 | + </exclusion> |
| 149 | + <exclusion> |
| 150 | + <artifactId>slf4j-api</artifactId> |
| 151 | + <groupId>org.slf4j</groupId> |
| 152 | + </exclusion> |
| 153 | + <exclusion> |
| 154 | + <artifactId>log4j</artifactId> |
| 155 | + <groupId>log4j</groupId> |
| 156 | + </exclusion> |
| 157 | + <exclusion> |
| 158 | + <artifactId>guava</artifactId> |
| 159 | + <groupId>com.google.guava</groupId> |
| 160 | + </exclusion> |
| 161 | + <exclusion> |
| 162 | + <artifactId>commons-logging</artifactId> |
| 163 | + <groupId>commons-logging</groupId> |
| 164 | + </exclusion> |
| 165 | + <exclusion> |
| 166 | + <artifactId>commons-lang</artifactId> |
| 167 | + <groupId>commons-lang</groupId> |
| 168 | + </exclusion> |
| 169 | + <exclusion> |
| 170 | + <artifactId>commons-cli</artifactId> |
| 171 | + <groupId>commons-cli</groupId> |
| 172 | + </exclusion> |
| 173 | + <exclusion> |
| 174 | + <artifactId>commons-io</artifactId> |
| 175 | + <groupId>commons-io</groupId> |
| 176 | + </exclusion> |
| 177 | + <exclusion> |
| 178 | + <artifactId>junit</artifactId> |
| 179 | + <groupId>junit</groupId> |
| 180 | + </exclusion> |
| 181 | + <exclusion> |
| 182 | + <artifactId>commons-codec</artifactId> |
| 183 | + <groupId>commons-codec</groupId> |
| 184 | + </exclusion> |
| 185 | + <exclusion> |
| 186 | + <artifactId>commons-httpclient</artifactId> |
| 187 | + <groupId>commons-httpclient</groupId> |
| 188 | + </exclusion> |
| 189 | + <exclusion> |
| 190 | + <groupId>org.apache.hadoop</groupId> |
| 191 | + <artifactId>hadoop-yarn-api</artifactId> |
| 192 | + </exclusion> |
| 193 | + <exclusion> |
| 194 | + <artifactId>hadoop-yarn-common</artifactId> |
| 195 | + <groupId>org.apache.hadoop</groupId> |
| 196 | + </exclusion> |
| 197 | + <exclusion> |
| 198 | + <artifactId>hadoop-yarn-server-applicationhistoryservice</artifactId> |
| 199 | + <groupId>org.apache.hadoop</groupId> |
| 200 | + </exclusion> |
| 201 | + <exclusion> |
| 202 | + <artifactId>hadoop-yarn-server-common</artifactId> |
| 203 | + <groupId>org.apache.hadoop</groupId> |
| 204 | + </exclusion> |
| 205 | + <exclusion> |
| 206 | + <artifactId>hadoop-yarn-server-resourcemanager</artifactId> |
| 207 | + <groupId>org.apache.hadoop</groupId> |
| 208 | + </exclusion> |
| 209 | + <exclusion> |
| 210 | + <groupId>org.apache.parquet</groupId> |
| 211 | + <artifactId>parquet-column</artifactId> |
| 212 | + </exclusion> |
| 213 | + </exclusions> |
97 | 214 | </dependency>
|
98 | 215 | </dependencies>
|
99 | 216 |
|
|
142 | 259 | <pattern>org.apache.avro</pattern>
|
143 | 260 | <shadedPattern>org.apache.flink.avro.shaded.org.apache.avro</shadedPattern>
|
144 | 261 | </relocation>
|
| 262 | + <relocation> |
| 263 | + <pattern>org.apache.iceberg</pattern> |
| 264 | + <shadedPattern>shade.iceberg.org.apache.iceberg</shadedPattern> |
| 265 | + </relocation> |
| 266 | + <relocation> |
| 267 | + <pattern>org.apache.parquet.schema</pattern> |
| 268 | + <shadedPattern>shade.parquet.org.apache.parquet.schema</shadedPattern> |
| 269 | + </relocation> |
145 | 270 | </relocations>
|
146 | 271 | </configuration>
|
147 | 272 | </execution>
|
|
0 commit comments