-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Performance issue - batching #274
Comments
How many objects? |
sorry, I forgot that piece: 10,000 |
Can you give more details about the use case? (Will there be 10k objects created for every user?, how often? etc) Some background, we aren't really optimized for the many (more than a few thousand) object case, though it should probably be faster than 10min. |
In our first implementation phase, only part of our users would have that use case of importing large number of objects at once. Eventually though, we plan on syncing numerous entities, some of which would have thousands of objects to sync. |
Yup, this is the exact issue I observed and filed in #208. Jorge improved things by batching, and I think I can live with/work around the current performance, but I too would love to have uploading happen a lot faster. 👍 |
We have a use case where we batch import simple objects (5-6 string attributes) in the app from a CSV.
The import loop insert objects in core data, and we save the context only once all objects have been inserted.
Based on those observations, the bottleneck seems to be on the uploading side.
The text was updated successfully, but these errors were encountered: