Skip to content

Commit b7a925b

Browse files
HIVE-28896: Upgrade kudu to 1.17.0 (#5727). (Tanishq Chugh, reviewed by Ayush Saxena)
1 parent f4ee61a commit b7a925b

File tree

4 files changed

+27
-1
lines changed

4 files changed

+27
-1
lines changed

itests/qtest-kudu/pom.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,17 @@
104104
<artifactId>junit</artifactId>
105105
<scope>test</scope>
106106
</dependency>
107+
<dependency>
108+
<groupId>org.apache.logging.log4j</groupId>
109+
<artifactId>log4j-1.2-api</artifactId>
110+
<scope>test</scope>
111+
</dependency>
112+
<dependency>
113+
<groupId>org.apache.logging.log4j</groupId>
114+
<artifactId>log4j-core</artifactId>
115+
<version>${log4j2.version}</version>
116+
<scope>test</scope>
117+
</dependency>
107118
<!-- Declare hive-exec dependencies that were shaded in instead of
108119
being listed as dependencies -->
109120
<dependency>

itests/util/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,12 @@
168168
<groupId>org.apache.kudu</groupId>
169169
<artifactId>kudu-test-utils</artifactId>
170170
<version>${kudu.version}</version>
171+
<exclusions>
172+
<exclusion>
173+
<groupId>org.apache.logging.log4j</groupId>
174+
<artifactId>log4j-api</artifactId>
175+
</exclusion>
176+
</exclusions>
171177
</dependency>
172178
<dependency>
173179
<groupId>org.apache.tez</groupId>

kudu-handler/pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,15 @@
9898
<artifactId>junit-vintage-engine</artifactId>
9999
<scope>test</scope>
100100
</dependency>
101+
<dependency>
102+
<groupId>org.apache.logging.log4j</groupId>
103+
<artifactId>log4j-1.2-api</artifactId>
104+
</dependency>
105+
<dependency>
106+
<groupId>org.apache.logging.log4j</groupId>
107+
<artifactId>log4j-core</artifactId>
108+
<version>${log4j2.version}</version>
109+
</dependency>
101110
<dependency>
102111
<groupId>org.apache.kudu</groupId>
103112
<artifactId>kudu-test-utils</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@
171171
<kafka.version>2.5.0</kafka.version>
172172
<kryo.version>5.5.0</kryo.version>
173173
<reflectasm.version>1.11.9</reflectasm.version>
174-
<kudu.version>1.12.0</kudu.version>
174+
<kudu.version>1.17.0</kudu.version>
175175
<!-- Leaving libfb303 at 0.9.3 regardless of libthrift: As per THRIFT-4613 The Apache Thrift project does not publish items related to fb303 at this point -->
176176
<libfb303.version>0.9.3</libfb303.version>
177177
<libthrift.version>0.16.0</libthrift.version>

0 commit comments

Comments
 (0)