Hi,
just wanted to ask if you already have experience with migrating to Gitlab.com.
I just tried to migrate a dummy project. It seems that reading from Gitlab.com is ok, however creating projects hangs.

After some debugging I found that this LINE blocks
users_dst = gitlab_dst.users.auto_paginate
Makes sense somehow. Gitlab.com has >100K users. ^^
Therefore, looping over users and groups should be avoided.
Managed to migrate one project, but had to make API calls with curl to get e.g. group id on Gitlab.com and Users id, and do the user mapping manually.
Not so nice. Any thoughts?
Hi,
just wanted to ask if you already have experience with migrating to Gitlab.com.
I just tried to migrate a dummy project. It seems that reading from Gitlab.com is ok, however creating projects hangs.
After some debugging I found that this LINE blocks
Makes sense somehow. Gitlab.com has >100K users. ^^
Therefore, looping over
usersandgroupsshould be avoided.Managed to migrate one project, but had to make API calls with
curlto get e.g.group idon Gitlab.com andUsers id, and do the user mapping manually.Not so nice. Any thoughts?