I've checked out mapreduce library for Python version of GAE today, and I can't seem to wrap my brain around it. I'm trying to iterate over datastore entities with missing properties, and add them. One of the properties has a default value, but other doesn't. The property that doesn't have the default value is calculated from another property (md5 sum of the email address which doubles as username).
Here's the code:
def user_schema(entity):
entity.profile_id = hashlib.md5(string.strip(entity.username)).hexdigest()
entity.verified = False
operation.db.Put(entity)
When I run this, I get BadValueError for profile_id property because it's missing in all entities. I'm assuming this is happening even before mapreduce runs user_schema. How do I go about adding missing properties to entities?