<?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: Helping setting up cron-based nifi processor in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/357938#M237709</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/46123"&gt;@zack_riesland&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;can you provide corn expression for this timing 12:00PM and 11:40AM&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 18 Nov 2022 11:24:58 GMT</pubDate>
    <dc:creator>hargav</dc:creator>
    <dc:date>2022-11-18T11:24:58Z</dc:date>
    <item>
      <title>Helping setting up cron-based nifi processor</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/150284#M112794</link>
      <description>&lt;P&gt;I'm trying to setup a nifi processor to run once daily, using the 'cron' option under scheduling.&lt;/P&gt;&lt;P&gt;Under "run schedule", I put "01 18 * * * ?" , which should be 6:01pm (I couldn't get nifi to accept it without the question mark).&lt;/P&gt;&lt;P&gt;But this causes the scheduler to run on the hour, every hour.&lt;/P&gt;&lt;P&gt;Can someone please help me with my syntax here?&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2016 16:17:17 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/150284#M112794</guid>
      <dc:creator>zack_riesland</dc:creator>
      <dc:date>2016-10-26T16:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: Helping setting up cron-based nifi processor</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/150285#M112795</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/2593/zackriesland.html" nodeid="2593"&gt;@Zack Riesland&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The Cron you have there should run 18 minutes and 1 second into every hour.&lt;/P&gt;&lt;P&gt;What you really are looking for as a cron here for 6:01pm is ( 0 1 18 * * ? * or 0 1 18 * * ? )&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;CRON driven&lt;/STRONG&gt;: When using the CRON driven scheduling mode, the Processor is scheduled to run periodically, similar to the
Timer driven scheduling mode. However, the CRON driven mode provides significantly more flexibility at the expense of
increasing the complexity of the configuration. This value is made up of seven fields (where the seventh field is optional), each separated by a space. These
fields include:
&lt;UL&gt;
&lt;LI&gt;Seconds&lt;/LI&gt;&lt;LI&gt;Minutes&lt;/LI&gt;&lt;LI&gt;Hours&lt;/LI&gt;&lt;LI&gt;Day of Month&lt;/LI&gt;&lt;LI&gt;Month&lt;/LI&gt;&lt;LI&gt;Day of Week&lt;/LI&gt;&lt;LI&gt;Year&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;The value for each of these fields should be a number, range, or 
increment.
Range here refers to a syntax of &amp;lt;number&amp;gt;-&amp;lt;number&amp;gt;.
For example,the Seconds field could be set to 0-30, meaning that the 
Processor should only be scheduled if the time is 0 to 30 seconds
after the minute. Additionally, a value of &lt;CODE&gt;*&lt;/CODE&gt; indicates that all values are valid for this field. Multiple values can also
be entered using a &lt;CODE&gt;,&lt;/CODE&gt; as a separator: &lt;CODE&gt;0,5,10,15,30&lt;/CODE&gt;.
An increment is written as &amp;lt;start value&amp;gt;/&amp;lt;increment&amp;gt;. For example, settings a value of &lt;CODE&gt;0/10&lt;/CODE&gt; for the seconds fields means that valid
values are 0, 10, 20, 30, 40, and 50. However, if we change this to &lt;CODE&gt;5/10&lt;/CODE&gt;, valid values become 5, 15, 25, 35, 45, and 55.&lt;/P&gt;&lt;P&gt;For the Month field, valid values are 1 (January) through 12 (December).&lt;/P&gt;&lt;P&gt;For the Day of Week field, valid values are 1 (Sunday) through 7 (Saturday). Additionally, a value of &lt;CODE&gt;L&lt;/CODE&gt; may be appended to one of these
values to indicate the last occurrence of this day in the month. For example, &lt;CODE&gt;1L&lt;/CODE&gt; can be used to indicate the last Monday of the month.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2016 19:18:55 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/150285#M112795</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2016-10-26T19:18:55Z</dc:date>
    </item>
    <item>
      <title>Re: Helping setting up cron-based nifi processor</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/150286#M112796</link>
      <description>&lt;P&gt;NiFi does not use a linux cron.  It uses a Quartz cron/scheduler.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2016 19:22:23 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/150286#M112796</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2016-10-26T19:22:23Z</dc:date>
    </item>
    <item>
      <title>Re: Helping setting up cron-based nifi processor</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/150287#M112797</link>
      <description>&lt;P&gt;Thanks Matt,&lt;/P&gt;&lt;P&gt;So so would "0 0 18 * * ?" indicate that the job should be run 18 hours into every day?&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2016 19:36:46 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/150287#M112797</guid>
      <dc:creator>zack_riesland</dc:creator>
      <dc:date>2016-10-26T19:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: Helping setting up cron-based nifi processor</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/150288#M112798</link>
      <description>&lt;P&gt;The Quartz scheduler has 7 fields, so the cron would need to be 0 0 18 * * ? *.  The seventh field is optional for year.  Yes the cron you have there will run the 18th hour of every day.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2016 19:59:44 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/150288#M112798</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2016-10-26T19:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: Helping setting up cron-based nifi processor</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/150289#M112799</link>
      <description>&lt;P&gt;When I enter "0 0 18 * * * ?", I get this error message:
