Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Well with the app engine team's help we figured what the problem was and we worked around the issue. I want to give details in case anyone else runs into this problem.</p> <p>From <a href="http://code.google.com/p/googleappengine/issues/detail?id=8363" rel="nofollow">issue 8363</a> the app engine team indicated that from their logs they could see that the map reduce failed because of the large number of properties that our entity kind had. The specific entity kind that was causing the failure had a large number of variable properties that was generating errors when map reduce tried to write out a schema. They indicated that the solution on their end was to ignore entities that were like this in the backup to make it so the backup worked successfully.</p> <p>What we did to work around the issue and make the backup work was change how we told objectify to store out data. The large number of properties were being created due to our use of the @embedded keyword on a HashMap() class member field. Since the embedded keyword breaks down classes into individual components it was generating a large number of properties. We switched the member field to be @serialized and then ran a conversion process to make it use the new serialized property. This made the backup / restore work again.</p> <p>You can read more about the differences between embedded and serialized on <a href="http://code.google.com/p/objectify-appengine/wiki/IntroductionToObjectify#@Embedded" rel="nofollow">objectify's website</a></p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload