You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 30, 2018. It is now read-only.
I have around 10 million records and and using mongodb as primary storage engine. When I run rake environment tire:imort CLASS=User, it takes more 2 hours to index. Is this normal? Is there any faster way to do it? Also, if I add more records to the User model will it recreate the full index and will take again hours to re-index?
The text was updated successfully, but these errors were encountered:
I guess you have identity map enabled. Tire iterates through all users and mongoid put them all in memory if identity map is enabled. I made pull request in which I disable identity map during process. See #884. It would be nice if you try and tell us if it is help you. (It helps in my projects.)
Hi,
I have around 10 million records and and using mongodb as primary storage engine. When I run rake environment tire:imort CLASS=User, it takes more 2 hours to index. Is this normal? Is there any faster way to do it? Also, if I add more records to the User model will it recreate the full index and will take again hours to re-index?
The text was updated successfully, but these errors were encountered: