Randall Whitman

Results 124 comments of Randall Whitman

The version of earthquakes.csv with header row, contains the following header: ``` datetime,latitude,longitude,depth,magnitude,magtype,nbstations,gap,distance,rms,source,eventid ```

The DDL (in the README and in `run-sample.sql`) matches a column-subset variant of the data that we also had. The mismatch can be resolved either by updating the DDL in...

Esri/spatial-framework-for-hadoop#162

Currently the {Esri,Geo}JsonSerDe supports only primitive field types. The Spatial-framework-for-Hadoop is open-source and [contributions are welcome](https://github.com/Esri/spatial-framework-for-hadoop/blob/master/CONTRIBUTING.md). The code change would start with [BaseJsonSerDe.initialize](https://github.com/Esri/spatial-framework-for-hadoop/blob/master/hive/src/main/java/com/esri/hadoop/hive/serde/BaseJsonSerDe.java#L99) and [BaseJsonSerDe.generateJsonFromValue](https://github.com/Esri/spatial-framework-for-hadoop/blob/master/hive/src/main/java/com/esri/hadoop/hive/serde/BaseJsonSerDe.java#L303) and [BaseJsonSerDe.setRowFieldFromParser](https://github.com/Esri/spatial-framework-for-hadoop/blob/master/hive/src/main/java/com/esri/hadoop/hive/serde/BaseJsonSerDe.java#L403).

Grouping the functions by similarities such as method signature makes a lot of sense. We nominally grouped the ST_Geometry for Hive functions into ST_GeometryAccessor, ST_GeometryProcessing, and ST_GeometryRelational; but did not...

Hi @trumboosahil - what version of Hadoop are you running? Maybe something has changed in the argument-handling API, such that the generic options are not extracted before the call to...

Interesting, thanks for the info. For reference, this is the argument dump I see on our Hadoop-2.2 cluster: ``` Arguments to TripCellDriver: 0 * 15 1 * 1000 2 *...

Do you happen to have easy access to either 2.2 or 2.4 version of Hadoop, for comparison? While it is possible for 2.3 to differ from both 2.2 and 2.4,...

Idea for workaround: ``` java int argc = args.length; if (argc > 5 && "TripCellDriver".equals(args[0])) { int offset = argc-5; for (int ix=0; ix