Skip to content

Commit 4609bf1

Browse files
committed
[HOPSWORKS-683] Inode from 2.8.2.6 is long
1 parent 398f4bd commit 4609bf1

File tree

51 files changed

+1131
-79
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+1131
-79
lines changed

accumulo-handler/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>io.hops.hive</groupId>
2121
<artifactId>hive</artifactId>
22-
<version>2.3.0</version>
22+
<version>2.3.0.1</version>
2323
<relativePath>../pom.xml</relativePath>
2424
</parent>
2525

beeline/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>io.hops.hive</groupId>
2121
<artifactId>hive</artifactId>
22-
<version>2.3.0</version>
22+
<version>2.3.0.1</version>
2323
<relativePath>../pom.xml</relativePath>
2424
</parent>
2525

cli/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>io.hops.hive</groupId>
2121
<artifactId>hive</artifactId>
22-
<version>2.3.0</version>
22+
<version>2.3.0.1</version>
2323
<relativePath>../pom.xml</relativePath>
2424
</parent>
2525

common/pom.xml

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>io.hops.hive</groupId>
2121
<artifactId>hive</artifactId>
22-
<version>2.3.0</version>
22+
<version>2.3.0.1</version>
2323
<relativePath>../pom.xml</relativePath>
2424
</parent>
2525

@@ -42,7 +42,7 @@
4242
<dependency>
4343
<groupId>org.apache.hive</groupId>
4444
<artifactId>hive-storage-api</artifactId>
45-
<version>${project.version}</version>
45+
<version>${storage-api.version}</version>
4646
</dependency>
4747
<!-- inter-project -->
4848
<dependency>
@@ -240,7 +240,7 @@
240240
</exclusion>
241241
</exclusions>
242242
</dependency>
243-
<dependency>
243+
<dependency>
244244
<groupId>io.hops</groupId>
245245
<artifactId>hadoop-mapreduce-client-core</artifactId>
246246
<version>${hadoop.version}</version>
@@ -262,6 +262,33 @@
262262
<artifactId>commons-logging</artifactId>
263263
</exclusion>
264264
</exclusions>
265+
</dependency>
266+
<dependency>
267+
<groupId>io.hops</groupId>
268+
<artifactId>hadoop-auth</artifactId>
269+
<version>${hadoop.version}</version>
270+
<exclusions>
271+
<exclusion>
272+
<groupId>io.hops</groupId>
273+
<artifactId>hadoop-annotations</artifactId>
274+
</exclusion>
275+
<exclusion>
276+
<groupId>javax.servlet</groupId>
277+
<artifactId>servlet-api</artifactId>
278+
</exclusion>
279+
<exclusion>
280+
<groupId>org.mortbay.jetty</groupId>
281+
<artifactId>jetty-util</artifactId>
282+
</exclusion>
283+
<exclusion>
284+
<groupId>org.slf4j</groupId>
285+
<artifactId>slf4j-log4j12</artifactId>
286+
</exclusion>
287+
<exclusion>
288+
<groupId>commmons-logging</groupId>
289+
<artifactId>commons-logging</artifactId>
290+
</exclusion>
291+
</exclusions>
265292
</dependency>
266293
<!-- test inter-project -->
267294
<dependency>

common/src/java/org/apache/hadoop/hive/conf/HiveConf.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,7 @@ public static enum ConfVars {
605605
"For example, jdbc:mysql://myhost/hops?ssl=true for postgres database."),
606606
HOPSROOTDIRPARTITIONKEY("hops.root.dir.partition_key", 0, "Partition Key of root inode"),
607607
HOPSROOTDIRDEPTH("hops.root.dir.depth", 0, "Root dir depth"),
608-
HOPSROOTINODEID("hops.root.inode.id", 1, "Id of the root inode"),
608+
HOPSROOTINODEID("hops.root.inode.id", 1L, "Id of the root inode"),
609609
HOPSRANDOMPARTITIONINGMAXLEVEL("hops.random.partitioning.level", 1, "Number of levels of random partitioning"),
610610
METADATACONSISTENCY("hops.metadata.consistent", true, "enable hops metadata consistency. This option is meant to be disabled for" +
611611
"testing purposes"),

contrib/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>io.hops.hive</groupId>
2121
<artifactId>hive</artifactId>
22-
<version>2.3.0</version>
22+
<version>2.3.0.1</version>
2323
<relativePath>../pom.xml</relativePath>
2424
</parent>
2525

druid-handler/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>io.hops.hive</groupId>
2121
<artifactId>hive</artifactId>
22-
<version>2.3.0</version>
22+
<version>2.3.0.1</version>
2323
<relativePath>../pom.xml</relativePath>
2424
</parent>
2525

hbase-handler/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>io.hops.hive</groupId>
2121
<artifactId>hive</artifactId>
22-
<version>2.3.0</version>
22+
<version>2.3.0.1</version>
2323
<relativePath>../pom.xml</relativePath>
2424
</parent>
2525

hbase-handler/src/test/org/apache/hadoop/hive/hbase/TestHBaseSerDe.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1254,7 +1254,11 @@ public void testHBaseSerDeWithAvroSchemaUrl() throws SerDeException, IOException
12541254

12551255
try {
12561256
// MiniDFSCluster litters files and folders all over the place.
1257-
miniDfs = new MiniDFSCluster(new Configuration(), 1, true, null);
1257+
miniDfs = new MiniDFSCluster.Builder(new Configuration())
1258+
.numDataNodes(1)
1259+
.format(true)
1260+
.racks(null)
1261+
.build();
12581262

12591263
miniDfs.getFileSystem().mkdirs(new Path("/path/to/schema"));
12601264
FSDataOutputStream out = miniDfs.getFileSystem().create(

hcatalog/core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<parent>
2626
<groupId>io.hops.hive.hcatalog</groupId>
2727
<artifactId>hive-hcatalog</artifactId>
28-
<version>2.3.0</version>
28+
<version>2.3.0.1</version>
2929
<relativePath>../pom.xml</relativePath>
3030
</parent>
3131

0 commit comments

Comments
 (0)