[google-appengine] Re: how to convince client

2009-10-13 Thread Roy Smith
You picked a bad day to ask that question. Google have just implemented an upgrade, with no prior notice, which seems to have broken several users' applications. There is no simple regression path and no support. Sometimes it feels like GAE is more of a playground for social networking apps rather

[google-appengine] Re: GAE production error at this moment? : Class-key is a derived property and cannot be set.

2009-10-13 Thread Alan Xing
Hi Rafe, Thanks again. The problem is fixed. We have a need to override db.Model.__init__() mostly because we want to automatically set the parent of each model instance. This may be a common need among other GAE apps. Hope this msg is helpful to other developers on this list. Regards, Alan On T

[google-appengine] Re: system unstable? cron failing now

2009-10-13 Thread ajalsen
> then why it is happening with my code? Yes, that's the point. Why you and me? Google's system status board is in normal status now, so it means this continuous error is considered as "minor performance issues", not considered as errors need to be fixed immediately. I found following comment i

[google-appengine] Re: Same entity with several parents?

2009-10-13 Thread Roy Smith
It sounds like you're reading documentation for the Low Level API. I don't use JDO, but I suspect that JDO does not have that single-parent constraint. On Tue, Oct 13, 2009 at 8:49 PM, andreas_b wrote: > > Hi all. > > I've only been working with relational databases up to now, and have > some pr

[google-appengine] Re: Obama: Afghanistan decision in 'coming weeks'

2009-10-13 Thread Scott Ellis
ha probably needs a try/catch in there too 2009/10/14 Donzo > > Looks like a Python syntax error to me ... try this > > def Obama(): return Afghanistan.decision in ['coming weeks'] > > On Oct 13, 6:22 pm, "News" wrote: > > Obama: Afghanistan decision in 'coming weeks' > > > > http://bit.ly/2dWF

[google-appengine] Making paid apps

2009-10-13 Thread Tadas Kleinauskas
Is it ok to make users pay for using our app on GAE? We will try to integrate local payment system. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to goog

[google-appengine] Same entity with several parents?

2009-10-13 Thread andreas_b
Hi all. I've only been working with relational databases up to now, and have some problems with JDO. I seem to have some trouble grasping the basic design patterns with POJO/JDO here. This is probably a very basic issue, but its hard when the mind is setup to think from an entirely different per

[google-appengine] Re: Need more info: Request was aborted after waiting too long...

2009-10-13 Thread Anders
Same problem here. Never seen this error message before and now I am getting it all the time. First instance of the problem I see is at [12/ Oct/2009:15:22 -0700] so that would be around the same time. /Anders On 13 Okt, 13:07, RollingCircle wrote: > Hi, > > I can't offer a solution, only to a

[google-appengine] OperationalError: unable to open database file

2009-10-13 Thread vivpuri
I am trying out the data download using remote_api and getting the following error: *** No descending index on __key__, performing serial download .. [ERROR ] [Thread-11] Expo

[google-appengine] Re: Obama: Afghanistan decision in 'coming weeks'

2009-10-13 Thread Donzo
Looks like a Python syntax error to me ... try this def Obama(): return Afghanistan.decision in ['coming weeks'] On Oct 13, 6:22 pm, "News" wrote: > Obama: Afghanistan decision in 'coming weeks' > > http://bit.ly/2dWFN5 > > http://bit.ly/2dWFN5 > > http://bit.ly/2dWFN5 > > Obama: Afghanistan de

[google-appengine] how to convince client

2009-10-13 Thread Richard
hello, the App Engine webpage has lots of good information for developers like us, but what about for our clients? My client is skeptical about deploying on GAE, so I'd like to show him some propaganda about uptime, costs, etc. Is there anything available, ideally a short video? cheers, Richard

[google-appengine] Re: system unstable? cron failing now

2009-10-13 Thread Prashant
now it seems like all the crons are getting failed, error % is very high === ERROR LOG Request was aborted after waiting too long to attempt to service your request. Most likely, this indicates that you have reached your simultaneous active request limit. This is almost always due to excess

[google-appengine] Re: Receiving Email within custom domain

