<?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 File size limit in manager.overwrite in ArcGIS API for Python Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-python-questions/file-size-limit-in-manager-overwrite/m-p/1539013#M10669</link>
    <description>&lt;P&gt;Hello. I was following this tutorial (&lt;A href="https://learn.arcgis.com/en/projects/schedule-automated-near-real-time-data-updates/" target="_blank" rel="noopener"&gt;https://learn.arcgis.com/en/projects/schedule-automated-near-real-time-data-updates/&lt;/A&gt;) and when it came time to update the data in my item, it failed because it was over 25mb. I looked into the code and it was overwite(...) in&amp;nbsp;&lt;SPAN&gt;&lt;SPAN class=""&gt;arcgis/managers.py that was forcing a limit of 25mb&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;        if data_file and (
            not isinstance(data_file, str)
            or not os.path.exists(data_file)
            or not os.path.isfile(data_file)
            or os.stat(data_file).st_size &amp;gt; int(2.5e7)
        ):
            raise ValueError(
                "The data file provided does not exist or could not be accessed."
            )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;Is there any reason for this restriction? I removed the file size check and uploaded a 200mb+ geojson file and everything worked perfectly fine. Any insight?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 16 Sep 2024 17:12:26 GMT</pubDate>
    <dc:creator>OGLEngineering</dc:creator>
    <dc:date>2024-09-16T17:12:26Z</dc:date>
    <item>
      <title>File size limit in manager.overwrite</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/file-size-limit-in-manager-overwrite/m-p/1539013#M10669</link>
      <description>&lt;P&gt;Hello. I was following this tutorial (&lt;A href="https://learn.arcgis.com/en/projects/schedule-automated-near-real-time-data-updates/" target="_blank" rel="noopener"&gt;https://learn.arcgis.com/en/projects/schedule-automated-near-real-time-data-updates/&lt;/A&gt;) and when it came time to update the data in my item, it failed because it was over 25mb. I looked into the code and it was overwite(...) in&amp;nbsp;&lt;SPAN&gt;&lt;SPAN class=""&gt;arcgis/managers.py that was forcing a limit of 25mb&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;        if data_file and (
            not isinstance(data_file, str)
            or not os.path.exists(data_file)
            or not os.path.isfile(data_file)
            or os.stat(data_file).st_size &amp;gt; int(2.5e7)
        ):
            raise ValueError(
                "The data file provided does not exist or could not be accessed."
            )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;Is there any reason for this restriction? I removed the file size check and uploaded a 200mb+ geojson file and everything worked perfectly fine. Any insight?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Sep 2024 17:12:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/file-size-limit-in-manager-overwrite/m-p/1539013#M10669</guid>
      <dc:creator>OGLEngineering</dc:creator>
      <dc:date>2024-09-16T17:12:26Z</dc:date>
    </item>
    <item>
      <title>Re: File size limit in manager.overwrite</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/file-size-limit-in-manager-overwrite/m-p/1546467#M10744</link>
      <description>&lt;P&gt;I've also run into this problem before. Good find, i will have to remember this next time i need to upload something of this size.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2024 11:40:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/file-size-limit-in-manager-overwrite/m-p/1546467#M10744</guid>
      <dc:creator>BijanTaheri</dc:creator>
      <dc:date>2024-10-08T11:40:51Z</dc:date>
    </item>
    <item>
      <title>Re: File size limit in manager.overwrite</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/file-size-limit-in-manager-overwrite/m-p/1546762#M10748</link>
      <description>&lt;P&gt;Thanks for posting this. The file size check was removed in the 24th September release of the API for Python 2.4.0.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This version will be compatible with the next release of ArcGIS Pro (3.4).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please see the documentation on this change here (scroll down to overwrite() ) &lt;A href="https://developers.arcgis.com/python/latest/guide/release-notes-240/" target="_blank"&gt;https://developers.arcgis.com/python/latest/guide/release-notes-240/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2024 22:30:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/file-size-limit-in-manager-overwrite/m-p/1546762#M10748</guid>
      <dc:creator>Leo_Lerner</dc:creator>
      <dc:date>2024-10-08T22:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: File size limit in manager.overwrite</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/file-size-limit-in-manager-overwrite/m-p/1671783#M11808</link>
      <description>&lt;P&gt;This was a problem for us as well, took a long time and a call to ESRI before coming across this post...&lt;BR /&gt;25Mb? really? why......?&lt;BR /&gt;the error message&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;raise ValueError(&lt;BR /&gt;The data file provided does not exist or could not be accessed."&lt;BR /&gt;&lt;BR /&gt;It doesn't even mention the file size limitation, so that took me down a lot of wrong paths.&lt;BR /&gt;&lt;BR /&gt;I commented out that line and it's all working. And no, we can't go to a newer version of PRO because I tried that and it broke so many of our modelbuilder tools. We are staying on 3.3.6 until we upgrade enterprise.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 20:44:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/file-size-limit-in-manager-overwrite/m-p/1671783#M11808</guid>
      <dc:creator>TheGreenOrange</dc:creator>
      <dc:date>2025-12-09T20:44:11Z</dc:date>
    </item>
  </channel>
</rss>

