Esri / gis-tools-for-hadoop

The GIS Tools for Hadoop are a collection of GIS tools for spatial analysis of big data.
http://esri.github.io/gis-tools-for-hadoop/
Apache License 2.0
521 stars 254 forks source link

esri hive JSON serde not found #65

Closed geoHeil closed 6 years ago

geoHeil commented 6 years ago

Following along in spark at https://github.com/geoHeil/spatial-heatmaps/tree/master/esri the JSON serde is not found ClassNotFoundException: Class com.esri.hadoop.hive.serde.JsonSerde not found even though:

"com.esri.hadoop" % "spatial-sdk-hive" % esriVersion,
 "com.esri.hadoop" % "spatial-sdk-json" % esriVersion,

i.e. the current master branch (2.1.0-SNAPSHOT) are on the class path. Am I missing a dependency? The base JSON Serde would be available but is not called.

randallwhitman commented 6 years ago

With Spatial Framework for Hadoop v2, use EsriJsonSerDe rather than the obsolete old name JsonSerde.

geoHeil commented 6 years ago

Thanks.