[google-appengine] Re: Upcoming Change to Datastore Auto IDs

2013-05-25 Thread timh
>From my understanding sequential IDs, keys etc mean that data is written into the same area (tablet). By scattering ID's they can more distributed data and better concurrency. Maybe not the best description but thats my guess, Sequential values have been discussed in the past with regards

[google-appengine] Re: SSL configuration issue (GAE/Java)

2013-05-25 Thread Mike Dougherty
Hey Thomas, Thank you for the reply. I could have sworn I had configured an app in the past, via the web.xml to use SSL (without login), but I must be remembering wrong. I will add a simple redirect in my application code as you suggest. Thanks, Mike On Sunday, May 26, 2013 6:34:09 AM UTC+3,

[google-appengine] Re: SSL configuration issue (GAE/Java)

2013-05-25 Thread Thomas Wiradikusuma
Hi Mike, SSL for MYAPP.appspot.com is automatic, you don't need to do anything (just open https://MYAPP.appspot.com). For custom domain (e.g. MYAPP.com) the doc is https://developers.google.com/appengine/docs/ssl. For both cases, to force user to use https, handle in your code (e.g. if request.

Re: [google-appengine] Re: Frustrated by logs

2013-05-25 Thread Kristopher Giesing
And as an addendum, once I finally understood how to get to the logs I needed, I was able to diagnose the issue (at least from the server side - I now know the fault is somewhere on the client). Without being able to trace all the events, including server instance IDs, I wouldn't have been abl

Re: [google-appengine] Re: Frustrated by logs

2013-05-25 Thread Kristopher Giesing
Thanks Takashi. I think I used the Python appcfg.py script for something else a long time ago - so IIRC it's possible to use this script with Java apps. Is that true? - Kris On Friday, May 24, 2013 2:32:16 PM UTC-7, Takashi Matsuo (Google) wrote: > > > Thanks Matthew, > > I confirmed that you

Re: [google-appengine] Re: Frustrated by logs

2013-05-25 Thread Kristopher Giesing
Comments below... On Saturday, May 25, 2013 1:01:12 AM UTC-7, Nick wrote: > > The logs, while good to have, are a super PITA to use. > > Things that would be great to fix: > >- The search option labelled 'Since' is exactly the opposite of what >it says. Everyone i've ever spoken to gets c

[google-appengine] SSL configuration issue (GAE/Java)

2013-05-25 Thread Mike Dougherty
I'm having a little trouble getting SSL to work correctly with my Java application. I've configured it according to the information found here: https://developers.google.com/appengine/docs/java/config/webxml#Secure_URLs And it appears to work, however it is requiring the user login with a Goog

Re: [google-appengine] Re: Frustrated by logs

2013-05-25 Thread Jeff Schnitzer
I do want to point out that the log system is actually one of GAE's best features. If you spend any time working on Heroku or Appfog or EB you will be utterly shocked at how primitive the logging systems there are. This is not to say that GAE logging is perfect, but it's *miles* ahead of other Paa

[google-appengine] Re: Upcoming Change to Datastore Auto IDs

2013-05-25 Thread Vinny P
On Friday, May 24, 2013 7:04:08 PM UTC-5, Chris Ramsdale wrote: > > In the upcoming 1.8.1 release, the Datastore default auto ID policy in > production will switch to scattered IDs to improve performance. > Out of curiosity, what does "improve performance" mean? Faster datastore puts? Less va

[google-appengine] Re: problems with Java 1.7.0_21 and the dev_appserver

2013-05-25 Thread Gary Frederick
!!! Thanks for the post and the research Gary On Saturday, May 25, 2013 7:43:39 AM UTC-5, Mathias Kegelmann wrote: > > On Saturday, 25 May 2013 13:54:20 UTC+2, Gary Frederick wrote: > >> It works if you use Java 1.7.0_17 (and Java 6). Is there a difference in >> the headers with the older versi

[google-appengine] Re: problems with Java 1.7.0_21 and the dev_appserver

2013-05-25 Thread Mathias Kegelmann
On Saturday, 25 May 2013 13:54:20 UTC+2, Gary Frederick wrote: > It works if you use Java 1.7.0_17 (and Java 6). Is there a difference in > the headers with the older version? > > Gary > I don't think the headers changed, I think that javaws interprets the HTTP headers in a stricter way. I narr

[google-appengine] Re: problems with Java 1.7.0_21 and the dev_appserver

2013-05-25 Thread Gary Frederick
It works if you use Java 1.7.0_17 (and Java 6). Is there a difference in the headers with the older version? Gary -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an em

[google-appengine] Re: Upcoming Change to Datastore Auto IDs

2013-05-25 Thread timh
But not python. It seems to cause the javascript front ends the most woe. T On Saturday, May 25, 2013 8:26:06 AM UTC+8, Ray wrote: > > In short: if any part of your applications use 32 bit integers (which is > still the default for many environments) to store any IDs of entities, your > applic

[google-appengine] Re: Accumulated lots of data - deleting is is too expensive

2013-05-25 Thread Richard Watson
I agree with Renzo. You should be able to run a cron which deletes X per day for days that you're under your quota? If you're above your quota and you'll never drop below, either ignore it or move apps (if useful data > non-useful data). If you're below quota it'll take a year or more but it'

[google-appengine] Re: problems with Java 1.7.0_21 and the dev_appserver

2013-05-25 Thread Mathias Kegelmann
Just looked at the headers the app sends: HTTP/1.1 200 OK X-TraceUrl: /appstats/details?time=1369478620521&type=json Cache-Control: no-cache, no-store, max-age=0, must-revalidate Pragma: no-cache Expires: Fri, 01 Jan 1990 00:00:00 GMT content-disposition: attachment; filename="BlocksEd

[google-appengine] Re: problems with Java 1.7.0_21 and the dev_appserver

2013-05-25 Thread Mathias Kegelmann
I ran some more experiments to narrow down the problem: - I made a tiny test webstart project with a self signed JAR and that works fine with 1.7u21. - If I start the program from saved files - JNLP file on the local disk, JAR on the disk and the JNLP adapted so it uses the local JAR - everythin

Re: [google-appengine] Re: Frustrated by logs

2013-05-25 Thread Nick
The logs, while good to have, are a super PITA to use. Things that would be great to fix: - The search option labelled 'Since' is exactly the opposite of what it says. Everyone i've ever spoken to gets confused by this, the logs work backwards from this time, not forwards. I must have