"Scheduling Period '0 0 18 * * * ?' is not a valid cron expression: '?' can only be specified for Day-of-Month or Day-of-Week"&lt;/P&gt;&lt;P&gt;However, "0 0 18 * * ? *" seems to work. &lt;/P&gt;&lt;P&gt;What is the difference between the meaning of "*" and "?" ?&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2016 22:42:28 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/150289#M112799</guid>
      <dc:creator>zack_riesland</dc:creator>
      <dc:date>2016-10-26T22:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: Helping setting up cron-based nifi processor</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/150290#M112800</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/2593/zackriesland.html" nodeid="2593"&gt;@Zack Riesland&lt;/A&gt; &lt;/P&gt;&lt;P&gt;There are seven fields; however, the seventh field is optional. So you are correct.&lt;/P&gt;&lt;P&gt;so both " 0 0 18 * * ? " and " 0 0 18 * * ? * " are valid.&lt;/P&gt;&lt;P&gt;The below is from &lt;A href="http://www.quartz-scheduler.org/documentation/quartz-2.x/tutorials/crontrigger.html"&gt;http://www.quartz-scheduler.org/documentation/quartz-2.x/tutorials/crontrigger.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;----------------&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;*&lt;/STRONG&gt; (&lt;EM&gt;“all values”&lt;/EM&gt;) - used to select all values within a field. For example, “&lt;EM&gt;” in the minute field means *“every minute”&lt;/EM&gt;.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;?&lt;/STRONG&gt; (&lt;EM&gt;“no specific value”&lt;/EM&gt;) - useful when you need to specify something in one of the two fields in which the character is allowed, but not the other. For example, if I want my trigger to fire on a particular day of the month (say, the 10th), but don’t care what day of the week that happens to be, I would put “10” in the day-of-month field, and “?” in the day-of-week field. See the examples below for clarification.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;-----------------&lt;/P&gt;&lt;P&gt;so only fields 4 and 6 will accept ?.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;</description>
      <pubDate>Thu, 27 Oct 2016 00:46:39 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/150290#M112800</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2016-10-27T00:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Helping setting up cron-based nifi processor</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/150291#M112801</link>
      <description>&lt;P&gt;Hey &lt;A rel="user" href="https://community.cloudera.com/users/525/mclark.html" nodeid="525"&gt;@Matt&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;I am using a cron job scheduling strategy too and my cron job is "0 30 13 * * ?" similar to what is discussed here. But, for some reason, it just runs for the day I create it and doesn't repeat the next day. Do you know the reason why? I keep NiFi running and don't think it's shutting down for the cron job to not execute. Any help appreciated.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Dec 2016 04:56:39 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/150291#M112801</guid>
      <dc:creator>raghav130593</dc:creator>
      <dc:date>2016-12-20T04:56:39Z</dc:date>
    </item>
    <item>
      <title>Re: Helping setting up cron-based nifi processor</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/150292#M112802</link>
      <description>&lt;P&gt;Below is the syntax I have tried with &lt;STRONG&gt;0 30 0 * * ? &lt;/STRONG&gt;or&lt;STRONG&gt; &lt;/STRONG&gt;&lt;STRONG&gt;0 30 1 * * ?&lt;/STRONG&gt;, which should run at 12:30 or 1:30 midnight respectively. &lt;/P&gt;&lt;P&gt;Also I have tired running the flow with cron in nifi for every 20 minutes duration, it worked perfectly.&lt;/P&gt;&lt;P&gt;But we want it to be run, daily once at particular time as mentioned above example (&lt;STRONG&gt;0 30 0 * * ? &lt;/STRONG&gt;or &lt;STRONG&gt;0 30 1 * * ?).&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;But it is not working. can anyone please guide.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2017 19:53:49 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/150292#M112802</guid>
      <dc:creator>has_sha786</dc:creator>
      <dc:date>2017-02-27T19:53:49Z</dc:date>
    </item>
    <item>
      <title>Re: Helping setting up cron-based nifi processor</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/150293#M112803</link>
      <description>&lt;P&gt;Superb. Thanks for this great information. the 7 fields is something that I wasn't aware of . drilling down at a second level is great ! &lt;A rel="user" href="https://community.cloudera.com/users/525/mclarke.html" nodeid="525"&gt;@Matt Clarke&lt;/A&gt; great answer &lt;/P&gt;</description>
      <pubDate>Wed, 28 Mar 2018 05:37:18 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/150293#M112803</guid>
      <dc:creator>abhinav_joshi</dc:creator>
      <dc:date>2018-03-28T05:37:18Z</dc:date>
    </item>
    <item>
      <title>Re: Helping setting up cron-based nifi processor</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/335416#M231943</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/58335"&gt;@raghav130593&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Where "*" indicates every value, the "?" can mean i don't care about the value.&lt;BR /&gt;&lt;BR /&gt;So you want to have corn execute at 17:30:00 every day, So i would recommend a "*" instead of "?" in the day of week field.&lt;BR /&gt;&lt;BR /&gt;A good example of when to use a ? in a supporting field would be this cron:&lt;BR /&gt;0 30 17 5 * ?&lt;BR /&gt;The above says execute at 17:30:00 on the 5th of every month.&amp;nbsp; The day of week field here is a "?" mark because the 5th of every month could fall on any one of the days of the week (will vary from month to month).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;</description>
      <pubDate>Tue, 01 Feb 2022 17:52:38 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/335416#M231943</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2022-02-01T17:52:38Z</dc:date>
    </item>
    <item>
      <title>Re: Helping setting up cron-based nifi processor</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/357937#M237708</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/39733"&gt;@has_sha786&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;even i was facing same issue ,i was setted to run my processor at 12:00pm(&lt;SPAN&gt;0 0 12 * * ?&lt;/SPAN&gt;) and another one is 11:45am(&lt;SPAN&gt;0 45 11 * * ?&lt;/SPAN&gt;) but it's not working&amp;nbsp;&lt;/P&gt;&lt;P&gt;if u have any suggestions please reply me&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Nov 2022 11:22:05 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/357937#M237708</guid>
      <dc:creator>hargav</dc:creator>
      <dc:date>2022-11-18T11:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: Helping setting up cron-based nifi processor</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/357938#M237709</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/46123"&gt;@zack_riesland&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;can you provide corn expression for this timing 12:00PM and 11:40AM&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Nov 2022 11:24:58 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/357938#M237709</guid>
      <dc:creator>hargav</dc:creator>
      <dc:date>2022-11-18T11:24:58Z</dc:date>
    </item>
    <item>
      <title>Re: Helping setting up cron-based nifi processor</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/358193#M237763</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/46123"&gt;@zack_riesland&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Yes, "0 0 18 * * ?" means schedule to run at 0 secs, 0 mins, 18 hour, every day, every month, any day of week"&lt;BR /&gt;&lt;BR /&gt;What's important to understand is the quartz cron is used to schedule the processor to execute.&amp;nbsp; In order for the processor to execute at exactly 18:00:00, NiFi must have an available thread in the NiFi timer driven thread pool in order to execute.&amp;nbsp; If a thread is not available, the processors code will execute as soon as a thread become available.&amp;nbsp; Since it has been "scheduled" it will run as soon as thread becomes available and then will get scheduled again the next day at 18:00:00.&lt;BR /&gt;&lt;BR /&gt;Matt&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2022 21:01:51 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/358193#M237763</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2022-11-22T21:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: Helping setting up cron-based nifi processor</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/358194#M237764</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/101880"&gt;@hargav&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;It is not possible to create single Quartz cron that will schedule at 12:00:00 PM and 11:40:00 AM each day.&lt;BR /&gt;&lt;BR /&gt;However, the following would execute at 11:40:00AM and 12:40:00PM every day&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;0 40 11,12 * * ?&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;BR /&gt;and following would execute at 11:00:00AM, 11:40:00AM, 12:00:00PM, and 12:40:00PM&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;0 0,40 11,12 * * ?&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;or&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;0 0/40 11,12 * * ?&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;Hope this helps you,&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2022 21:10:19 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/358194#M237764</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2022-11-22T21:10:19Z</dc:date>
    </item>
    <item>
      <title>Re: Helping setting up cron-based nifi processor</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/358200#M237768</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/35454"&gt;@MattWho&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want corn driven expression for 11:40 am separate and I want corn driven expression for 12:00pm separate&lt;/P&gt;&lt;P&gt;Please send those expressions&lt;/P&gt;</description>
      <pubDate>Wed, 23 Nov 2022 05:59:24 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/358200#M237768</guid>
      <dc:creator>hargav</dc:creator>
      <dc:date>2022-11-23T05:59:24Z</dc:date>
    </item>
    <item>
      <title>Re: Helping setting up cron-based nifi processor</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/358508#M237864</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/101880"&gt;@hargav&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;NiFi processor scheduled every day at 11:40AM:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;0 40 11 * * ? *&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;NiFi processor Scheduled every day at 12:00PM:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;0 0 12 * * ? *&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="batang,apple gothic"&gt;If you found that the provided solution(s) assisted you with your query, please take a moment to login and click&lt;/FONT&gt;&amp;nbsp;&lt;FONT face="arial black,avant garde" color="#FF0000"&gt;Accept as Solution&amp;nbsp;&lt;/FONT&gt;&lt;FONT face="batang,apple gothic" color="#000000"&gt;below each response that helped.&lt;BR /&gt;&lt;BR /&gt;Thank you,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="batang,apple gothic" color="#000000"&gt;Matt&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Nov 2022 20:25:55 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/358508#M237864</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2022-11-28T20:25:55Z</dc:date>
    </item>
    <item>
      <title>Re: Helping setting up cron-based nifi processor</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/358603#M237892</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/35454"&gt;@MattWho&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was used below corn expression for merge record but the data&amp;nbsp; was not went to the queue in nifi platform ,We need to change any configuration in merge record ?&lt;/P&gt;&lt;P&gt;please suggest me any solution&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;0 40 11 * * ? *&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 05:42:05 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/358603#M237892</guid>
      <dc:creator>hargav</dc:creator>
      <dc:date>2022-11-30T05:42:05Z</dc:date>
    </item>
    <item>
      <title>Re: Helping setting up cron-based nifi processor</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/358902#M237969</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/101880"&gt;@hargav&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please create a new community question for your queries around MergeRecord processor.&amp;nbsp; This is the best way to get attention and best for community to have a separate thread for each specific query.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I am not clear on your use case for using "cron driven" scheduling with the MergeRecord.&amp;nbsp; This would not be a common thing to do. Best to explain your use case in a new community thread along with sharing your MergeRecord processor configuration.&amp;nbsp; Feel free to&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/35454"&gt;@MattWho&lt;/a&gt;&amp;nbsp;in the new community post to notify me.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2022 16:41:51 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Helping-setting-up-cron-based-nifi-processor/m-p/358902#M237969</guid>
      <dc:creator>MattWho</dc:creator>
      <dc:date>2022-12-05T16:41:51Z</dc:date>
    </item>
  </channel>
</rss>

