[google-appengine] Using associated domain for appengine apps

2012-02-01 Thread Klaas Pieter Annema
Is it possible to use an associated google apps domain for an app engine application? After adding the domain under Domain Settings in the Google Apps dashboard I can't choose it in the Add new URL drop down menu in the settings for the app engine application. - Klaas Pieter -- You received

Re: [google-appengine] Re: Migration 'stuck'

2012-01-27 Thread Klaas Pieter Annema
On Tue, Jan 24, 2012 at 04:25, Klaas Pieter Annema klaaspie...@annema.me (mailto:klaaspie...@annema.me) wrote: Took a while but I was finally able to finish the migration. The problem was that some of my entities were over the index entries/entity limit. These entities were created before

Re: [google-appengine] Re: Migration 'stuck'

2012-01-24 Thread Klaas Pieter Annema
. Many people’s migrations have taken 120 hours. From: google-appengine@googlegroups.com [mailto:google-appengine@googlegroups.com] On Behalf Of Klaas Pieter Annema Sent: Sunday, January 22, 2012 10:56 AM To: google-appengine@googlegroups.com (mailto:google-appengine

Re: [google-appengine] Re: Migration 'stuck'

2012-01-22 Thread Klaas Pieter Annema
, If the migration still appears 'stuck', can you send me the app id? On Sun, Jan 22, 2012 at 5:40 AM, Klaas Pieter Annema klaaspie...@annema.me (mailto:klaaspie...@annema.me) wrote: Migration is still stuck. Status is now “99.00% (approximately 1:17:41 remaining). Nobody at Google

Re: [google-appengine] Re: Migration 'stuck'

2012-01-22 Thread Klaas Pieter Annema
The new migration seems to be stuck as well. Again at 99% with approximate time slowly rising. - Klaas Pieter On Sunday 22 January 2012 at 11:51, Klaas Pieter Annema wrote: I just reverted and restarted the migration hopefully this time it'll copy correctly. The app id is enstoresecure

Re: [google-appengine] Re: Migration 'stuck'

2012-01-22 Thread Klaas Pieter Annema
on this, until your migration has been stuck for 72 hours, don’t assume it died. Many people’s migrations have taken 120 hours. From: google-appengine@googlegroups.com [mailto:google-appengine@googlegroups.com] On Behalf Of Klaas Pieter Annema Sent: Sunday, January 22, 2012 10:56

[google-appengine] Re: Migration 'stuck'

2012-01-21 Thread Klaas Pieter Annema
have a suggestion? - Klaas Pieter On Thursday 19 January 2012 at 10:23, Klaas Pieter Annema wrote: I've started an app migration 3 days ago and it's still running. Yesterday it seemed to be making progress, the status of the copy phase changed from 'copying' to 99.00% (approximately 0:30:00

[google-appengine] Migration 'stuck'

2012-01-19 Thread Klaas Pieter Annema
I've started an app migration 3 days ago and it's still running. Yesterday it seemed to be making progress, the status of the copy phase changed from 'copying' to 99.00% (approximately 0:30:00 remaining). The approximate time slowly increasing during the day and is now at 0:43:19. I'm

[google-appengine] Ensure strong consistency using 'contrived' keys

2012-01-17 Thread Klaas Pieter Annema
I see the following pattern in the documentation to ensure strong consistency: user_key = db.Key.from_path('User', 'ryan') # Put two entities db.put([TestModel(parent=user_key), TestModel(parent=user_key)]) # Global query doesn't see the data. self.assertEqual(0, TestModel.all().count(3)) #

Re: [google-appengine] Ensure strong consistency using 'contrived' keys

2012-01-17 Thread Klaas Pieter Annema
are done with bulk put()s; since they're all part of the same entity group, the bulk put() gets around the one-write-per-second problem. Jeff On Tue, Jan 17, 2012 at 4:06 PM, Klaas Pieter Annema klaaspie...@annema.me (mailto:klaaspie...@annema.me) wrote: I see the following pattern

[google-appengine] Re: Recurring DeadlineExceededError when loading instances..

2012-01-12 Thread Klaas Pieter Annema
My app was running fine for a while, but has gone back to throwing very frequent DeadlineExceededErrors. Unsure if it's related but I *think *it started after I deployed a new version of my app. I have since reverted to the older version but it didn't resolve the error. -- You received this

Re: [google-appengine] Re: Recurring DeadlineExceededError when loading instances..

2012-01-04 Thread Klaas Pieter Annema
The problems in my resolved itself. Still would like to know what caused it and if there is a way to prevent it. - Klaas Pieter On Wednesday 4 January 2012 at 03:23, Rajkumar Radhakrishnan wrote: After a few days of app working fine without issues, the errors have started occurring again,

[google-appengine] Re: Recurring DeadlineExceededError when loading instances..

2011-12-29 Thread Klaas Pieter Annema
Unsure if this is related but I'm seeing some of the same signals. I just noticed DeadlineExceedErrors being thrown intermittently. My errors / second starting spiking about 24 hours ago which suggests that this problem has been going on for that long. Additionally I'm seeing the following

[google-appengine] Re: appstats/recording.py:498: DeprecationWarning

2011-11-10 Thread Klaas Pieter Annema
I tried re-enabling it, still got the same error. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/azciYoQeW7gJ. To post to this group, send email to

[google-appengine] Re: appstats/recording.py:498: DeprecationWarning

2011-10-06 Thread Klaas Pieter Annema
I'm seeing the same error appear in my logs all of a sudden. It seems to happen more often in startup requests. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web visit

[google-appengine] NeedIndexError suggesting index that already exists

2011-10-04 Thread Klaas Pieter Annema
After running a query on the dev server it shows the following error: The following index is the minimum index required: - kind: Product properties: - name: nameQuery - name: storeKey - name: tags - name: variationMaster The suggested index for this query is: - kind: Product

[google-appengine] BadArgumentError: Cannot use key and key_name at the same time with different values

2011-09-09 Thread Klaas Pieter Annema
About 5 hours ago AppEngine (app id: enstoresecure) began to raise BadArgumentError Cannot use key and key_name at the same time with different values. We haven't changed anything, our current version was deployed 2 days ago. I'm not experiencing the problem running locally. Did anything change