Details
Description
Setting oozie.processing.timezone to use "GMT-XXXX" instead of "GMT+XXX" doesn't work with Hue. Hue always replaces the "-" with a "+" and then submission to Oozie fails for coordinator. The error is:
E1003: Invalid coordinator application attributes, parameter [start] = [2017-05-15T12:45+0400] must be Date in GMT-04:00 format (yyyy-MM-dd'T'HH:mm-0400). Parsing error java.text.ParseException: Could not parse [2017-05-15T12:45+0400] using [yyyy-MM-dd'T'HH:mm-0400] mask
This is because Hue replaced - with + and Oozie expects -.
Just go to coordinator page and submit "My Coordinator". If you add:
oozie.processing.timezone = GMT-0400
To your ooze-site.xml safety valve in CM, restart oozie, that's how you reproduce.