Skip to content

Commit b7fd0ab

Browse files
committed
Upgrade HBase in storage-phonenix.
1 parent 7fe9bd1 commit b7fd0ab

2 files changed

Lines changed: 11 additions & 13 deletions

File tree

contrib/storage-phoenix/pom.xml

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@
2929
<name>Drill : Contrib : Storage : Phoenix</name>
3030

3131
<properties>
32-
<phoenix.version>5.1.3</phoenix.version>
33-
<!-- Limit the HBase minicluster version to 2.4.x to avoid a dependency conflict. -->
34-
<hbase.minicluster.version>2.4.17</hbase.minicluster.version>
32+
<phoenix.version>5.2.0</phoenix.version>
3533
<skipTests>false</skipTests>
3634
</properties>
3735

@@ -198,7 +196,7 @@
198196
</dependency>
199197
<dependency>
200198
<groupId>org.apache.phoenix</groupId>
201-
<artifactId>phoenix-hbase-compat-2.4.0</artifactId>
199+
<artifactId>phoenix-hbase-compat-2.4.1</artifactId>
202200
<version>${phoenix.version}</version>
203201
<scope>test</scope>
204202
</dependency>
@@ -211,7 +209,7 @@
211209
<dependency>
212210
<groupId>org.apache.hbase</groupId>
213211
<artifactId>hbase-it</artifactId>
214-
<version>${hbase.minicluster.version}</version>
212+
<version>${hbase.version}</version>
215213
<classifier>tests</classifier>
216214
<scope>test</scope>
217215
<exclusions>
@@ -224,39 +222,39 @@
224222
<dependency>
225223
<groupId>org.apache.hbase</groupId>
226224
<artifactId>hbase-common</artifactId>
227-
<version>${hbase.minicluster.version}</version>
225+
<version>${hbase.version}</version>
228226
<classifier>tests</classifier>
229227
<scope>test</scope>
230228
</dependency>
231229
<dependency>
232230
<groupId>org.apache.hbase</groupId>
233231
<artifactId>hbase-client</artifactId>
234-
<version>${hbase.minicluster.version}</version>
232+
<version>${hbase.version}</version>
235233
<scope>test</scope>
236234
</dependency>
237235
<dependency>
238236
<groupId>org.apache.hbase</groupId>
239237
<artifactId>hbase-server</artifactId>
240-
<version>${hbase.minicluster.version}</version>
238+
<version>${hbase.version}</version>
241239
<scope>test</scope>
242240
</dependency>
243241
<dependency>
244242
<groupId>org.apache.hbase</groupId>
245243
<artifactId>hbase-protocol-shaded</artifactId>
246-
<version>${hbase.minicluster.version}</version>
244+
<version>${hbase.version}</version>
247245
<scope>test</scope>
248246
</dependency>
249247
<dependency>
250248
<groupId>org.apache.hbase</groupId>
251249
<artifactId>hbase-hadoop-compat</artifactId>
252-
<version>${hbase.minicluster.version}</version>
250+
<version>${hbase.version}</version>
253251
<scope>test</scope>
254252
</dependency>
255253
<dependency>
256254
<groupId>org.apache.hbase</groupId>
257255
<artifactId>hbase-asyncfs</artifactId>
258256
<classifier>tests</classifier>
259-
<version>${hbase.minicluster.version}</version>
257+
<version>${hbase.version}</version>
260258
<scope>test</scope>
261259
<exclusions>
262260
<exclusion>
@@ -302,7 +300,7 @@
302300
<dependency>
303301
<groupId>org.apache.hbase</groupId>
304302
<artifactId>hbase-testing-util</artifactId>
305-
<version>${hbase.minicluster.version}</version>
303+
<version>${hbase.version}</version>
306304
<scope>test</scope>
307305
<exclusions>
308306
<exclusion>

contrib/storage-phoenix/src/main/java/org/apache/drill/exec/store/phoenix/PhoenixStoragePlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
import com.google.common.cache.CacheLoader;
4949
import com.google.common.cache.LoadingCache;
5050
import org.apache.hadoop.security.UserGroupInformation;
51-
import org.apache.tephra.shaded.com.google.common.collect.ImmutableSet;
51+
import com.google.common.collect.ImmutableSet;
5252

5353
public class PhoenixStoragePlugin extends AbstractStoragePlugin {
5454

0 commit comments

Comments
 (0)