Export records to cloudkit -
i need export data dictionary of 12 thousand items cloudkit. tried use convenience api keep hitting rate limit while trying save public database. tried operation api , got similar error. question is: how save large amount of data cloudkit without hitting limits?
according docs ckerrorlimitexceeded
error code, should
try refactoring request multiple smaller batches.
so if ckmodifyrecordsoperation
operation results in ckerrorlimitexceeded
error, can create 2 ckmodifyrecordsoperation
objects, each half data failed operation. if recursively (so of split operations fail limit exceeded error, splitting again in two) should number of ckmodifyrecordsoperation
objects have small enough number of records avoid error.
Comments
Post a Comment