[google-appengine] Re: Python 2.7 multithreaded: ereporter mapreduce compatibility

2011-11-12 Thread working
Hi Brian, As for google.appengine.ext.mapreduce.application Does it mean the SDK/runtime already has its mapreduce? Right now, I still supply an additional copy in my app folder. If SDK/runtime already has it, I will delete my own copy. How about the pipeline? Thanks, coronin On Nov 10, 6:10 

Re: [google-appengine] Re: Python 2.7 multithreaded: ereporter mapreduce compatibility

2011-11-12 Thread Brian Quinlan
Hi coronin, On Sun, Nov 13, 2011 at 8:05 AM, working coro...@gmail.com wrote: Hi Brian, As for google.appengine.ext.mapreduce.application Does it mean the SDK/runtime already has its mapreduce? Right now, I still supply an additional copy in my app folder. If SDK/runtime already has it, I

[google-appengine] Re: Python 2.7 multithreaded: ereporter mapreduce compatibility

2011-11-12 Thread Pol
Hi Brian, Although we can deploy to production using 2.7, accessing /mapreduce fails: Traceback (most recent call last): File /base/python27_runtime/python27_lib/versions/1/google/ appengine/runtime/wsgi.py, line 168, in Handle handler =

Re: [google-appengine] Re: Python 2.7 multithreaded: ereporter mapreduce compatibility

2011-11-12 Thread Brian Quinlan
On Sat, Nov 12, 2011 at 8:26 AM, Brian Quinlan bquin...@google.com wrote: Hi Pol, On Sat, Nov 12, 2011 at 7:46 AM, Pol p...@everpix.net wrote: Indeed the problem is the parsing of app.yaml: - url: /mapreduce(/.*)?  script: $PYTHON_LIB/google/appengine/ext/ mapreduce/main.py  login: admin-

[google-appengine] Re: Python 2.7 multithreaded: ereporter mapreduce compatibility

2011-11-11 Thread Pol
Indeed the problem is the parsing of app.yaml: - url: /mapreduce(/.*)?  script: $PYTHON_LIB/google/appengine/ext/ mapreduce/main.py  login: admin- url: /ereporter.*  script: $PYTHON_LIB/google/appengine/ext/ereporter/report_generator.py  login: admin So what do I use instead for script paths?

Re: [google-appengine] Re: Python 2.7 multithreaded: ereporter mapreduce compatibility

2011-11-11 Thread Brian Quinlan
Hi Pol, On Sat, Nov 12, 2011 at 7:46 AM, Pol p...@everpix.net wrote: Indeed the problem is the parsing of app.yaml: - url: /mapreduce(/.*)?  script: $PYTHON_LIB/google/appengine/ext/ mapreduce/main.py  login: admin- url: /ereporter.*  script:

[google-appengine] Re: Python 2.7 multithreaded: ereporter mapreduce compatibility

2011-11-11 Thread Pol
Ah OK it works, thanks. Didn't know had to replace path entirely... Was wondering about compatibility since there were still some CGI leftovers in these files. On Nov 11, 1:26 pm, Brian Quinlan bquin...@google.com wrote: Hi Pol, On Sat, Nov 12, 2011 at 7:46 AM, Pol p...@everpix.net wrote: