Re: [google-appengine] Re: Google cloud endpoint error in production, no stack trace

2015-03-17 Thread Aakash Bapna
Thanks all, the issue was because of missing Content-Type:application/json request header. The local dev server misses this check and works. Regards, Aakash On Thu, Mar 12, 2015 at 3:35 AM, Vinny P wrote: > On Fri, Mar 6, 2015 at 8:48 PM, Aakash Bapna > wrote: > >> It's Python, I think the ex

Re: [google-appengine] Search API - Problem creating a Document with a java.lang.Double Field

2015-03-17 Thread Nick
There are a few options within the search api: Scale/truncate the double to fit - this fails if your double has a wide range (such as very large and very small values across the dataset) Store in multiple fields and create a query that knows how to span them (ie store the low and high quantitie

[google-appengine] Local app.yaml file gives different results to remote file

2015-03-17 Thread Paul Canning
In my CodeIgniter application, I have set a handler in the app.yaml file for the following: handlers: - url: /task.php script: task.php This file is in the root directory. In a typical LAMP/WAMP environment, a .htaccess file would be used to allow access, as typically you are only allowed to

[google-appengine] Setting log level when running dev_appserver.py still shows INFO messages?

2015-03-17 Thread Paul Canning
I am trying to run the app engine and only show errors in the log console. I tried: "dev_appserver.py --log_level=error" The app runs fine, but I still see a ton of INFO messages in the console?! I thought it was supposed to filter them out? -- You received this message because you are subsc

[google-appengine] Re: Setting log level when running dev_appserver.py still shows INFO messages?

2015-03-17 Thread Mars Lan
Sounds like a bug. Could you file an issue: https://code.google.com/p/googleappengine/wiki/FilingIssues On Tuesday, March 17, 2015 at 4:25:39 AM UTC-7, Paul Canning wrote: > > I am trying to run the app engine and only show errors in the log console. > > I tried: > > "dev_appserver.py --log_leve

[google-appengine] Re: Using pull queues with tagging to battle contention / batch tasks

2015-03-17 Thread Kaan Soral
Even in this new pull queue setup, I was haunted by the push queue issues, upon inspection I found out that some tasks that are pushed into the push queues just didn't execute, google ignores these issues for years (Each pull queue addition triggers a routine with taskqueue's to handle the opera

Re: [google-appengine] Error 302 for Tasks

2015-03-17 Thread Vinny P
Task queue requests, even failed ones/ones where the route can't be matched, should show up in the application logs. Do you see any error requests in the console? Task queues run from the requesting IP 0.1.0.2, so try looking for request logs originated from that IP. If you do find error logs, can

Re: [google-appengine] Unable to access my application identifier on appspot.com

2015-03-17 Thread Vinny P
On Fri, Mar 13, 2015 at 6:48 AM, Gildas Moukouyou-Kouaka wrote: > > I am a beginner with ODK technology. > > I have just create my application on AppEngine after that I have setup > successfully the ODK aggregate on the Cloud. But, I am not able to access > my application identifier url. When I tr

Re: [google-appengine] Search API - Problem creating a Document with a java.lang.Double Field

2015-03-17 Thread Vinny P
On Tue, Mar 17, 2015 at 4:48 AM, Nick wrote: > Outside of that, you'll probably need to find another way, such as > cloudsql, the datastore or another external search index (like elastic > search on GCE) > I would emphasize the last option: elastic search on GCE. There's a click to deploy Elast

Re: [google-appengine] Local app.yaml file gives different results to remote file

2015-03-17 Thread Vinny P
On Tue, Mar 17, 2015 at 5:22 AM, Paul Canning wrote: > handlers: > - url: /task.php > script: task.php > > Locally, I can access http://localhost:8080/test.php, remotely, I get the > CI 404 page. > > Why would there be a difference? > Well, first of all I want to point out that your handler