2009-10-13 Thread Neves
Not so easy. :( How can I redirect *...@mydomain.com to *...@appid.appspotmail.com in order that a mail sent randomly to test...@mydomain.com be redirect to test...@appid.appspotmail.com automatically. On 14 out, 00:17, Rodrigo Moraes wrote: > On Tue, Oct 13, 2009 at 11:00 PM, Neves wrote: > > I

[google-appengine] Re: Receiving Email within custom domain

2009-10-13 Thread Rodrigo Moraes
On Tue, Oct 13, 2009 at 11:00 PM, Neves wrote: > Is it possible (or will it be possible) to receive email within my > domain? (not appspotmail.com) You can set an alias in your email service to redirect all messages to str...@appid.appspotmail.com. easy workaround. -- rodrigo --~--~-~--

[google-appengine] Incoming email : why not app...@appspot.com ?

2009-10-13 Thread Prashant
Hi I wish to receive mails at app...@appspot.com . --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appengine@googlegroups.com To unsubscribe from

[google-appengine] Re: system unstable? cron failing now

2009-10-13 Thread Prashant
then why it is happening with my code? all of my apps are running apps coded by me only and all are different. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send ema

[google-appengine] Receiving Email within custom domain

2009-10-13 Thread Neves
Is it possible (or will it be possible) to receive email within my domain? (not appspotmail.com) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-a

[google-appengine] Re: GAE production error at this moment? : Class-key is a derived property and cannot be set.

2009-10-13 Thread Rafe
Alan, I think we might have determined what was causing the problem with your application. I think you are having this problem because you overrode the __init__ method of your PolyModel in a way that we were not expecting. Please see this thread: http://groups.google.com/group/google-

[google-appengine] Change in parameters to Model.__init__ may cause errors when overridden.

2009-10-13 Thread Rafe
Because of our new software release, there are a few applications that might be experiencing problems where they have overridden Model.__init__ or any of its sub-classes. The problem is most likely because of the way these sub-classes have been handing the _app and _from_entity parameters. The

[google-appengine] Upload error from Google Eclipse Plugin

2009-10-13 Thread Scott Morgan
Hi, I am having a issue uploading my app 8:00-8:16 PM CST today. Eclipse says; java.io.IOException: Error posting to URL: http://appengine.google.com/api/datastore/cron/update?app_id=adligo-org-demo&version=v2-4-8&; 500 Internal Server Error Server Error (500) A server error has occurred.

[google-appengine] Re: AttributeError: 'Key' object has no attribute '_str'

2009-10-13 Thread RollingCircle
At the moment, even a quick "Whoops - we're on the case" sticky thread on the forum from the Google team would be a comfort. We've all had deployments which didn't go as smoothly as we'd hoped, but when they don't, communication with affected parties is vital. Otherwise, we're left to assume th

[google-appengine] Re: Is there a different way to upload Web App ?

2009-10-13 Thread Janne
Have you used a/the proxy before? Are you able to use your proxy with a web-browser (to see if everything works as you expect / to know what to expect)? Is the port correct? Is your computer's firewall blocking the appcfg? Can you try the update with an other internet connection (with an other

[google-appengine] Re: system unstable? cron failing now

2009-10-13 Thread ajalsen
Error still continues now. I found this error is app-id specific. It means installing same code into different app-ids, one app-id cause this error continuously, but others not. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[google-appengine] Re: Broadcasting real-time notifications using XMPP - possible?

2009-10-13 Thread Kris
Hi Nick, Interesting idea - I'd not really looked at PubSubHubbub before. Sadly I don't think it's the right fit for this project - they're desktop apps, and they're often behind a firewall, so getting an external server to initiate a connection isn't going to be practical. So back to XMPP, ther

[google-appengine] Re: AttributeError: 'Key' object has no attribute '_str'

2009-10-13 Thread jonathan
I would have to imagine, that Google intends to have a reliable service here and that the release of 1.2.6 has been problematic. I would like to push for a review of this release once it is finished. There have been many problems caused to applications, that as you say is completely unexpected and

[google-appengine] KindError with Cron, works on development and DataViewer

2009-10-13 Thread Chris S
I'm trying to use a cron job to delete all of one Kind. It works fine on the development server, and I can even query via the DataViewer but I get a Kind error when I run live. Here's what I have: Located in my /init/default: from google.appengine.ext import db as gdb def cleanup(): q=gdb

[google-appengine] Re: Managing Very Large one to many relationships

2009-10-13 Thread Kevin Pierce
Some ideas, You may need to avoid using an entity group with that many records if you are concerned about contention. I would suggest generating key_names from your logical primary_key fields. Also understand how you could leverage a list property style model for filtering. Your children can ha

[google-appengine] Re: Indexes building for 3 days

2009-10-13 Thread visadm543
The indexes now stuck are not the same as the ones that were stuck before. They are new indexes. The original set of indexes are currently serving correctly. On Oct 13, 11:05 am, "Jeff S (Google)" wrote: > Interesting. I don't recall the old indexes which were stuck, are the ones > that are no

[google-appengine] Re: Managing Very Large one to many relationships

2009-10-13 Thread Benjamin
anyone have a recomendation on the best way to store millions of child objects in data nuclues and maintain their relationship to a single persistant parent? On Oct 8, 10:21 am, Benjamin wrote: > sorry for the dup post > > I'm trying to find guidence on managing one to many releationships in > t

[google-appengine] Re: The development environment datastore is so slow

2009-10-13 Thread Gary Orser
I have a couple of patches to to 1.25, which will work around this problem. The real problem is that the current implementation writes the entire datastore to disk, after each put, delete, or transaction. One tradeoff you can make is, "not" to guarrantee the transactions, by persisting to disk

[google-appengine] Re: AttributeError: 'Key' object has no attribute '_str'

2009-10-13 Thread johnP
Rodrigo, Thanks for the response - I have replaced the module with one that builds the tables dynamically - But as we were discussing internally this morning: are we dealing with a Tactical or a Strategic issue, here. The fact that we can have the carpet pulled out from under us at any moment,

[google-appengine] Re: AttributeError: 'Key' object has no attribute '_str'

2009-10-13 Thread Rodrigo Moraes
On Tue, Oct 13, 2009 at 1:56 PM, johnP wrote: > OK, folks.  Please let me know what to do in the contingency where I > have an application that is functioning; have paying customers; then > after a change on Google's side - it stops functioning; and when I try > to contact people at Google, I get

[google-appengine] Re: Indexes building for 3 days

2009-10-13 Thread Jeff S (Google)
Interesting. I don't recall the old indexes which were stuck, are the ones that are now stuck the same ones? I'm investigating this in greater depth. Thank you, Jeff On Tue, Oct 13, 2009 at 9:53 AM, visadm543 wrote: > > Thanks. I vacuumed and updated the indexes. It worked this time, but > n

[google-appengine] Re: GAE Quercus drupal .inc extension problem

2009-10-13 Thread ibrahim
Any suggestions? do you think GAE support relative path? if no is there any tip to avoid hacking the drupal huge core Thanks for help On 13 oct, 17:14, Prashant wrote: > it seems like a path problem. replace the path with the one relative to > server. there some methods to that but i don't exa

[google-appengine] Re: system unstable? cron failing now

2009-10-13 Thread Prashant
cron started failing again ! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appengine@googlegroups.com To unsubscribe from this group, send email

[google-appengine] Re: workaround for iterating through more than 1000 rows query in datastore

2009-10-13 Thread William Montgomery
Hey Jon, This is a pretty common requirement/question, the standard way is to page out the entities you need in blocks of 1000. This is done by fetching 1000 and keeping a 'bookmark' entity (which is the last entity fetched). Then modifying to fetch the next 1000 entities with a key larger than the

[google-appengine] Re: Cannot add more apps to account

2009-10-13 Thread Cynthia Kurtz
As an update, this page: http://code.google.com/appengine/docs/theadminconsole.html says "If you are using App Engine with your Google Apps account, you can sign in to App Engine for your domain using a URL similar to the following, where your-domain.com is your Google Apps domain: https://appe

[google-appengine] Re: GAE Quercus drupal .inc extension problem

2009-10-13 Thread Prashant
it seems like a path problem. replace the path with the one relative to server. there some methods to that but i don't exactly remember them... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group

[google-appengine] Re: system unstable? cron failing now

2009-10-13 Thread Prashant
noticed same problem with my app but it seems to working normal now --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appengine@googlegroups.com

[google-appengine] Cron job suffering from intermittent timeouts since approx 21:00 UTC 12-OCT-09

2009-10-13 Thread RollingCircle
(Apologies if this appears to be a cross-posting - I did raise this as a reply to a post describing a similar issue, but that reply seems to have disappeared into the ether) Since approx 21:00 UTC yesterday (12-OCT-09) my application (tag 'metutil') has been suffering from roughly 75% timeouts on

[google-appengine] Re: Need more info: Request was aborted after waiting too long...

2009-10-13 Thread RollingCircle
Hi, I can't offer a solution, only to add that one of my apps has suddenly started reporting this error, but only in response to requests generated from a cron job - when running the same request directly, it completes without error. In my case, the app is 'metutil', python runtime, and this sta

[google-appengine] GAE Quercus drupal .inc extension problem

2009-10-13 Thread ibrahim
Hi all I have successfully installed drupal on my local GAE SDK using quercus and jiql i use Gaevfs for module and file storage . My problems started wen i deployed the application on GAE i had this error http://bit.ly/KCZyx is it an ".inc" extension or a path problem Thanks for help --~--~-

[google-appengine] workaround for iterating through more than 1000 rows query in datastore

2009-10-13 Thread jonbbbb
Hi, I have been reading about the datastore, and as I understand you can only retrive the first 1000 rows in a query. I am just wondering if it is possible to do this with the datastore, or if there is a common way to design around this. For example I am thinking about a list of subscribers for

[google-appengine] Using a single application for multiple domains

2009-10-13 Thread lordjoe
I have a number of small and fairly static domains that I would like to host with a single app using a servlet to stear requests do different content based on the calling url. I have the first domain going and the second mapped to google but need some details about mapping it to the specific appli

[google-appengine] AttributeError: 'Query' object has no attribute '_cursor'

2009-10-13 Thread moowoo
Query' object has no attribute '_cursor' Traceback (most recent call last): File "/base/python_lib/versions/1/google/appengine/ext/webapp/ __init__.py", line 507, in __call__ handler.get(*groups) File "/base/data/home/apps/x-focus/3.336401431551250684/blog.py", line 102, in get 'too_ma

[google-appengine] system unstable? cron failing now

2009-10-13 Thread ajalsen
Hi About 70% to 80% of cron job encoutering following error now. "Request was aborted after waiting too long to attempt to service your request. Most likely, this indicates that you have reached your simultaneous active request limit. This is almost always due to excessively high latency in your

[google-appengine] Re: What changed? Site is completely down.

2009-10-13 Thread moowoo
I got another error: 'Query' object has no attribute '_cursor' and my app id is x-focus On Oct 13, 6:49 am, Jon McAlister wrote: > It's an issue in the 1.2.6 release we're pushing out to the backends > today. If you tell me your app id (off-list is ok) I can move your app > to a 1.2.5 appserver

[google-appengine] https: (SSL) remapping

2009-10-13 Thread GAEfan
Is there a simple way (say via app.yaml or urls.py) to automatically map all secure views to https://myapp.appspot.com/... and non-secure to www.myurl.com, or must we switch all relative paths to absolute, so that we force each secure view to the appspot URL, and the others to our www.myurl.com UR

[google-appengine] Re: AttributeError: 'Key' object has no attribute '_str'

2009-10-13 Thread johnP
OK, folks. Please let me know what to do in the contingency where I have an application that is functioning; have paying customers; then after a change on Google's side - it stops functioning; and when I try to contact people at Google, I get radio silence? johnP On Oct 13, 8:19 am, johnP wr

[google-appengine] Re: Indexes building for 3 days

2009-10-13 Thread visadm543
Thanks. I vacuumed and updated the indexes. It worked this time, but now 16 new indexes are stuck building. If these 16 indexes are a problem, I can modify the application not to use them. On Oct 12, 10:38 am, "Jeff S (Google)" wrote: > Apologies, I've move these indexes to the error state, s

[google-appengine] Re: Need more info: Request was aborted after waiting too long...

2009-10-13 Thread dflorey
Hi, I get these errors on many domains (mapped or appspot domains). I get these errors on apps restricted to a particular Google Apps domain and when using a public accessible app. It looks as if the number of errors have been increased dramatically since today. I get these errors even if no reque

[google-appengine] Re: Need more info: Request was aborted after waiting too long...

2009-10-13 Thread GAEfan
Daniel: Do you have www.xyz.com mapping, or are you just using xyz.appspot.com? If you expand the error messages, are they all to the xyz.appspot.com mapping? Mine are, even though I use www.xyz.com: 0.1.0.1 - - [13/Oct/2009:08:18:56 -0700] "GET /myview HTTP/1.1" 500 0 - - "xyz.appspot.com

[google-appengine] Re: Need more info: Request was aborted after waiting too long...

2009-10-13 Thread GAEfan
I have the same errors. Seems they started when I added taskqueue and cron jobs. If I have 20 cron jobs trying to act simultaneously, would that trigger this error? If so, how can I stagger them? --~--~-~--~~~---~--~~ You received this message because you are sub

[google-appengine] Re: AttributeError: 'Key' object has no attribute '_str'

2009-10-13 Thread johnP
Pickled KEY objects. Any suggestions? On Oct 13, 8:17 am, johnP wrote: > This did not help.  Many of my views reference a directory that > contains a list of pickled objects. > > What should i do now... > > johnP > > On Oct 13, 7:45 am, Mahmoud wrote: > > > Yup. I found this out empirically y

[google-appengine] Re: AttributeError: 'Key' object has no attribute '_str'

2009-10-13 Thread johnP
This did not help. Many of my views reference a directory that contains a list of pickled objects. What should i do now... johnP On Oct 13, 7:45 am, Mahmoud wrote: > Yup. I found this out empirically yesterday. Clearing memcache will > solve it. > > On Oct 13, 10:42 am, "Nick Johnson (Goog

[google-appengine] Re: How To Unlock Locked iPod

2009-10-13 Thread Prashant
gae can't do that ! 2009/10/13 Forum > * How To Unlock Locked iPod > http://bit.ly/hddpp http://bit.ly/hddpp How To Unlock Locked iPod *** > > > > > > --~--~-~--~~~---~--~~ You received this message because you are sub

[google-appengine] Re: urlfetch.fetch() don't get the same result

2009-10-13 Thread Nick Johnson (Google)
Hi, GET requests do not have bodies (payloads). You need to include the parameters in the URL, just like you did in the sample URL. -Nick Johnson On Fri, Oct 9, 2009 at 8:22 AM, mijenix wrote: > > Hi > > This works without any problems http://www.google.ch/search?q=test > > But why this gives m

[google-appengine] Re: AttributeError: 'Key' object has no attribute '_str'

2009-10-13 Thread Mahmoud
Yup. I found this out empirically yesterday. Clearing memcache will solve it. On Oct 13, 10:42 am, "Nick Johnson (Google)" wrote: > Hi johnP, > The quick and easy solution is to clear your app's memcache. > > -Nick Johnson > > > > > > On Tue, Oct 13, 2009 at 3:36 PM, johnP wrote: > > > This bug

[google-appengine] Re: AttributeError: 'Key' object has no attribute '_str'

2009-10-13 Thread Nick Johnson (Google)
Hi johnP, The quick and easy solution is to clear your app's memcache. -Nick Johnson On Tue, Oct 13, 2009 at 3:36 PM, johnP wrote: > > This bug is continuing in full-force for me this morning, and has > taken my application offline. > > johnP > > > > On Oct 12, 4:19 pm, Taylor Hughes wrote: >

[google-appengine] Re: AttributeError: 'Key' object has no attribute '_str'

2009-10-13 Thread johnP
This bug is continuing in full-force for me this morning, and has taken my application offline. johnP On Oct 12, 4:19 pm, Taylor Hughes wrote: > Thanks! > > On Oct 12, 4:10 pm, Jon McAlister wrote: > > > Moved dnzo. > > > On Mon, Oct 12, 2009 at 4:03 PM, Taylor Hughes wrote: > > > > My app

[google-appengine] Re: warm instances on low traffic sites

2009-10-13 Thread bFlood
bump... On Oct 12, 12:25 pm, "twink*" wrote: > Add my name to the list of people that would consider paying to always > keep at least one instance warm. > > On Oct 12, 8:43 am, bFlood wrote: > > > > > hello > > > I noticed in the Oct 7 chat that Google is considering(?) allowing > > developers

[google-appengine] Re: something about yourube api (upload)

2009-10-13 Thread Nick Johnson (Google)
Hi, This is a group for questions about Google App Engine, not Youtube. You'll probably have more luck finding a group dedicated to the Youtube API. -Nick Johnson On Sat, Oct 10, 2009 at 5:06 AM, Nsource wrote: > > hello everyone, i'm new. > > i neet to upload a video to youtube with youtube ap

[google-appengine] Re: re-use phone number for SMS?

2009-10-13 Thread Nick Johnson (Google)
Hi kiren, Let us know both emails involved and we'll activate the second account for you. -Nick Johnson On Mon, Oct 12, 2009 at 9:36 PM, kiren wrote: > > Hello, > > I have an app engine account for personal use. Now I want to create a > new account for my company. However, when I try to verif

[google-appengine] How To Unlock Locked iPod

2009-10-13 Thread Forum
How To Unlock Locked iPod http://bit.ly/hddpp http://bit.ly/hddpp How To Unlock Locked iPod    --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to googl

[google-appengine] Re: Copy a Document in GAE

2009-10-13 Thread Nick Johnson (Google)
Hi Joe, This is probably better asked on the GData or Apps groups - it's not directly related to App Engine. -Nick Johnson On Tue, Oct 13, 2009 at 1:21 AM, codingJoe wrote: > > Can anyone provide a step by step or point me in the direction on how > to do this? > > In my GAE I want to programati

[google-appengine] Re: Broadcasting real-time notifications using XMPP - possible?

2009-10-13 Thread Nick Johnson (Google)
Hi Kris, Have you considered using PubSubHubbub? If your 'clients' are other servers, this is exactly what it's designed for. If your clients are, eg, desktop apps, the XMPP solution is probably a good one, though realistically you probably want each client to have a separate account, and notify th

[google-appengine] Re: Heavy vs. Light entities

2009-10-13 Thread Nick Johnson (Google)
Hi Shailen, On Sun, Oct 11, 2009 at 4:09 PM, Shailen wrote: > > Consider 2 classes: > > class Light(db.Model): > location = db.StringProperty() > > class Heavy(db.Model): > location = db.StringProperty() > content = db.TextProperty() > image1 = db.BlobProperty() > image2 = db.BLobProperty()

[google-appengine] Re: Is there a different way to upload Web App ?

2009-10-13 Thread assane mbengue
Thank you for your help. It still fails to connect, with this (long) ) message below : *D:\usr\mbengue\Bureau\workspace>appengine-java-sdk-1.2.5\bin\appcfg.cmd > --proxy= > proxy.enst-bretagne.fr update assaneonwave\war > 13 oct. 2009 11:00:25 java.util.prefs.WindowsPreferences > ATTENTION: Could

[google-appengine] Need more info: Request was aborted after waiting too long...

2009-10-13 Thread dflorey
Hi, I get this error from time to time on my application: "Request was aborted after waiting too long to attempt to service your request. Most likely, this indicates that you have reached your simultaneous active request limit." I am using the task queue to run longer lasting tasks (checking the

[google-appengine] Re: GAE production error at this moment? : Class-key is a derived property and cannot be set.

2009-10-13 Thread Alan Xing
We nailed down the problem to a third party package called 'appenginepatch' we use. This 'appenginepatch' seems not compatible with some GAE backend updates deployed on yesterday(Monday) afternoon. If any one of you has good patch solution on 'appenginepatch', could you please help share? Note: We