Skip to content

Commit

Permalink
Spatial Framework for Hadoop release v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
randallwhitman committed Dec 30, 2020
1 parent 28cc6ab commit 9d642d9
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 18 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ to [GIS Tools for Hadoop](https://github.com/Esri/gis-tools-for-hadoop).
## What's New

* ST_Centroid now returns the geometry centroid rather than the center of its envelope (as of v2.1).
* [Spatial Framework for Hadoop v2](https://github.com/Esri/spatial-framework-for-hadoop/releases) is compatible with [Geometry v2](https://github.com/Esri/geometry-api-java/releases), Hive v2.3 & v3, and Jackson v2. Note: up-to-date releases may be available [on Github](https://github.com/Esri/spatial-framework-for-hadoop/releases) but [not on Maven Central](https://github.com/Esri/spatial-framework-for-hadoop/issues/123).
* [Spatial Framework for Hadoop v2](https://github.com/Esri/spatial-framework-for-hadoop/releases) is compatible with [Geometry v2](https://github.com/Esri/geometry-api-java/releases), Hive v2.3 & v3, and Jackson v2. Note: up-to-date releases may be available [on Github](https://github.com/Esri/spatial-framework-for-hadoop/releases) but [may not be on Maven Central](https://github.com/Esri/spatial-framework-for-hadoop/issues/123).

## Features

Expand All @@ -30,7 +30,8 @@ Build as you would any other Mavenized repository. All dependencies are pulled

### Ant

Ant build files are also available
Ant build files are also available,
but are considered legacy, and may likely be removed in a future release.

At the root level of this repository, you can build a single jar with everything in the framework
using [Apache Ant](http://ant.apache.org/). Alternatively, you can build a jar at the root level of each
Expand All @@ -47,7 +48,7 @@ processing.

## Requirements

* Geometry 2.0
* Geometry 2.2
* Hive 0.11 and above (see [Hive Compatibility issues](https://github.com/Esri/spatial-framework-for-hadoop/wiki/ST_Geometry-for-Hive-Compatibility-with-Hive-Versions)) (For building from source, Hive-0.12+ is required.)
* Workflows calling MapReduce jobs require the location of the custom job to be run.
* Custom MapReduce jobs that use the Esri Geometry API require that the developer has authored the job,
Expand Down
6 changes: 3 additions & 3 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<dependency groupId="org.apache.hadoop" artifactId="hadoop-client" version="2.2.0"/>
<dependency groupId="org.apache.hive" artifactId="hive-exec" version="0.12.0"/>
<dependency groupId="org.apache.hive" artifactId="hive-serde" version="0.12.0"/>
<dependency groupId="com.esri.geometry" artifactId="esri-geometry-api" version="2.2.0"/>
<dependency groupId="com.fasterxml.jackson.core" artifactId="jackson-core" version="2.9.6"/>
<dependency groupId="com.fasterxml.jackson.core" artifactId="jackson-databind" version="2.9.6"/>
<dependency groupId="com.esri.geometry" artifactId="esri-geometry-api" version="2.2.4"/>
<dependency groupId="com.fasterxml.jackson.core" artifactId="jackson-core" version="2.10.5"/>
<dependency groupId="com.fasterxml.jackson.core" artifactId="jackson-databind" version="2.10.5"/>
</artifact:dependencies>

<target name="init">
Expand Down
8 changes: 4 additions & 4 deletions hive/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
<property name="dir.build" value="build" />

<artifact:dependencies pathId="dependencies.class.path">
<dependency groupId="org.apache.hadoop" artifactId="hadoop-core" version="0.20.2"/>
<dependency groupId="org.apache.hive" artifactId="hive-exec" version="0.10.0"/>
<dependency groupId="org.apache.hive" artifactId="hive-serde" version="0.10.0"/>
<dependency groupId="com.esri.geometry" artifactId="esri-geometry-api" version="1.1"/>
<dependency groupId="org.apache.hadoop" artifactId="hadoop-core" version="2.2.0"/>
<dependency groupId="org.apache.hive" artifactId="hive-exec" version="0.12.0"/>
<dependency groupId="org.apache.hive" artifactId="hive-serde" version="0.12.0"/>
<dependency groupId="com.esri.geometry" artifactId="esri-geometry-api" version="2.2.4"/>
</artifact:dependencies>

<target name="init">
Expand Down
2 changes: 1 addition & 1 deletion hive/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.esri.hadoop</groupId>
<artifactId>spatial-sdk-hadoop</artifactId>
<version>2.1.1-SNAPSHOT</version>
<version>2.2.0</version>
<relativePath>../</relativePath>
</parent>

Expand Down
9 changes: 4 additions & 5 deletions json/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@
<property name="dir.build" value="build" />

<artifact:dependencies pathId="dependencies.class.path">
<dependency groupId="org.apache.hadoop" artifactId="hadoop-core" version="0.20.2"/>
<dependency groupId="org.apache.hive" artifactId="hive-exec" version="0.10.0"/>
<dependency groupId="org.apache.hive" artifactId="hive-serde" version="0.10.0"/>
<dependency groupId="org.apache.hive" artifactId="hive-pdk" version="0.10.0"/>
<dependency groupId="com.esri.geometry" artifactId="esri-geometry-api" version="1.1"/>
<dependency groupId="org.apache.hadoop" artifactId="hadoop-core" version="2.2.0"/>
<dependency groupId="org.apache.hive" artifactId="hive-exec" version="0.12.0"/>
<dependency groupId="org.apache.hive" artifactId="hive-serde" version="0.12.0"/>
<dependency groupId="com.esri.geometry" artifactId="esri-geometry-api" version="2.2.4"/>
</artifact:dependencies>


Expand Down
2 changes: 1 addition & 1 deletion json/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.esri.hadoop</groupId>
<artifactId>spatial-sdk-hadoop</artifactId>
<version>2.1.1-SNAPSHOT</version>
<version>2.2.0</version>
<relativePath>../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>com.esri.hadoop</groupId>
<artifactId>spatial-sdk-hadoop</artifactId>
<version>2.1.1-SNAPSHOT</version>
<version>2.2.0</version>
<packaging>pom</packaging>

<name>Spatial Framework for Hadoop</name>
Expand Down

0 comments on commit 9d642d9

Please sign in to comment.