<?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>topic Re: Limits with hourly Notebook scheduling and maximum number of scheduled tasks in ArcGIS Notebooks Questions</title>
    <link>https://community.esri.com/t5/arcgis-notebooks-questions/limits-with-hourly-notebook-scheduling-and-maximum/m-p/1686578#M1011</link>
    <description>&lt;P&gt;Great idea, Jay - thanks! I ended up adding this code in a cell at the beginning of the notebook, seems to be working well!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;# Get current time in US Central timezone
central_time = datetime.now(ZoneInfo("America/Chicago"))
current_hour = central_time.hour
print("Central hour:", current_hour)

allowed_hours = {5, 6, 7, 8, 9, 16, 17, 18, 19, 20}

if current_hour not in allowed_hours:
    print("Not a scheduled hour, skipping execution")
    raise SystemExit()&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 25 Feb 2026 15:02:30 GMT</pubDate>
    <dc:creator>Katie_Clark</dc:creator>
    <dc:date>2026-02-25T15:02:30Z</dc:date>
    <item>
      <title>Limits with hourly Notebook scheduling and maximum number of scheduled tasks</title>
      <link>https://community.esri.com/t5/arcgis-notebooks-questions/limits-with-hourly-notebook-scheduling-and-maximum/m-p/1685973#M1008</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Per this &lt;A href="https://community.esri.com/t5/arcgis-notebooks-questions/announcement-increase-in-of-active-scheduled-tasks/td-p/1591810#" target="_blank" rel="noopener"&gt;post&lt;/A&gt; from March 2025, users in ArcGIS Online can have up to 10 scheduled tasks for Notebooks.&lt;BR /&gt;&lt;BR /&gt;I manage several data ETL workflows for an organization that rely heavily on Notebooks for automation. For one of our Notebooks, we had to modify it to run at specific hours instead of "hourly" due to some quirks with the data API. Specifically, we now have it triggered to run in the mornings at 5am, 6, 7, 8, and 9am, and in the evenings at 4pm, 5, 6, 7, and 8pm. So, that reaches the limit of 10 scheduled tasks (Repeat Type = "Day" at the specified time).&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I now have another ETL notebook that I want to schedule and I'm unable to because I've reached the limit. I guess my main question of this post is....&lt;STRONG&gt;Is there a better way to go about scheduling at specific hours like this?&amp;nbsp;&lt;/STRONG&gt;It would be ideal to only have one scheduled task where I could specify the times of day to run, similar to how you can specify days of the week when you schedule an hourly task.&lt;BR /&gt;&lt;BR /&gt;Any other suggestions or workarounds? Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 23 Feb 2026 18:13:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-notebooks-questions/limits-with-hourly-notebook-scheduling-and-maximum/m-p/1685973#M1008</guid>
      <dc:creator>Katie_Clark</dc:creator>
      <dc:date>2026-02-23T18:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: Limits with hourly Notebook scheduling and maximum number of scheduled tasks</title>
      <link>https://community.esri.com/t5/arcgis-notebooks-questions/limits-with-hourly-notebook-scheduling-and-maximum/m-p/1685986#M1009</link>
      <description>&lt;P&gt;if you can't actually have it run every hour, you could put some code at the beginning of the script to check the time and if its within one of your allocated hours run the rest of the script and if its not, exit.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Feb 2026 19:00:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-notebooks-questions/limits-with-hourly-notebook-scheduling-and-maximum/m-p/1685986#M1009</guid>
      <dc:creator>Jay_Gregory</dc:creator>
      <dc:date>2026-02-23T19:00:02Z</dc:date>
    </item>
    <item>
      <title>Re: Limits with hourly Notebook scheduling and maximum number of scheduled tasks</title>
      <link>https://community.esri.com/t5/arcgis-notebooks-questions/limits-with-hourly-notebook-scheduling-and-maximum/m-p/1686574#M1010</link>
      <description>&lt;P&gt;You could export the notebook to a PY script and set it up to run on a machine on your system with a Windows Scheduled task.&lt;/P&gt;&lt;P&gt;This tutorial shows the process:&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.arcgis.com/en/projects/schedule-automated-near-real-time-data-updates/" target="_blank"&gt;https://learn.arcgis.com/en/projects/schedule-automated-near-real-time-data-updates/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Feb 2026 14:59:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-notebooks-questions/limits-with-hourly-notebook-scheduling-and-maximum/m-p/1686574#M1010</guid>
      <dc:creator>BobBooth1</dc:creator>
      <dc:date>2026-02-25T14:59:24Z</dc:date>
    </item>
    <item>
      <title>Re: Limits with hourly Notebook scheduling and maximum number of scheduled tasks</title>
      <link>https://community.esri.com/t5/arcgis-notebooks-questions/limits-with-hourly-notebook-scheduling-and-maximum/m-p/1686578#M1011</link>
      <description>&lt;P&gt;Great idea, Jay - thanks! I ended up adding this code in a cell at the beginning of the notebook, seems to be working well!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;# Get current time in US Central timezone
central_time = datetime.now(ZoneInfo("America/Chicago"))
current_hour = central_time.hour
print("Central hour:", current_hour)

allowed_hours = {5, 6, 7, 8, 9, 16, 17, 18, 19, 20}

if current_hour not in allowed_hours:
    print("Not a scheduled hour, skipping execution")
    raise SystemExit()&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Feb 2026 15:02:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-notebooks-questions/limits-with-hourly-notebook-scheduling-and-maximum/m-p/1686578#M1011</guid>
      <dc:creator>Katie_Clark</dc:creator>
      <dc:date>2026-02-25T15:02:30Z</dc:date>
    </item>
    <item>
      <title>Re: Limits with hourly Notebook scheduling and maximum number of scheduled tasks</title>
      <link>https://community.esri.com/t5/arcgis-notebooks-questions/limits-with-hourly-notebook-scheduling-and-maximum/m-p/1686579#M1012</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/95621"&gt;@BobBooth1&lt;/a&gt;&amp;nbsp;, for my use-case I needed the workflow to stay in ArcGIS Online, but the tutorial you linked to is also a good resource!&lt;/P&gt;</description>
      <pubDate>Wed, 25 Feb 2026 15:05:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-notebooks-questions/limits-with-hourly-notebook-scheduling-and-maximum/m-p/1686579#M1012</guid>
      <dc:creator>Katie_Clark</dc:creator>
      <dc:date>2026-02-25T15:05:17Z</dc:date>
    </item>
  </channel>
</rss>

