[google-appengine] High failure rate with MapReduce/pipeline api with >100K entities

2011-05-24 Thread Bing
When I run data queries with >100K entities using pipeline/MR api, the failure rate is high. I saw some tasks retried for dozens of times in the task queue , and thus the job failed to compute the result. Nearly one run in five sees such a failure with 1M entities. Is this common? What is the poten

Re: [google-appengine] Application Error: 5 when calling WordPress via xmlrpclib

2011-05-24 Thread Robert Kluin
The default is 5 seconds, but you can set it up to 10 minutes in a task. Robert On May 25, 2011 12:54 AM, "Emlyn" wrote: > What I am experiencing via xmlrpclib is 5 seconds, in a task. > > On 25 May 2011 14:15, Robert Kluin wrote: > >> I think the 10 second deadline is only for 'online' (aka use

Re: [google-appengine] Re: Poor performance since the past 2-3 days

2011-05-24 Thread Gregory D'alesandre
Hey All, I'm currently looking into whether there is something going on that could be causing this. I'll keep you posted if we find anything. Thanks! Greg D'Alesandre Senior Product Manager, Google App Engine On Tue, May 24, 2011 at 9:00 PM, Robert Kluin wrote: > One thing that might help peop

Re: [google-appengine] data Join using MapReduce/pipeline api

2011-05-24 Thread Bing Wei
Thanks, Brett. I am still confused about the join process. I append the results of two maps together, but get exceptions when I run the Shuffler. The result of a map is a list. But the two map results have different length. Let's say the length of the first map result is 3, the length of the secon

Re: [google-appengine] Re: CMS for GAE

2011-05-24 Thread Jeff Schnitzer
On Mon, May 23, 2011 at 11:17 AM, Brandon Wirtz wrote: > That's more deployed, not "spoken".  Every Blogger and IT guy on the planet > can hack together a PHP Plugin for their CMS.  Very Few can do that in > Python or Java. ...and even fewer can do it in Ruby or C#. Truly, PHP is in a class by i

Re: [google-appengine] Application Error: 5 when calling WordPress via xmlrpclib

2011-05-24 Thread Emlyn
What I am experiencing via xmlrpclib is 5 seconds, in a task. On 25 May 2011 14:15, Robert Kluin wrote: > I think the 10 second deadline is only for 'online' (aka user) > requests, in tasks it is 10 *minutes* isn't it? > > > http://code.google.com/appengine/docs/python/urlfetch/overview.html#Req

Re: [google-appengine] Re: CMS for GAE

2011-05-24 Thread ego008
what about gae-django-cms.appspot.com? code http://code.google.com/p/gae-django-cms/ -- GAE BBS http://gae-bbs.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-

Re: [google-appengine] Importing C-extension or built-in module

2011-05-24 Thread Robert Kluin
No. Not at the moment. http://code.google.com/appengine/docs/python/runtime.html#The_Sandbox Robert On Sat, May 21, 2011 at 06:35, anonymous wrote: > Hi, > > I installed (via pip) a package in my system that needs to be > compiled. Then I create a symlink inside my GAE app folder to that >

Re: [google-appengine] Application Error: 5 when calling WordPress via xmlrpclib

2011-05-24 Thread Robert Kluin
I think the 10 second deadline is only for 'online' (aka user) requests, in tasks it is 10 *minutes* isn't it? http://code.google.com/appengine/docs/python/urlfetch/overview.html#Requests Robert On Wed, May 25, 2011 at 00:41, Emlyn wrote: > Gah, really, is that the only way? I'd really, r

Re: [google-appengine] InvalidAttachmentTypeError: why ??

2011-05-24 Thread Robert Kluin
You might find the following list useful: http://code.google.com/appengine/docs/python/mail/overview.html#Attachments You might also check the issue tracker and see if there is an issue to accept more mime-types. Robert On Sat, May 21, 2011 at 10:23, Kenneth Duda wrote: > I am trying to

Re: [google-appengine] Application Error: 5 when calling WordPress via xmlrpclib

2011-05-24 Thread Emlyn
Gah, really, is that the only way? I'd really, really like to not have to have a proxy sitting somewhere else doing the heavy lifting (well, the heavy waiting really). On 25 May 2011 14:02, Brandon Wirtz wrote: > URL Fetch is good for 10 seconds. WP often is not that fast. Likely you > will ne

RE: [google-appengine] Application Error: 5 when calling WordPress via xmlrpclib

2011-05-24 Thread Brandon Wirtz
URL Fetch is good for 10 seconds. WP often is not that fast. Likely you will need to write a PHP Proxy that excepts Post requests and use it to forward to the XMLRPC receiver on Wordpress, that way you can send the data and have PHP do the waiting. (that's assuming you are adding not querying).

Re: [google-appengine] Application Error: 5 when calling WordPress via xmlrpclib

2011-05-24 Thread Robert Kluin
Hi Emlyn, You'll be subject to the same RPC limits. Two solutions for increasing the deadline: 1) use a pre-call hook to set a longer deadline on the URL Fetch RPC, 2) modify the lib you're using to directly use URL Fetch and bump up the deadline. Robert On Wed, May 25, 2011 at 00:29,

Re: [google-appengine] Re: 500 Server Error

2011-05-24 Thread Robert Kluin
http://code.google.com/appengine/docs/python/tools/devserver.html On Tue, May 24, 2011 at 06:54, lacus...@hotmail.com wrote: > how to user dev_appserver.py? > > On 5月24日, 下午3時45分, Sarang wrote: >> This is not a Google App Engine error. Expand one of the error messages to >> see where it is

Re: [google-appengine] Application Error: 5 when calling WordPress via xmlrpclib

2011-05-24 Thread Emlyn
It's already in a task. Also, I'm not directly using urlfetch; I'm using pyblog.py which uses xmlrpclib which I guess ultimately uses urlfetch, so I can't set the deadline directly (although there do seem to be timeout mechanisms, they just don't work past 5 seconds as GAE cuts the call off). One

Re: [google-appengine] Simple query times out repeatedly for hours!

2011-05-24 Thread Robert Kluin
Hi Waleed, Are you deleting lots of entities or changing values in some way? Does this only happen when the query uses a cursor passed in from a previous task? When it is happening, if you goto the Datastore Viewer in the dashboard can you run that query? Robert On Tue, May 17, 2011 at

Re: [google-appengine] Still confused about Storage reported for billing and Datastore

2011-05-24 Thread Robert Kluin
Yeah, I really wish there was better visibility into what's using storage space, particular indexes since that impacts performance. Do you use tasks or blobstore for anything? Stored 'tasks bytes' count against the Storage Quota too, and it doesn't reset as rapidly as the task-count does last ti

Re: [google-appengine] Application Error: 5 when calling WordPress via xmlrpclib

2011-05-24 Thread Robert Kluin
Hi Emlyn, You could move the request to a task, then increase the deadline. That would probably be the easiest solution. http://code.google.com/appengine/docs/python/urlfetch/fetchfunction.html Robert On Tue, May 17, 2011 at 09:13, Emlyn wrote: > Hi, > > I'm struggling with talking t

RE: [google-appengine] Any Good Mechanism for detecting Approaching and Over Quota?

2011-05-24 Thread Brandon Wirtz
The introduction was made. I believe I'm on the waiting list. -Brandon -Original Message- From: google-appengine@googlegroups.com [mailto:google-appengine@googlegroups.com] On Behalf Of Robert Kluin Sent: Tuesday, May 24, 2011 8:32 PM To: google-appengine@googlegroups.com Cc: Brandon Wirt

RE: [google-appengine] Still confused about Storage reported for billing and Datastore

2011-05-24 Thread Brandon Wirtz
I did that. I thought since there was still a discrepancy I'd switch to non-indexed types, in case it was a bug. My use case is "Put something" "Get By Key" "Update something" So I want it to not have any indexes. -Brandon -Original Message- From: google-appengine@googlegroups.com [ma

Re: [google-appengine] Reporting Engine and UML Modelling Tools for GAE?

2011-05-24 Thread Robert Kluin
If you think of and model your datastore like you would model 'in-code' classes and objects you'll probably be better off. I'd suggest avoiding any relational db modeling tools, since they'll probably encourage you to think in terms of concepts like joins. Robert On Wed, May 18, 2011 at 12

Re: [google-appengine] All error in Datastore Indexes and can't fix

2011-05-24 Thread Robert Kluin
Submit a production issue: http://code.google.com/p/googleappengine/issues/entry?template=Production%20issue On Wed, May 18, 2011 at 00:28, purpose life wrote: > Hi: > thank u so much for assistance. > my account is lifepurpos...@gmail.com. > the error app account is hshyorg.appspot.com > >

Re: [google-appengine] Any Good Mechanism for detecting Approaching and Over Quota?

2011-05-24 Thread Robert Kluin
Hey Brandon, You might ping who ever your favorite Google dev-rel person is an ask about getting into the Monitoring API TT group. See the IO app engine production talk (~45 minute mark) for some info about it. http://www.google.com/events/io/2011/sessions/life-in-app-engine-production.html

Re: [google-appengine] Re: Help in uploading a file from Widows Mobile 6.5 device to GAE blobstore

2011-05-24 Thread Robert Kluin
Hi Chimbu, I've not actually tried uploading to the blobstore using C#, but I've uploaded files to my own handlers. I'd suggest you use some type of proxy and watch the requests. Personally I might upload some small text file via a browser, then try uploading the same file from the C# code. Th

Re: [google-appengine] Error in upload java web application error message This application does not exist (app_id=u'xxxxxxx')

2011-05-24 Thread Robert Kluin
Did you register the appid at appspot.com? On Fri, May 20, 2011 at 09:04, SOHRAB HOSSAIN wrote: > I have just created an sample java webapplication intended for Google > Application Engine. The application runs correctly in my local machine > but using the eclipse plugin I failed to uplo

[google-appengine] Re: Why did my appcfg.py command fail after upgrade from 1.4.3 to 1.5.0?

2011-05-24 Thread Matthew Blain
I cannot reproduce this but could see what may be happening. What is new in 1.5.0 is that we try to autodetect the appid in more cases, what exact command line were you useing? If you change remote_api_stub.py, line 502 from this: if app_info['rtok'] != remote_token: to this: if str(app_info['rto

Re: RE: [google-appengine] Generating static html files

2011-05-24 Thread Robert Kluin
I might also suggest using a 'materialized' view. Store the computed values in a datastore entity that you can fetch by key-name (perhaps using the day as the key-name). You can easily extend this logic for weeks, months, and years. Even if you only store each day's stats as an entity fetching a

Re: [google-appengine] Still confused about Storage reported for billing and Datastore

2011-05-24 Thread Robert Kluin
Yeah index stats should really be shown somewhere. This is a very common, confusing, and opaque issue. If you have not already, the issue to star is 2740. http://code.google.com/p/googleappengine/issues/detail?id=2740 If you've got a lot of data having to map over it all and re-put each entity to

Re: [google-appengine] 400 Bad Request Deleting a composite index failed: ApplicationError: 1

2011-05-24 Thread Chen Jung-Chang
Here. http://code.google.com/p/googleappengine/issues/detail?id=5076&q=datastore%20index&colspec=ID%20Type%20Component%20Status%20Stars%20Summary%20Language%20Priority%20Owner%20Log 2011/5/25 Robert Kluin > Try submitting a production issue: > > http://code.google.com/p/googleappengine/issues/en

RE: [google-appengine] Re: How to get an app banned?

2011-05-24 Thread Brandon Wirtz
Are we sure Ikai works at Google? I mean the adsense and search team seem to delist you, kick you out of adsense and then send you a message saying "You are banished" 3 weeks later when you get a hold of them they say. "Oh we're sorry about that apparently you had a swear word in Arabic on your si

Re: [google-appengine] Re: What do you want to see answered in Greg's pricing FAQ?

2011-05-24 Thread Gregory D'alesandre
I'm still monitoring and working on getting more complete answers to the questions raised, thanks for the pointer though! Greg On Tue, May 24, 2011 at 5:53 PM, Marc Hede wrote: > If anyone is still monitoring this topic, and interested in asking > questions about Python concurrency on App Engin

Re: [google-appengine] Problem when deploy Java application

2011-05-24 Thread Robert Kluin
Have you checked to see which indexes are in error state? Did you try vacuuming your indexes? Robert On Sun, May 22, 2011 at 15:49, Ivan Samuel wrote: > I am experiencing problems when I deploy Java Application using plugin > eclipse. It looks like it´s a problem when create index. Can s

[google-appengine] Re: How to get an app banned?

2011-05-24 Thread nickmilon
@Ikai +1 "I'm glad this process is in place, but I'd rather let 10 abuse apps sit around longer than they should than avoid shutting down a legitimate user." Nick Milon On May 24, 4:54 am, "Ikai Lan (Google)" wrote: > Ben, > > I understand your frustrations, but do realize that shutting a user d

Re: [google-appengine] The phone number has been sent too many messages or has already been used to confirm an account

2011-05-24 Thread Robert Kluin
See the SMS FAQ: http://code.google.com/appengine/kb/sms.html#error On Fri, May 20, 2011 at 07:41, jschlier wrote: > Hi, > when I want to create a new application, I havo to type in a mobile > phone number for SMS confirmation. After doing this the error message > "The phone number has been

Re: [google-appengine] 400 Bad Request Deleting a composite index failed: ApplicationError: 1

2011-05-24 Thread Robert Kluin
Try submitting a production issue: http://code.google.com/p/googleappengine/issues/entry?template=Production%20issue On Wed, May 18, 2011 at 14:41, guarr...@gmail.com wrote: > Having issues vacuuming the indexes that are marked in error in my > application dashboard. > > After receiving an

Re: [google-appengine] Understanding Security

2011-05-24 Thread Eric Kolotyluk
OK, I finally got around to trying this. Works like a charm. Thanks for such a simple fix to my problem Cheers, Eric On 2011-05-14 10:15 AM, Erick Fleming wrote: Actually I was wrong I on the last point. If you use appengine_web.xml [1] to configure your static files as "excluded" then appen

Re: [google-appengine] Re: Simple query times out repeatedly for hours!

2011-05-24 Thread Waleed Abdulla
Thanks Francois. I'm using Python, though. I'm also letting the exception propagate up so that the task fails and is retried. I don't know if the retries are hitting the same instance or not. If they are, then maybe the instance is broken somehow. I don't know what else I can do on my side. And I'm

Re: [google-appengine] Re: Poor performance since the past 2-3 days

2011-05-24 Thread Robert Kluin
One thing that might help people offer suggestions is to include the whole 'log header', ie the part that lists the latency, cpu ms, api ms, loading request indicator, etc If possible you might also include log entries from before the problem started too (preferably for the same request). Are

[google-appengine] Re: Backend don't shutdown

2011-05-24 Thread Justin Haugh
Hey Timofey, what's your app_id and backend name? I'll take a look at the logs and see if I can verify this. Thanks, Justin -- 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@googlegrou

[google-appengine] Re: Simple query times out repeatedly for hours!

2011-05-24 Thread Francois Masurel
Hi Waleed, It might be related to the strange bug described in this thread : https://groups.google.com/d/topic/google-appengine-java/6tnyfJLBIXM/discussion When hit, all API calls fail with timeouts until the instance is restarted. Francois -- You received this message because you are subscri

Re: [google-appengine] data Join using MapReduce/pipeline api

2011-05-24 Thread Brett Slatkin
On Mon, May 23, 2011 at 2:06 PM, Bing wrote: > > In the google io talk, data join is implemented by Append method. But > it seems the Append method is only to append lists together. Is that > Append method just a high-level concept or is there an implementation? > > Also, join can be implemented b

[google-appengine] High cpu_ms since the past 5 days

2011-05-24 Thread Felippe Bueno
Definitely there is a strange behaviour on cpu_ms. Few days ago we start seeing a lot if request with cpu_ms ~2000ms. We mostly do re.search, read/write to memcache, and read datastore (no HR). After decreasing about 10% of re.search we were able to see that the cpu_ms decreased dramatically (to ~

Re: [google-appengine] Transactions, M/S v. HRD

2011-05-24 Thread Robert Kluin
Hey Janne, The write-rate is a little lower and there is a slightly higher latency with many operations. Otherwise within a transaction everything is largely the same. The usage notes say "1 write per second [is the] supported limit for entity groups." In practice you might find you're able to

Re: [google-appengine] Re: FAQ for out of preview pricing changes

2011-05-24 Thread Kyle Finley
Do you think it would be beneficial to use Google Moderatorfor this? -- 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 f

[google-appengine] Re: What do you want to see answered in Greg's pricing FAQ?

2011-05-24 Thread Marc Hede
If anyone is still monitoring this topic, and interested in asking questions about Python concurrency on App Engine, please see this topic here: http://code.google.com/appengine/forum/python-forum.html?place=topic%2Fgoogle-appengine-python%2F85EcIif5vNQ%2Fdiscussion This may also benefit Java dev

Re: [google-appengine] Re: FAQ for out of preview pricing changes

2011-05-24 Thread Marc Hede
Hello Greg, For all of those interested in the future of Python on App Engine, there has been a thread started on this topic. See here: http://code.google.com/appengine/forum/python-forum.html?place=topic%2Fgoogle-appengine-python%2F85EcIif5vNQ%2Fdiscussion This is mainly python specific, but

Re: [google-appengine] UserService.createLoginURL() - attributes format

2011-05-24 Thread Robert Kluin
Hi Morgan, If you're asking about attribute exchange, federated login doesn't currently support it: http://code.google.com/appengine/docs/java/users/overview.html#Authentication_Options Robert On Fri, May 13, 2011 at 10:03, Morgan wrote: > Hi, > > I would like to know the format of

Re: [google-appengine] app using excessive storage

2011-05-24 Thread Ikai Lan (Google)
So this technically would work in reducing total size, but I haven't heard of this resulting in significant cost reductions for people. The indexes are stored as protocol buffers, so they're fairly space efficient ( http://code.google.com/apis/protocolbuffers/docs/overview.html). A better strategy

Re: [google-appengine] Error: Server Error

2011-05-24 Thread Robert Kluin
Hi Jonathan, Try checking your app's logs in the dashboard, you might find more information there. Robert On Tue, May 10, 2011 at 15:29, Jonathan wrote: > The following error message is showing up when trying to activate my my last > version http://540.reimbu-poland.appspot.com/ : > > E

Re: [google-appengine] Server Error(500) when trying to view the Datastore Viewer

2011-05-24 Thread Robert Kluin
Sounds like you deleted lots of data; after you delete lots of data you'll sometimes see this behavior for a period of time. This occurs because the datastore uses soft-deletes, you can search the groups for more explanation. On Sun, May 8, 2011 at 20:02, poopoo88 wrote: > I've failed t

[google-appengine] Transactions, M/S v. HRD

2011-05-24 Thread Janne Savukoski
Heyo, Are there any differences between Master/Slave and High Replication regarding transactions? Are the transaction limits the same? (Is the limit still 4/sec/group or so?) Can I expect any differences in the rate of TransactionFailedErrors? I thought of asking this before relying on testing on

[google-appengine] Re: Poor performance since the past 2-3 days

2011-05-24 Thread Mars
I'm seeing a lot of DeadlineExceededError on random import for my app as well for the last couple of days. Wondering if it's a GAE issue? On May 24, 9:41 am, Brandon Thomson wrote: > Here is some example logging output, it usually hits DeadlineExceeded on > some random import statement: > > 2011-

Re: RE: RE: RE: RE: [google-appengine] Poor performance since the past 2-3 days

2011-05-24 Thread Brandon Thomson
Here is some example logging output, it usually hits DeadlineExceeded on some random import statement: 2011-05-24 09:16:23.034 / 500 488641ms 910cpu_ms 0kb Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.68 Safari/534.24,gzip(gfe),gzip(gfe),gzip(gfe) E

Re: RE: RE: RE: RE: [google-appengine] Poor performance since the past 2-3 days

2011-05-24 Thread Brandon Thomson
Seeing this problem on my master/slave app intermittently too. -- 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 to google-app

Re: [google-appengine] Re: Price comparison between GAE, EC2 & Azure

2011-05-24 Thread Anders
That's why I wrote: Of course, the raw computing, storage and communication cost probably only is a fraction of the overall GAE cost, but as the platform matures, then the service cost for that too will go down. So even the cost for the things not directly related to computing power would also

Re: [google-appengine] app using excessive storage

2011-05-24 Thread Barry Hunter
On 24 May 2011 15:06, Richard Baron Penman wrote: > I want to fit the datastore into 1GB because this app is for another client > who isn't expecting to need billing enabled. > Is there documentation about these default indices? http://code.google.com/appengine/docs/python/datastore/propertyclass

Re: [google-appengine] Re: Price comparison between GAE, EC2 & Azure

2011-05-24 Thread Jay Young
There are a lot of costs that go into a service like this that have nothing to do with the cost of the machines in use: the cost of power, the salaries/benefits of team members * the size of the team (which sounds like it's increasing), insurance premiums on the data centers, R&D costs, they h

Re: [google-appengine] app using excessive storage

2011-05-24 Thread Richard Baron Penman
I want to fit the datastore into 1GB because this app is for another client who isn't expecting to need billing enabled. Is there documentation about these default indices? On Tue, May 24, 2011 at 11:52 PM, Barry Hunter wrote: > Remember that every single property (well excepting blob/text) ha

Re: [google-appengine] Re: app using excessive storage

2011-05-24 Thread Richard Baron Penman
making field names shorted is an interesting idea. Is this known to work? I would have expected these kind of optimizations to be done internally. On Tue, May 24, 2011 at 11:22 PM, Francois Masurel wrote: > Hi Richard, > > Try reducing the length of your kinds and properties names. > > Even appl

Re: [google-appengine] app using excessive storage

2011-05-24 Thread Barry Hunter
Remember that every single property (well excepting blob/text) has 2 indexes - automatically, unless you explicity say that a property is to be unindexed. Then again 1.5G is only $5-6 a year, even using the high replication datastore. To reduce the storage use, could set properties to be unindexe

[google-appengine] Re: app using excessive storage

2011-05-24 Thread Francois Masurel
Hi Richard, Try reducing the length of your kinds and properties names. Even application name might have to be taken into account, not sure though. Francois -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send emai

[google-appengine] app using excessive storage

2011-05-24 Thread Plumo
hello, my app has 396MB of entities but is using 1.48GB of storage. I understand this may be because the indices add a lot of overhead. I have 1 index: category ▲ , state ▲ , title ▲ and 1 big table: title: string category: int address: string city: string state: int zip_code: string country:

[google-appengine] Re: 500 Server Error

2011-05-24 Thread lacus...@hotmail.com
how to user dev_appserver.py? On 5月24日, 下午3時45分, Sarang wrote: > This is not a Google App Engine error. Expand one of the error messages to > see where it is failing. Your code is not able to import a module it looks > like. Run your code locally using dev_appserver and debug the problem. > > Sar

[google-appengine] Re: 500 Server Error

2011-05-24 Thread lacus...@hotmail.com
dev_appserver.py how to user? On 5月24日, 下午3時45分, Sarang wrote: > This is not a Google App Engine error. Expand one of the error messages to > see where it is failing. Your code is not able to import a module it looks > like. Run your code locally using dev_appserver and debug the problem. > > Sar

Re: RE: RE: RE: RE: [google-appengine] Poor performance since the past 2-3 days

2011-05-24 Thread Sarang
Denis, thanks for the suggestion. I would like to look into all these issues, however, why is it happening only once in a while? Why is the local dev_appserver running fine w/o any issues on the exact same codebase? All that said, No issues for the past few hours!! So hopefully it was some GAE

[google-appengine] Re: How many custom domain can I point to a same application?

2011-05-24 Thread Greg
This should be unlimited - I think it's equivalent to asking how many different names you could be known by. On May 24, 5:42 am, CK Yap wrote: > I need to serve a multi-tenant application on GAE. Does anyone know if there > is a maximum number of custom domains an app in GAE can serve please? > T

Re: RE: RE: RE: RE: [google-appengine] Poor performance since the past 2-3 days

2011-05-24 Thread Denis Volokhovskiy
Hi Sarang, This definitely looks like something goes wrong with Django initialization, may be you have too much registered applications in settings.py they taking ages to initialize, Or some cyclic bug in middleware? You may want to remove all middleware /apps from settings.py and see what

Re: [google-appengine] Re: Price comparison between GAE, EC2 & Azure

2011-05-24 Thread Anders
To cover the full spectrum of usage, CPU time would have to be included. For example, applications could run algorithms for what is called bit mining to generate digital currencies such as Bitcoin: http://en.wikipedia.org/wiki/Bitcoin#Generating_bitcoins Bitcoin paper: http://www.bitcoin.org/bi

Re: [google-appengine] Re: Price comparison between GAE, EC2 & Azure

2011-05-24 Thread Anders
To cover the full spectrum of usage, CPU time would have to be included. For example, applications could run algorithms for what is call bit mining to generate digital currencies such as Bitcoin: http://en.wikipedia.org/wiki/Bitcoin#Generating_bitcoins Bitcoin paper: http://www.bitcoin.org/bitc

RE: RE: RE: RE: [google-appengine] Poor performance since the past 2-3 days

2011-05-24 Thread Brandon Wirtz
With out knowing what you are doing, I can't offer any help. It is possible you have an issue I don't, but I have lots of apps that do different things, and so far I have never had a "blame Google" problem (ok there was that one time where their sample code said a library was part of 1.5 sdk and i

Re: RE: RE: RE: [google-appengine] Poor performance since the past 2-3 days

2011-05-24 Thread Sarang
I have already seen that blog, thanks. Does not help me in this case though. The first part of the blog is talking about 1-2 seconds as a high time for response. I am talking about 100-500 second response time! The second part is pointing to a possible temporary hickup in BigTable. Sarang --

[google-appengine] Re: 500 Server Error

2011-05-24 Thread Sarang
This is not a Google App Engine error. Expand one of the error messages to see where it is failing. Your code is not able to import a module it looks like. Run your code locally using dev_appserver and debug the problem. Sarang -- You received this message because you are subscribed to the Goo

[google-appengine] Re: 500 Server Error

2011-05-24 Thread lacus...@hotmail.com
http://i291.photobucket.com/albums/ll313/yu12345/1231233.jpg On 5月24日, 上午5時13分, Rohan Chandiramani wrote: > If you check your logs at the appspot dashboard, Perhaps there is > anerrorthere that could help you further? > > On May 21, 8:58 am, "lacus...@hotmail.com" > wrote: > > > > > > > > >Erro

RE: RE: RE: [google-appengine] Poor performance since the past 2-3 days

2011-05-24 Thread Brandon Wirtz
http://blog.mfabrik.com/2011/03/11/google-app-engine-issues-with-dynamic-ins tances-and-deadlineexceedederrors/ From: google-appengine@googlegroups.com [mailto:google-appengine@googlegroups.com] On Behalf Of Sarang Sent: Tuesday, May 24, 2011 12:29 AM To: google-appengine@googlegroups.com

Re: RE: RE: [google-appengine] Poor performance since the past 2-3 days

2011-05-24 Thread Sarang
Brendon, if it was a code problem, it would be reproducible and happen all the time isn't it? This is happening every once in a while. And this is code from Django. Sarang -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this g

RE: RE: [google-appengine] Poor performance since the past 2-3 days

2011-05-24 Thread Brandon Wirtz
This error most commonly occurs when you have a near infinite loop. Are you doing a long loop or a while that could get out of control? From: google-appengine@googlegroups.com [mailto:google-appengine@googlegroups.com] On Behalf Of Sarang Sent: Monday, May 23, 2011 11:58 PM To: google-appen

Re: RE: RE: RE: [google-appengine] Poor performance since the past 2-3 days

2011-05-24 Thread Sarang
Brendon, thanks for clarifying and thanks for the help so far. I do hope someone from Google responds soon. Sarang -- 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