GoogleCloudPlatform / appengine-mapreduce

A library for running MapReduce jobs on App Engine
https://github.com/GoogleCloudPlatform/appengine-mapreduce/wiki/1-MapReduce
Apache License 2.0
234 stars 109 forks source link

When there's an error, the job seems to hang and doesn't report errors #106

Open tanin47 opened 7 years ago

tanin47 commented 7 years ago

I was following this example in here: https://sookocheff.com/post/appengine/mapreduce/mapreduce-yaml/

from mapreduce import operation

def touch(entity):
    """
    Update the entities timestamp.
    """
    yield op.db.Put(entity)

Please notice that op doesn't exist. It should have been operation.

I wonder where I can go see an error if there is one. And why does it hang (on the status page? I had to abort it.

Thank you!