[google-appengine] Issues with Blobstore API for Google Cloud Storage

2013-07-10 Thread Tim Rob
Hi All, I'm using the Blobstore API to generate an URL to save images into Google Cloud Storage (GCS): BlobstoreService blobstoreService = BlobstoreServiceFactory.getBlobstoreService(); String uploadUrl = blobstoreService.createUploadUrl("/upload", UploadOptions.Builder.withGoogleStorageBucket

Re: [google-appengine] Re: Error if I set "required=False" for a StringListProperty

2013-07-10 Thread timh
What about just dropping the required parameter from the property have you tried that. On Thursday, July 11, 2013 12:00:17 AM UTC+8, Luca de Alfaro wrote: > > I tried to use both default=[] (which did not stop the error from > occurring), and required=False (which generated a new error, as the

Re: [google-appengine] Re: how to *not* use _ah/queue/deferred?

2013-07-10 Thread Vinny P
On Wed, Jul 10, 2013 at 3:04 AM, Jitender Bhatia < jitender.bha...@metacube.com> wrote: > Did you ever find any way to stop the tasks ? > > On Thursday, November 11, 2010 6:21:07 PM UTC+5:30, Ivan Uemlianin wrote: >> >> We are running a very simple app on the appengine. We're using django- >> non

[google-appengine] Re: need help on refreshToken null issue

2013-07-10 Thread Vik
anyone on this plz? Thankx and Regards Vik Founder http://www.sakshum.org http://blog.sakshum.org On Mon, Jul 8, 2013 at 9:47 PM, Vik wrote: > Hi > > Please advise on > http://stackoverflow.com/questions/17333726/refreshtoken-is-null > > > Thankx and Regards > > Vik > Founder > http://www.sa

[google-appengine] Locked out of my app for not having owner

2013-07-10 Thread David Cifuentes Cortes
Hello, The account that used to be owner and creator of the application was deleted from Google Apps and now the only account with permissions is mine with only developer privilegies. I wonder how to get the owner role back to my app. App ID: www-endpoints Thanks, David Cifuentes -- *Efo

Re: [google-appengine] Moving application to European datacenter?

2013-07-10 Thread Vinny P
Hello Peter, On Wed, Jul 10, 2013 at 9:10 AM, Peter D wrote: > In the app engine documentation, I saw this point: > *For developers that do not have a Premier account, you will need to enable > billingfor > applications th

Re: [google-appengine] Re: Google Apps No Longer Free

2013-07-10 Thread GAEfan
This page still states that a new app should get one Google Apps Standard Edition for free: https://developers.google.com/appengine/articles/domains Just created a new app. But, the links take you to the paid (not free) Google Apps for Business page. -- You received this message because you

[google-appengine] Re: Release 1.8.2 issue - RuntimeError: internal error in regular expression engine

2013-07-10 Thread Kinesh Patel
FYI to others - a workaround for this issue is to not use r.DOTALL or r.S. You have to change your regexes wherever you have a . match to be (.|\n|\r). This is not a 100% foolproof workaround, as there are other newline-esque characters that are rarely used, but it should hold you over until th

Re: [google-appengine] Some questions about get_serving_url.

2013-07-10 Thread Alex Burgel
On Wednesday, July 10, 2013 6:17:54 AM UTC-4, barryhunter wrote: > > The image should get a future expires date, so the browser will cache the > image. > FYI, the expiration time is 24 hours, and there doesn't seem to be a way to change this. https://groups.google.com/d/topic/google-appengine

[google-appengine] Re: Release 1.8.2 issue - RuntimeError: internal error in regular expression engine

2013-07-10 Thread Kinesh Patel
It appears this problem is fixed on 64 bit builds, but broken on 32 bit builds. http://bugs.python.org/issue17998 On Wednesday, July 10, 2013 12:17:42 PM UTC-4, Kinesh Patel wrote: > > Or perhaps use a version of python that doesn't have a release critical > bug. I believe this has been patched

[google-appengine] Re: Release 1.8.2 issue - RuntimeError: internal error in regular expression engine

2013-07-10 Thread Kinesh Patel
Or perhaps use a version of python that doesn't have a release critical bug. I believe this has been patched already by the python community. On Wednesday, July 10, 2013 9:57:32 AM UTC-4, Michael Sander wrote: > > This appears to be a Python bug that was introduced in Python version > 2.7.5. I a

[google-appengine] Re: Google Apps Free One User

2013-07-10 Thread Jason Collins
Three credits? Well that's not going to work well for our business model Everyone should star this so that we can get rid of this silly Google Apps dependency: https://code.google.com/p/googleappengine/issues/detail?id=8528 j On Wednesday, 10 July 2013 08:46:31 UTC-6, James Gilliam wrote: >

[google-appengine] Group housekeeping: most of those pinned posts are really out of date

2013-07-10 Thread Jason Collins
Whoever manages this group, There are 6 or 7 "pinned" posts at the top of this board that are really out of date: broken links, old team members, etc. Can they just be unpinned? Thanks, j -- You received this message because you are subscribed to the Google Groups "Google App Engine" group.

[google-appengine] Widespread transaction failures under 1.8.2

2013-07-10 Thread Jason Collins
We are seeing a significant uptick in datastore transaction failures under 1.8.2. Is anyone else seeing the same in their logs? j -- 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 fr

[google-appengine] Re: Error if I set "required=False" for a StringListProperty

2013-07-10 Thread Luca de Alfaro
Thanks! This is a great suggestion; it might be the only one that works (short of giving up doing what I wanted to do in Python). The interesting thing is that the Java side has no trouble at all reading those entities. Luca On Wednesday, July 10, 2013 12:11:51 AM UTC-7, timh wrote: > > And

[google-appengine] Re: Error if I set "required=False" for a StringListProperty

2013-07-10 Thread Luca de Alfaro
required=False generates a new error, stating that the only value for required is True. Luca On Wednesday, July 10, 2013 12:09:56 AM UTC-7, timh wrote: > > Alternately make the property not required (required=False), load the > entities set the value of the list to a [] and then rewrite, once

[google-appengine] Re: Error if I set "required=False" for a StringListProperty

2013-07-10 Thread Luca de Alfaro
Yes, and it did not work. I cannot fix all the data, as the cost would be quite large. This leaves giving up doing what I wanted to do in Python, or fetching the underlying data without a model. Luca On Wednesday, July 10, 2013 12:07:25 AM UTC-7, timh wrote: > > Have you tried setting the def

Re: [google-appengine] Re: Error if I set "required=False" for a StringListProperty

2013-07-10 Thread Luca de Alfaro
I tried to use both default=[] (which did not stop the error from occurring), and required=False (which generated a new error, as the only value allowed for "required" is True). So it appears that the old solutions for this bug are not viable. A mapreduce would cost a lot of money given the la

[google-appengine] Moving application to European datacenter?

2013-07-10 Thread Peter D
In the app engine documentation, I saw this point: *For developers that do not have a Premier account, you will need to enable billingfor applications that should reside in the European Union. * (taken from https://develop

[google-appengine] Re: how to *not* use _ah/queue/deferred?

2013-07-10 Thread Jitender Bhatia
Did you ever find any way to stop the tasks ? On Thursday, November 11, 2010 6:21:07 PM UTC+5:30, Ivan Uemlianin wrote: > > Dear All > > app id: bigmarch2010 > > We are running a very simple app on the appengine. We're using django- > nonrel, but the app is not very complicated. > > In partic

Re: [google-appengine] Google App Engine datastore supports only 200 indexes..

2013-07-10 Thread aadhaar mehrotra
Will that mean, an application can not have "complex queries" more than 200? I have a situation where I am searching on 7 different parameters (search filter of 8 different parameters) and then need to sort the results in 80 different columns in the table (by one at a time). That shall mean 7 +

[google-appengine] Re: Google Apps Free One User

2013-07-10 Thread James Gilliam
Another issue ... This link says that a google developer can only request three credits ... I launch lots of sites with my GAE account https://docs.google.com/forms/d/1lSDA5Jol0Bosaop3RKZ9YqlSyzVLsCtAv8gYupBheR4/viewform Horrible jumping over these artificial Google hoops ... I don't even want

[google-appengine] Re: Google Apps Free One User

2013-07-10 Thread James Gilliam
Thank you for the response Barry. I read the forums all the time but I missed this June 15th announcement. How about putting something like this in the GAE blog or even sending an email to GAE admins? Again, thanks for the response. On Tuesday, July 9, 2013 9:13:12 PM UTC-7, James Gilliam w

[google-appengine] Re: Release 1.8.2 issue - RuntimeError: internal error in regular expression engine

2013-07-10 Thread Michael Sander
This appears to be a Python bug that was introduced in Python version 2.7.5. I am guessing that when google upgraded to 1.8.1, it also upgraded Python which broke this behavior. This is causing failures in my production code. Google -- please revert to 1.8.1 ASAP! On Wednesday, July 10, 2013 1:

Re: [google-appengine] Google Apps Free One User

2013-07-10 Thread Barry Hunter
No. See https://groups.google.com/d/topic/google-appengine/jC_K-YlmXhM/discussion how it works now. On Wed, Jul 10, 2013 at 5:13 AM, James Gilliam wrote: > Question -- > > Can GAE people still create a Google Apps Free Account for one user? > > Many clients don't want google apps, but we need

[google-appengine] 403 accessing AppEngine from OVH network.

2013-07-10 Thread ajgomezlopez
What went wrong? Accessing every gae app (ex. http://www.securempresa.com) via OVH's IPv6 network block reports a HTTP 403 error, with the specific message "We're sorry, but this service is not available in your country." It has been working well during months. If it's of any help, the IP I'm

Re: [google-appengine] Some questions about get_serving_url.

2013-07-10 Thread Barry Hunter
On Wed, Jul 10, 2013 at 11:00 AM, dd wrote: > >- Does it cost anything at all to create a *get_serving_url* image? > > No AFAIK > >- Is the cost to store an image created through *get_serving_url* to >the Image API storage just the same as Blobstore ($0.13/GB/month)? > > No. There

[google-appengine] Some questions about get_serving_url.

2013-07-10 Thread dd
- Does it cost anything at all to create a *get_serving_url* image? - Is the cost to store an image created through *get_serving_url* to the Image API storage just the same as Blobstore ($0.13/GB/month)? - Is the cost to serve an image created through *get_serving_url* the sam

[google-appengine] Datastore Admin Backups

2013-07-10 Thread Moises Belchin
In Dashboard > Data > Datastore Admin you can see backups and completed operations you've done. We do a daily backup and in this list of backups only appear some of them. You can't see all the backups you've done and you can't see all the Completed Operations. Would be awesome if you can see all

Re: [google-appengine] Re: Error if I set "required=False" for a StringListProperty

2013-07-10 Thread Moises Belchin
Consider using required=False and default=None or default=[] to avoid these problems. Other way is to use GenericProperty, use MapReduce to convert data from one type to another then change the property type, required, defaults, etc. Good luck ! Saludos. Moisés Belchín. 2013/7/10 timh > Alte

[google-appengine] Re: Error if I set "required=False" for a StringListProperty

2013-07-10 Thread timh
And here is some example code for getting and putting raw entities - ie no model involved from google.appengine.api import datastorefrom google.appengine.api import datastore_errorsdef get_entities(keys):rpc = datastore.GetRpcFromKwargs({}) keys, multiple = datastore.NormalizeAndTypeChec

[google-appengine] Re: Error if I set "required=False" for a StringListProperty

2013-07-10 Thread timh
Alternately make the property not required (required=False), load the entities set the value of the list to a [] and then rewrite, once you have migrated all the entities you can then set the property to be required. You do need to think about model migration when changing classes adding/remov

[google-appengine] Re: Error if I set "required=False" for a StringListProperty

2013-07-10 Thread timh
Have you tried setting the default value to [] as per that error ? If your model is blowing up you can always fetch the underlying data without a model, fix the data up and write it back. T On Wednesday, July 10, 2013 9:56:50 AM UTC+8, Luca de Alfaro wrote: > > This is pretty bad! > > As pointe