AFAIK iOS still enforces a strict <1GB of file writes per 24 hour period. Exceeding this limit forces a watchdog crash.
1073.75 MB of file backed memory dirtied over 15762 seconds (68.12 KB per second average), exceeding limit of 12.43 KB per second over 86400 seconds
Our application exchanges extremely large files, and sync many small files, using a series of cryptography at rest and in flight, and we do not leverage core data or sqlite.
It's very common for us to need to write back more than 1GB in a 24 hour period and our users are hitting this and crashing. Is there no setting to circumvent 1GB limit?
Not quite sure how file sharing applications are currently getting around this.