mapreduce管道代码似乎没有使用webapp2和ndb,并且需要关闭线程安全。这是否意味着我必须更新代码以使用webapp2和threadsafe?
答案 0 :(得分:1)
假设你有latest MapReduce framework:
MapReduce支持db和ndb。
MapReduce使用webapp,但您无需升级到webapp2。他们都使用WSGI标准并且运行得很好。
MapReduce与threadsafe: true
一起使用效果很好。
def create_application():
return webapp.WSGIApplication(create_handlers_map(),
debug=True)
mapreduce_app = create_application()
- url: /mapreduce/pipeline/images
static_dir: mapreduce/lib/pipeline/ui/images
- url: /mapreduce(/.*)?
script: mapreduce.main.mapreduce_app
login: admin