Hello. I was following this tutorial (https://learn.arcgis.com/en/projects/schedule-automated-near-real-time-data-updates/) 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 arcgis/managers.py that was forcing a limit of 25mb
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 > int(2.5e7)
):
raise ValueError(
"The data file provided does not exist or could not be accessed."
)
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?