<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: How to schedule an Oozie job to run at 8PM EDT? in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-schedule-an-Oozie-job-to-run-at-8PM-EDT/m-p/95279#M8606</link>
    <description>&lt;P&gt;This is not working gives paramter frequency must be an integer Parsing error for input string "0 20 * * 2-6"&lt;/P&gt;</description>
    <pubDate>Tue, 25 Jul 2017 21:43:00 GMT</pubDate>
    <dc:creator>vinayaknarune</dc:creator>
    <dc:date>2017-07-25T21:43:00Z</dc:date>
    <item>
      <title>How to schedule an Oozie job to run at 8PM EDT?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-schedule-an-Oozie-job-to-run-at-8PM-EDT/m-p/95276#M8603</link>
      <description />
      <pubDate>Tue, 13 Oct 2015 00:14:41 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-schedule-an-Oozie-job-to-run-at-8PM-EDT/m-p/95276#M8603</guid>
      <dc:creator>cspencer</dc:creator>
      <dc:date>2015-10-13T00:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to schedule an Oozie job to run at 8PM EDT?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-schedule-an-Oozie-job-to-run-at-8PM-EDT/m-p/95277#M8604</link>
      <description>&lt;P&gt;Look at the Oozie coordinator &lt;A href="https://oozie.apache.org/docs/3.1.3-incubating/CoordinatorFunctionalSpec.html#a4._Datetime_Frequency_and_Time-Period_Representation"&gt;documentation&lt;/A&gt;, the timezone value will be "America/New_York" and start would be something like "2015-10-12T08:00Z". Alternatively you can do a cron like thing, see the example in the following &lt;A href="http://hortonworks.com/blog/new-in-hdp-2-more-powerful-scheduling-options-in-oozie/"&gt;blog&lt;/A&gt;. Based on that it can be something like:&lt;/P&gt;&lt;PRE&gt;&amp;lt;coordinator-app name="weekdays-at-eight-pm"
  frequency="0 20 * * 2-6"
  start="${start}" end="${end}" timezone="America/New_York"
  xmlns="uri:oozie:coordinator:0.2"&amp;gt;
...
&amp;lt;/coordinator-app&amp;gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 13 Oct 2015 00:42:23 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-schedule-an-Oozie-job-to-run-at-8PM-EDT/m-p/95277#M8604</guid>
      <dc:creator>deepesh1</dc:creator>
      <dc:date>2015-10-13T00:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to schedule an Oozie job to run at 8PM EDT?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-schedule-an-Oozie-job-to-run-at-8PM-EDT/m-p/95278#M8605</link>
      <description>&lt;P&gt;Will this be a problem when DayLightSaving change takes place from EDT TO EST.&lt;/P&gt;&lt;P&gt;Also I tried your solution, and the coordinator actions are being generated at 8 PM UTC timezone not 8 PM EDT.&lt;/P&gt;&lt;P&gt;From what I read in other blogs, Do I need to change my oozie.processing.timezone to EDT to make the above thing work?&lt;/P&gt;</description>
      <pubDate>Mon, 19 Dec 2016 22:13:25 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-schedule-an-Oozie-job-to-run-at-8PM-EDT/m-p/95278#M8605</guid>
      <dc:creator>faizan_khan_007</dc:creator>
      <dc:date>2016-12-19T22:13:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to schedule an Oozie job to run at 8PM EDT?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-schedule-an-Oozie-job-to-run-at-8PM-EDT/m-p/95279#M8606</link>
      <description>&lt;P&gt;This is not working gives paramter frequency must be an integer Parsing error for input string "0 20 * * 2-6"&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jul 2017 21:43:00 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-schedule-an-Oozie-job-to-run-at-8PM-EDT/m-p/95279#M8606</guid>
      <dc:creator>vinayaknarune</dc:creator>
      <dc:date>2017-07-25T21:43:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to schedule an Oozie job to run at 8PM EDT?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-schedule-an-Oozie-job-to-run-at-8PM-EDT/m-p/95280#M8607</link>
      <description>&lt;P&gt;I had the same issue, because I put the frequency in the dataset as a cron, we can't actually do that. &lt;/P&gt;&lt;P&gt;Here is my example : &lt;/P&gt;&lt;PRE&gt;&amp;lt;coordinator-app name="weekdays-at-two-am"
frequency="0 2 * * 2-6"
start="${start} "
end="${end}"
timezone="Europe/Paris"
xmlns="uri:oozie:coordinator:0.4"&amp;gt;
&amp;lt;datasets&amp;gt;
	&amp;lt;dataset name="my_dataset_name"
	 	frequency="${coord:days(1)}"
	 	initial-instance="2017-12-28T02:00+0100"
	 	timezone="Europe/Paris"&amp;gt;
		&amp;lt;uri-template&amp;gt;${my_path}/${YEAR}${MONTH}${DAY}&amp;lt;/uri-template&amp;gt;
		&amp;lt;done-flag&amp;gt;my_flag&amp;lt;/done-flag&amp;gt;
	&amp;lt;/dataset&amp;gt;
&amp;lt;/datasets&amp;gt;
&amp;lt;input-events&amp;gt;
    &amp;lt;data-in name="log_input_name" dataset="my_dataset_name"&amp;gt;
        &amp;lt;instance&amp;gt;${coord:current(0)}&amp;lt;/instance&amp;gt;
    &amp;lt;/data-in&amp;gt;
&amp;lt;/input-events&amp;gt;
&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;my coordinator is lunched with the cron at first (line 2), but it verifies the second condition which looking every day (line9) for the flag of the current day (line 18) &lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Nov 2018 22:03:03 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-schedule-an-Oozie-job-to-run-at-8PM-EDT/m-p/95280#M8607</guid>
      <dc:creator>s_mosleh</dc:creator>
      <dc:date>2018-11-29T22:03:03Z</dc:date>
    </item>
  </channel>
</rss>

