Skip to content

Commit

Permalink
Setup Profiles and raised hadoop-cli dependency to address S3A Protoc…
Browse files Browse the repository at this point in the history
…ols.
  • Loading branch information
dstreev committed Jun 12, 2023
1 parent 937969a commit 4989b36
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 3 deletions.
26 changes: 23 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<groupId>com.cloudera.utils.hive</groupId>
<artifactId>hive-sre</artifactId>
<version>2.5.1.0</version>
<version>2.5.1.1</version>

<name>hive-sre</name>

Expand Down Expand Up @@ -61,11 +61,10 @@
<junit.version>4.13.2</junit.version>

<hadoop.version>3.1.1</hadoop.version>
<cdp.version>7.1.7.1000-141</cdp.version>

<gateway-shell.version>1.0.0</gateway-shell.version>

<hadoop-cli.version>2.4.3.0</hadoop-cli.version>
<hadoop-cli.version>2.4.3.3</hadoop-cli.version>

</properties>

Expand Down Expand Up @@ -148,6 +147,27 @@
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>pvc</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<cdp.version>7.1.8.8-3</cdp.version>
</properties>
</profile>
<profile>
<id>cloud</id>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<cdp.version>7.2.16.0-287</cdp.version>
</properties>
</profile>
</profiles>

<build>
<finalName>${project.artifactId}</finalName>
Expand Down
2 changes: 2 additions & 0 deletions src/main/hive/reports/table_volume.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
-- noinspection SqlCurrentSchemaInspectionForFile

-- This script is used against the `hive-sre sre -i 4` output report (table_volume.md).
-- Create a directory in HDFS to store the report. Note this directory as the "LOCATION" variable below.
-- Run this script to build a table in Hive on top of the report.
Expand Down

0 comments on commit 4989b36

Please sign in to comment.