Took a while but I was finally able to finish the migration. The problem was that some of my entities were over the index entries/entity limit. These entities were created before AppEngine enforced the limits and were grandfathered into the old limits. As long as the keys of these entities don't change they work correctly. Because migration changes the keys the new application does not allow these objects to be put.
We had some old same property indexes that are not needed anymore (http://code.google.com/appengine/articles/indexselection.html#Improved_Query_Planner). Removing these from the index.yaml and running vacuum_indexes on both the old and new application resolved the problem. - Klaas Pieter On Sunday 22 January 2012 at 23:20, Brandon Wirtz wrote: > > There have been other threads on this, until your migration has been stuck > for 72 hours, don’t assume it died. Many people’s migrations have taken 120 > hours. > > > > > > From: [email protected] > [mailto:[email protected]] On Behalf Of Klaas Pieter Annema > Sent: Sunday, January 22, 2012 10:56 AM > To: [email protected] > (mailto:[email protected]) > Subject: Re: [google-appengine] Re: Migration 'stuck' > > > > > > The new migration seems to be stuck as well. Again at 99% with approximate > time slowly rising. > > > > > > > > - Klaas Pieter > > > > > > > > On Sunday 22 January 2012 at 11:51, Klaas Pieter Annema wrote: > > > > I just reverted and restarted the migration hopefully this time it'll copy > > correctly. The app id is enstoresecure, can you see what went wrong with > > the previous migration? Will it stop the current one as well? > > > > > > > > > > > > > > > > - Klaas Pieter > > > > > > > > > > > > > > > > On Saturday 21 January 2012 at 23:59, Amy Unruh wrote: > > > > > > Klaas, > > > > > > > > > > > > > > > > > > > > > If the migration still appears 'stuck', can you send me the app id? > > > > > > > > > On Sun, Jan 22, 2012 at 5:40 AM, Klaas Pieter Annema > > > <[email protected] (mailto:[email protected])> wrote: > > > > > > > > > > > > > > > Migration is still stuck. Status is now “99.00% (approximately 1:17:41 > > > remaining). Nobody at Google is responding to the issue. I've already had > > > to postpone one announced maintenance period. The next one is rapidly > > > approaching and it looks like we're not going to make that either. > > > > > > > > > > > > > > > > > > > > > > > > Anyone have a suggestion? > > > > > > > > > > > > > > > > > > > > > > > > - Klaas Pieter > > > > > > > > > > > > > > > > > > > > > > > > On Thursday 19 January 2012 at 10:23, Klaas Pieter Annema wrote: > > > > > > > > I've started an app migration 3 days ago and it's still running. > > > > Yesterday it seemed to be making progress, the status of the copy phase > > > > changed from 'copying' to 99.00% (approximately 0:30:00 remaining). The > > > > approximate time slowly increasing during the day and is now at > > > > 0:43:19. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I'm starting to doubt wether it's still working. I have about 40gb of > > > > data in my datastore. The datastore statistics of the receiving > > > > application has been showing all data since the end of day 1. Is the > > > > migration supposed to take this long? How do I know if something went > > > > wrong? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > - Klaas Pieter > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > You received this message because you are subscribed to the Google Groups > > > "Google App Engine" group. > > > To post to this group, send email to [email protected] > > > (mailto:[email protected]). > > > To unsubscribe from this group, send email to > > > [email protected] > > > (mailto:google-appengine%[email protected]). > > > For more options, visit this group at > > > http://groups.google.com/group/google-appengine?hl=en. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > You received this message because you are subscribed to the Google Groups > > > "Google App Engine" group. > > > To post to this group, send email to [email protected] > > > (mailto:[email protected]). > > > To unsubscribe from this group, send email to > > > [email protected] > > > (mailto:[email protected]). > > > For more options, visit this group at > > > http://groups.google.com/group/google-appengine?hl=en. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To post to this group, send email to [email protected] > (mailto:[email protected]). > To unsubscribe from this group, send email to > [email protected] > (mailto:[email protected]). > For more options, visit this group at > http://groups.google.com/group/google-appengine?hl=en. > > > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To post to this group, send email to [email protected] > (mailto:[email protected]). > To unsubscribe from this group, send email to > [email protected] > (mailto:[email protected]). > For more options, visit this group at > http://groups.google.com/group/google-appengine?hl=en. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
