[google-appengine] Re: login required pages - 500 error message

2009-03-03 Thread Lubomír Kamenský
applications' error log is blank Lubomir On Wed, Mar 4, 2009 at 6:12 AM, Paul Roy wrote: > > see your applications' error log (in the admin console) to get an idea > on what the exact error is. Without knowing that, it could be a number > of things... > > > Sent from my iPhone > > On 09-03-03,

[google-appengine] Re: Query with 'IN' and Associated Index Explosion

2009-03-03 Thread ryan
On Mar 1, 2:13 pm, Andy Freeman wrote: > > However, when I do this, the dev_server creates a bunch of index > > definitions, so that I have one with 1 property if there's 1 value in > > the IN set, 15 index properties if there are 15 values in the IN set, > > and so on. > > Are all of these index

[google-appengine] Re: using keys in an IN statement

2009-03-03 Thread ryan
On Mar 3, 10:23 pm, Andy Freeman wrote: > This was previously mentioned (no resolution/answer) > inhttp://groups.google.com/group/google-appengine/browse_thread/thread/... thanks for the nudge. heading over to answer... --~--~-~--~~~---~--~~ You received this me

[google-appengine] Re: Issue with domain redirection (abc.com/def -> www.abc.com/def)

2009-03-03 Thread PW
Thanks for your replies. fczuardi, Do I need to redirect my domain to another server to use this? or could I do it in Google App Engine? (using python/django?) I tried everything I could do but I think the current setting keeps sending http://abc.com/* to http://www.abc.com/ in the first place.

[google-appengine] Re: How to do this?

2009-03-03 Thread arnie
Sorry for some lack in complete explanation. Basically I do not want to store the user session in my user datastore table. The user table simply contains user info like first name, last name, userid etc and user validation will be using this table. Also I am using django framework. --~--~-

[google-appengine] Re: Huge number of datastore timeouts.

2009-03-03 Thread Pete Koomen
Hi Gee-Hsien, We're working hard to address the datastore latency issues that some apps are currently seeing with the datastore. Please see http://groups.google.com/group/google-appengine-downtime-notify for more information. Thanks very much for your patience; we hope to get this resolved as s

[google-appengine] I want more fields than in DB models?

2009-03-03 Thread disorderdev
Hi, I'm a newbie here, both python and app engine. a few questions: I store some fields in DB, but when show message on Web, I need more fields, most of them are calculated according to fields in DB, For now I don't want to do the calculating on web, but when I add some fields to the DB model cla

[google-appengine] Re: Is there a handler for logout?

2009-03-03 Thread OliWeiD
Well, I've got the idea. But I put the logout-uri into the html sitting on the page. With your idea in mind, don't I need a blank page, doing the del session stuff and then logout, passing the correct logout uri as an argument to that blank page?? Now I have to go to the train, hopefully you get

[google-appengine] Re: using keys in an IN statement

2009-03-03 Thread Andy Freeman
This was previously mentioned (no resolution/answer) in http://groups.google.com/group/google-appengine/browse_thread/thread/1285c272c0e1b62a On Mar 3, 7:36 pm, Devel63 wrote: > I just implemented something like this, and while it ran fine on the > dev_server, I noticed that it defined in index.

[google-appengine] Re: Is there a handler for logout?

2009-03-03 Thread Paul Roy
perhaps, instead of using the users' method directly, create a logout handler where you perform the necessary operations before fowarding to the logout uri. the tricky part is keeping track of the original uri. the way i do it, is to pass it as a request argument. you could maybe subclass t

[google-appengine] Re: 502 Server Errors after upgrade?

2009-03-03 Thread Arun Shanker Prasad
Hi, The system status site shows that all services are serving normal now, but my app is still experiencing DeadlineExceededError in pages that used be served well under 5s, and others are very slow and takes almost twice the normal time to serve. I know the Google App Engine team is working on

[google-appengine] Re: login required pages - 500 error message

2009-03-03 Thread Paul Roy
see your applications' error log (in the admin console) to get an idea on what the exact error is. Without knowing that, it could be a number of things... Sent from my iPhone On 09-03-03, at 16:30, lka wrote: > > I have two same applications (same code) with different Authentication > Opt

[google-appengine] Huge number of datastore timeouts.

2009-03-03 Thread gee
Hi guys, Our app (rotzy.com) is seeing a huge number of datastore timeouts. I know about the ongoing issues, but we're getting nearly one every second... users are complaining and this has been going on for the last 12+ hours. Is anyone else getting hit this hard? AppEngine team -- these seem

[google-appengine] Is there a handler for logout?

2009-03-03 Thread OliWeiD
Hi everybody, due to security reasons and for efficiency some sort of logout handler is needed. That means, when the user is clicking on the created logout link (users.create_logout_url) During that logout I want to delete a session cookie and delete the memcache entries for that user. Any idea?

[google-appengine] Can anybody help me ?

2009-03-03 Thread blackball
My app-id:bugway when I deployed my new application,it gave me a "500 error" message. Checking if new version is ready to se Closing update: new version is ready t Uploading index definitions. Error 500: --- begin server output --- Server Error (500) A server error has occurred. --- end server ou

[google-appengine] Re: using keys in an IN statement

2009-03-03 Thread Devel63
I just implemented something like this, and while it ran fine on the dev_server, I noticed that it defined in index.yaml a new index for every observed number of items in the IN set. Since I was approaching the 30 limit, and had other varying elements of the query, this caused an explosion of def

[google-appengine] Re: [CRITICAL] Datastore operations slow

2009-03-03 Thread GregF
Arg! It's started happening to my app - when trying to loop through the results of a query with about 20 members. for teacher in teacherList: File "/base/python_lib/versions/1/google/appengine/ext/db/ __init__.py", line 1468, in next return self.__model_class.from_entity(self.__iter

[google-appengine] Re: How to do this?

2009-03-03 Thread Pavel Byles
arnie, Specifically, if you want your users to use Google's account credendials you can use the google.appengine.api module and check the users class. You can send non-logged in users to the Google Account login for your application like this users.create_login_url(self.request.uri)) This will cr

[google-appengine] Initializing datastore with binary data

2009-03-03 Thread Pavel Byles
Is there a way to initialize the datastore with binary data to be stored in a blob field (without using a form)? I have tried putting the data into a CSV file and uploading it using bulkloader, but that didn't seem to work. Any help would be appreciated. -- -Pav --~--~-~--~~

[google-appengine] Re: [CRITICAL] Datastore operations slow

2009-03-03 Thread Steve Robillard
+1 Alex. I think the email that just came through from the app team should have been posted to the home page and sent far earlier. Downtime and issues will always occur what separates one system from another is how they are handled and communicated. -Original Message- From: google-appen

[google-appengine] Re: [CRITICAL] Datastore operations slow

2009-03-03 Thread Brett Slatkin
Hi Alex, On Tue, Mar 3, 2009 at 6:17 PM, Alex Popescu wrote: > I appreciate hearing from you that you are aware of these issues. And > I hope to hear soon a confirmation that issues have been solved. > > Anyways, I'd like to know that once you are aware of such problems you > would let us know s

[google-appengine] How to do this?

2009-03-03 Thread arnie
In my web app there is a user table [datastore] containing the details for the users. I want to know that how can we use sessions to maintain the session for a signed in user. Does Google Users service [thugh it deals with Google Accounts] will be of any help here ? Any idea? Thanks --~--~

[google-appengine] Re: 502 Server Errors after upgrade?

2009-03-03 Thread Pete Koomen
Hi all, we'll continue posting updates about this issue to our status site and downtime-notify group as we continue investigating: http://code.google.com/status/appengine http://groups.google.com/group/google-appengine-downtime-notify Thanks for your patience, we're still working hard on this on

[google-appengine] Re: [CRITICAL] Datastore operations slow

2009-03-03 Thread Alex Popescu
On Mar 4, 2:29 am, Brett Slatkin wrote: > Hi Alex, > > We're aware of elevated Serving and Datastore latencies and are > working hard to rectify the situation. We're very sorry for any > trouble this is causing your application and others. Thanks for your > patience. > > -Brett > Brett, I appre

[google-appengine] Re: Brazil and Hong Kong now supported for Billing

2009-03-03 Thread JMJ
Thank you very much Brett! On 2 mar, 21:21, Brett Slatkin wrote: > Hey there, > > At launch, Brazil and Hong Kong were not in our list of supported > countries for billing. I'm happy to announce that application > administrators in these countries may now purchase additional > resources for App

[google-appengine] Re: I got a problem with Appengine + Flex-HttpService

2009-03-03 Thread 张传奇
Thanks Andrew, I don't know much at sniffer. Do you have some advice on what's software is good? 2009/3/2 Andrew Badera > > use a network sniffer or transparent proxy to figure out what the > differences are, and address them. > > > On Sun, Mar 1, 2009 at 11:09 PM, Legend Zhang <52openplatf...@g

[google-appengine] Re: I got a problem with Appengine + Flex-HttpService

2009-03-03 Thread 张传奇
I developed an Flex+Opensocial+GoogleMaps+Appengine program.It's OK when I use IE7, Chrome, Firefox, Safari, Opera. I use Flex HttpService access Appengine to read a xml file. Everytime I use it on IE6, I get a http error. I test it on HttpService+IE6+Apache+PHP, there's no problem. I believe i

[google-appengine] Re: PHP + MySQL is a web standard ;-)

2009-03-03 Thread wenxin.ren
it is I think. the best result we may anticipate is that google may support php + mysql sooner I definitely support php + mysql in a small scale way of web developing especially for beginning. On 3月4日, 上午5时27分, KillIEbrowser wrote: > I'm thinking to come back to PHP + MySQL, is this a good ide

[google-appengine] Re: [CRITICAL] Datastore operations slow

2009-03-03 Thread Nick Winter
Good luck debugging the issue, Brett (& App Engine team)! 加油! --~--~-~--~~~---~--~~ 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 unsubs

[google-appengine] Re: New Terms of Service :-(

2009-03-03 Thread TAN KH
I would like to clarify the following, 4.4. You may not develop multiple Applications to simulate or act as a single Application or otherwise access the Service in a manner intended to avoid incurring fees. Clarification I am currently developing my app to operate on 1 application instance per

[google-appengine] Re: PHP + MySQL is a web standard ;-)

2009-03-03 Thread niklas
On Mar 3, 10:27 pm, KillIEbrowser wrote: > I'm thinking to come back to PHP + MySQL, is this a good idea? Possibly. According to benchmark from migrating a PHP + MySQL + JEE LAMP to GAE a 512 megabyte LAMP responds speedier in absolute time than the GAE version of the same. A GAE version scores m

[google-appengine] Re: Which server errors are reflected in the Dashboard?

2009-03-03 Thread Marzia Niccolai
Hi, This section records all non-static URLs that experience errors. However, the issues due to yesterday's maintenance may have caused some of these to not be recorded. Our engineering team is investigating this. -Marzia On Mon, Mar 2, 2009 at 11:25 PM, Bill wrote: > > After the timeouts an

[google-appengine] Re: [CRITICAL] Datastore operations slow

2009-03-03 Thread Brett Slatkin
Hi Alex, We're aware of elevated Serving and Datastore latencies and are working hard to rectify the situation. We're very sorry for any trouble this is causing your application and others. Thanks for your patience. -Brett On Tue, Mar 3, 2009 at 12:39 PM, Alex Popescu wrote: > > Hi, > > I'm se

[google-appengine] Re: New Terms of Service :-(

2009-03-03 Thread Pete Koomen
Hi, The sections that have changed in our new terms of service are Section 4 and Section 10.3. We added some language around billing and payments, and also a clause that prevents users from using multiple cloned free applications to avoid usage charges that would have otherwise been incurred by

[google-appengine] Re: Datastore operations slow

2009-03-03 Thread Ryan Lamansky
So... this isn't normal performance? I just uploaded a test app for the first time and was really worried about the datastore's speed :) -Ryan On Mar 3, 3:40 pm, Brandon Thomson wrote: > You should be glad your app is working at all! All my queries are > timing out. It's caused by whatever mod

[google-appengine] Reminder: App Engine chat time, tomorrow (3/4) 7-8PM

2009-03-03 Thread Marzia Niccolai
Details can be found here: http://groups.google.com/group/google-appengine/browse_thread/thread/8ea64f610b5ed428 -Marzia --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this grou

[google-appengine] Re: 502 Server Errors after upgrade?

2009-03-03 Thread Brandon Thomson
I think my errors are gone now. Thank you Google! On Mar 3, 1:44 pm, Artem wrote: > I am still getting 502s in our App (which is an instance of Rietveld > without any changes except securing it with a password). > app id is: wsl-codereview > > We have changed nothing. Problems started last night

[google-appengine] Downside of the Google App Engine relying on Google Apps - Horror Story

2009-03-03 Thread Eaden
Hi there, In order to host an application on Google App Engine you need to add your domain to a Google Apps account. If anything goes wrong with your Google Apps account, your Google App Engine sites can be affected and you have no where to turn for support. Your apps are not accessible from your

[google-appengine] Re: using keys in an IN statement

2009-03-03 Thread ryan
On Mar 3, 12:26 pm, pedepy wrote: > > isnt the proper syntax WHERE property IN (foo, foo, foo) ? if you're providing a list of constants, yes. if you're using a bound parameter, though, like in your original post, you should omit the parentheses. having said that, it looks like we may sometimes

[google-appengine] PHP + MySQL is a web standard ;-)

2009-03-03 Thread KillIEbrowser
I'm thinking to come back to PHP + MySQL, is this a good idea? --~--~-~--~~~---~--~~ 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 unsu

[google-appengine] login required pages - 500 error message

2009-03-03 Thread lka
I have two same applications (same code) with different Authentication Options: 1)authentication with a valid Google Apps domain account 2)authentication with a valid Google Account Both were going OK also with login required pages. Now only second application works as before (without any code ch

[google-appengine] Re: Ajax

2009-03-03 Thread PYD
Bonjour, Thank for your help. I think the problem was that the tutorial template i aHTML DTD, while my light AjaxXmlLoad is XHTML DTD. I suppose I will be able to manage. However, my next step is to use Cheetah in Google App (I 'm used to Cheetah). So, is there somewhere code snippets / examples

[google-appengine] Re: Datastore operations slow

2009-03-03 Thread Brandon Thomson
You should be glad your app is working at all! All my queries are timing out. It's caused by whatever modifications they made during scheduled maintainance yesterday. On Mar 3, 3:39 pm, Alex Popescu wrote: > Hi, > > I'm seeing that most of the datastore ops are being slow lately by > about an or

[google-appengine] Re: My Applications in Google App Engine status None Deployed

2009-03-03 Thread Alexander Kojevnikov
On Mar 3, 11:12 pm, wayne wrote: > hi am new bee to google apps.can any one provide help me  how to > deploy my application in google app..i have added my domain and > activated the service but it shows 404 error.my domain is > eximdata9.com my application is exim-da-bank plz help me any one > ar

[google-appengine] Re: Help! My site only used 1% of quota,but it raise Exception said: Over Quota Why?

2009-03-03 Thread Alexander Kojevnikov
On Mar 3, 7:23 pm, proxypy wrote: >   Help! My site only used less than 1% of quota,but it raise exception > said: Over Quota  now!! > There are many different quotas, you must be hitting one of them. In your Dashboard go to "Quota Details", that page has a break-down of all the quotas. --~--~---

[google-appengine] wordnet on appengine

2009-03-03 Thread tabularasa
I'm trying to get PyWordnet working on App Engine. Everything works locally but I can't deploy because one of the files that store the data is over the upload limit (14MB). My question is, has anyone got PyWordnet working on App Engine, or does anyone have experience working with PyWordnet and mi

[google-appengine] Re: 502 Server Errors after upgrade?

2009-03-03 Thread Artem
I am still getting 502s in our App (which is an instance of Rietveld without any changes except securing it with a password). app id is: wsl-codereview We have changed nothing. Problems started last night, but now every request is a 502. Artem On Mar 3, 1:25 pm, Brett Slatkin wrote: > Hi Nick,

[google-appengine] [CRITICAL] Datastore operations slow

2009-03-03 Thread Alex Popescu
Hi, I'm seeing that most of the datastore ops are being slow lately by about an order of magnitude slower. Here is a set of numbers from now: 03-03 12:25PM 46.104 200 2296ms 1398ms-cpu 0kb 03-03 12:25PM 15.755 200 2025ms 1330ms-cpu 0kb 03-03 12:22PM 59.116 200 2519ms 1375ms-cpu 0kb 03-03 12:

[google-appengine] Re: using keys in an IN statement

2009-03-03 Thread pedepy
uhah yea i believe i am isnt the proper syntax WHERE property IN (foo, foo, foo) ? On Mar 3, 2:38 am, ryan wrote: > On Mar 1, 11:06 am, pedepy wrote: > > > I would like to fetch results only against a particular subset of > > keys. I'm trying to use 'WHERE __key__ IN (:1), list_of_keys ... the

[google-appengine] Re: 502 Server Errors after upgrade?

2009-03-03 Thread Nick Winter
Yes, I'm still seeing problems. We've been averaging 4 seconds per request for the past six hours, roughly correlated to the elevated latency that you say is within tolerance and is averaging 250 ms per request. Some of that is due to a recently identified performance issue with one of our common

[google-appengine] Re: 502 Server Errors after upgrade?

2009-03-03 Thread Pete Koomen
Hi all, Some apps are still seeing inreased latencies--we're working hard to isolate this. We'll keep you updated as we do. Pete On Mar 3, 11:22 am, Arun Shanker Prasad wrote: > Hi, > > My app still seems to be experiencing this problem.. I seem to get 502 > - Bad Gateway error at random, als

[google-appengine] Re: 502 Server Errors after upgrade?

2009-03-03 Thread Arun Shanker Prasad
Hi, My app still seems to be experiencing this problem.. I seem to get 502 - Bad Gateway error at random, also the the serving of the app is very slow. Writes are the most expensive, timing out randomly.. Thanks, Arun Shanker Prasad. On Mar 4, 12:18 am, Sylvain wrote: > Yes I don't know why bu

[google-appengine] Re: 502 Server Errors after upgrade?

2009-03-03 Thread Sylvain
Yes I don't know why but today the main request is 1000 ms-cpu higher than yesterday. So the CPU Quota is higher than usual. Regards On 3 mar, 20:08, Brandon Thomson wrote: > Ditto. Datastore performance is very bad too. > > On Mar 3, 2:04 pm, Brenton wrote: > > > It still feels down to me.  O

[google-appengine] Re: 502 Server Errors after upgrade?

2009-03-03 Thread Brandon Thomson
Ditto. Datastore performance is very bad too. On Mar 3, 2:04 pm, Brenton wrote: > It still feels down to me.  Our app keeps timing out.  Friends' apps > too. > > 208 - try again in 30 secs.  Same as last night. --~--~-~--~~~---~--~~ You received this message becau

[google-appengine] Pylons 0.9.7 is fully supported

2009-03-03 Thread Amr Ellafi
is Pylons 0.9.7 fully supported on AppEngine ? --~--~-~--~~~---~--~~ 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

[google-appengine] Re: 502 Server Errors after upgrade?

2009-03-03 Thread Brenton
It still feels down to me. Our app keeps timing out. Friends' apps too. 208 - try again in 30 secs. Same as last night. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this gr

[google-appengine] Re: 502 Server Errors after upgrade?

2009-03-03 Thread Brett Slatkin
Hi Nick, On Tue, Mar 3, 2009 at 8:55 AM, Nick Winter wrote: > > http://code.google.com/status/appengine/detail/serving/2009/03/03#ae-trust-detail-helloworld-get-latency > > Just about every day for the past several weeks, there's been elevated > latency like this, usually at similar times of day

[google-appengine] Re: Erroneous Over Quota

2009-03-03 Thread Pete Koomen
Hi all, We noticed this early this morning and have been working on it since. The problem affected a very small number of apps, among which yours were unfortunately included. The problem for some of these apps was fixed at 8:15am PST (GMT-8), and for the rest at 9:15am. This is marginally relat

[google-appengine] 500 error ! help me, Thanx.

2009-03-03 Thread blackball
my site: http://bugway.appspot.com Please help me to delete the older versions. Best regards! blackball --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email

[google-appengine] Re: Erroneous Over Quota

2009-03-03 Thread proxypy
My site getting the same error: "Over Quota " I found if we visit the python script page this error raise (eg. http://proxypy.appspot.com/helloworld.py ) bug if visit html/jpg/js page, it's good. (eg. http://proxypy.appspot.com/proxyxy_static/proxypy.jpg ) Guy Rutenberg wrote: > Hi, > > I'm

[google-appengine] Re: Erroneous Over Quota

2009-03-03 Thread poncz
I had the same problem for 12 hours and now it started working again. Thanks, --~--~-~--~~~---~--~~ 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@googlegr

[google-appengine] Re: Brazil and Hong Kong now supported for Billing

2009-03-03 Thread fczuardi
That's amazing Brett! Thanks! As a Brazilian, it is comforting to know I will be able to fund scalability in case my pet project (http://quoteurl.com) ever reaches critical mass ;) []s On Mar 2, 9:21 pm, Brett Slatkin wrote: > Hey there, > > At launch, Brazil and Hong Kong were not in our lis

[google-appengine] Re: 502 Server Errors after upgrade?

2009-03-03 Thread proxypy
I got 403 Over Quota Error. But I only used less than 1% quota now!! my site: proxypy.appspot.com Who can help me ? Bill wrote: > Anyone else having trouble with their apps?  I'm getting 502 Server > Errors and even looking at logs in the console are glacially slow. --~--~-~--~~

[google-appengine] Re: Issue with domain redirection (abc.com/def -> www.abc.com/def)

2009-03-03 Thread fczuardi
On Mar 3, 1:39 am, PW wrote: > Hello, > > I have registered a new domain with Google Domains and I currently > have my app engine application linked towww.abc.com.  The problem is > that I cannot find a way to forward "abc.com/def" to "www.abc.com/ > def".  It always redirect me towww.abc.comno m

[google-appengine] My Applications in Google App Engine status None Deployed

2009-03-03 Thread wayne
hi am new bee to google apps.can any one provide help me how to deploy my application in google app..i have added my domain and activated the service but it shows 404 error.my domain is eximdata9.com my application is exim-da-bank plz help me any one around there. --~--~-~--~~---

[google-appengine] Help! My site only used 1% of quota,but it raise Exception said: Over Quota Why?

2009-03-03 Thread proxypy
hi, google: Help! My site only used less than 1% of quota,but it raise exception said: Over Quota now!! Why? my site : http://proxypy.appspot.com Can any one help? Thank you very much. --~--~-~--~~~---~--~~ You received this message because you are s

[google-appengine] Re: I got a problem with Appengine + Flex-HttpService

2009-03-03 Thread Doug
Could you be a little more specific about what it means that you can not aceess App engine? One guess that I have as to what your problem could be If you have your swf file stored on another server or on your local computer you will need to have a cross domain policy file in the root of your

[google-appengine] Re: 502 Server Errors after upgrade?

2009-03-03 Thread Brandon Thomson
The yellow is causing me a problem too; a lot of my (very simple) queries that previously returned quickly are timing out. On Mar 3, 11:55 am, Nick Winter wrote: > http://code.google.com/status/appengine/detail/serving/2009/03/03#ae-... > > Just about every day for the past several weeks, there'

[google-appengine] Re: 502 Server Errors after upgrade?

2009-03-03 Thread Nick Winter
http://code.google.com/status/appengine/detail/serving/2009/03/03#ae-trust-detail-helloworld-get-latency Just about every day for the past several weeks, there's been elevated latency like this, usually at similar times of day. It was unfortunate and frustrating before, but since last night our d

[google-appengine] Re: Viewing a non default version log (appspot uri)

2009-03-03 Thread Nick Winter
Ah, that's odd. Our testing version definitely shows all the log messages we generate correctly, so if we trap an Exception and logging.error() it, everything works. Not sure about unhandled 500s, though. In fact, we did just see a peculiar 500 on our testing version that we couldn't find in the l

[google-appengine] Re: Erroneous Over Quota

2009-03-03 Thread Jonathan Feinberg
Wordle is also getting spurious quota denials. I hope someone at Google is awake and full of Starbucks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to g

[google-appengine] Re: Erroneous Over Quota

2009-03-03 Thread auzhuang
My site getting an Over Quota error too... I only used less than 1% of quota. All of my python script page getting this error!! But html/jpg/js pages not. Why???!!! Guy Rutenberg wrote: > Hi, > > I'm getting an Over Quota error for all my requests in the last 50 > minutes > >     Over Quota

[google-appengine] Re: using memcache for caching query results

2009-03-03 Thread Andi Albrecht
2009/3/3 Jonathan : > > I am using a restful interface for an ajax application and want to be > able to store the results of queries in memcache, as much of this data > is read much more often than it is written, but it is occasionally > written. > > I have been trying to think of strategies for h

[google-appengine] using memcache for caching query results

2009-03-03 Thread Jonathan
I am using a restful interface for an ajax application and want to be able to store the results of queries in memcache, as much of this data is read much more often than it is written, but it is occasionally written. I have been trying to think of strategies for how to do this, whilst also mainta

[google-appengine] Re: Viewing a non default version log (appspot uri)

2009-03-03 Thread Ubaldo Huerta
Hi Nick, thanks for answering. You're correct, the drop down let's you switch the version. However, my problem is that I only see the Requests Only logs. The exception I mention in the original message doesn't make it to the error log, so I don't know where it happens, i.e can't debug my problem.

[google-appengine] Erroneous Over Quota

2009-03-03 Thread Guy Rutenberg
Hi, I'm getting an Over Quota error for all my requests in the last 50 minutes     Over Quota     This Google App Engine application is temporarily over its serving quota. Please try again later. But when I check the Quota Details report, I see that I'm very far from reaching any of my quota l

[google-appengine] Re: Issue with domain redirection (abc.com/def -> www.abc.com/def)

2009-03-03 Thread Dennis
star this issue to give google feedback http://code.google.com/p/googleappengine/issues/detail?id=777 On Mar 3, 12:39 pm, PW wrote: > Hello, > > I have registered a new domain with Google Domains and I currently > have my app engine application linked towww.abc.com.  The problem is > that I ca

[google-appengine] Re: Question Regarding Zipserve

2009-03-03 Thread Arun Shanker Prasad
Hi, Any solution for my problem guys?? Thanks, Arun Shanker Prasad. On Feb 27, 8:48 pm, Arun Shanker Prasad wrote: > Hi, > >    This can be done if my application was written in the 'webapp' > framework, but as I mentioned earlier my project is done using > Django. > > There is no > def main

[google-appengine] Re: 502 Server Errors after upgrade?

2009-03-03 Thread Arun Shanker Prasad
Hi All, I am still getting this 502 error randomly, did anyone figure out what caused it and is it fixed?? Thanks, Arun Shanker Prasad. On Mar 3, 2:09 pm, cz wrote: > yep, our app still quite a bit slower than usual but slightly better > than earlier today. > zipimport still seems especially s

[google-appengine] Re: AppEngine Users API not working for my domain

2009-03-03 Thread Kariem
Hi Marzia, Thank you for the quick response. I just wanted to make sure that I understood the technical limitations correctly and hoped I could help others who were as unsure as I was before reading your response. It's great to hear that you are working on it. Cheers, Kariem --~--~-~--~

[google-appengine] Re: 502 Server Errors after upgrade?

2009-03-03 Thread cz
yep, our app still quite a bit slower than usual but slightly better than earlier today. zipimport still seems especially slow... I'm wondering if using non- trivial 3rd party frameworks such as Django 1.x is such a good idea on GAE. With this kind of latency I'm thinking maybe not. Perhaps for hi

[google-appengine] Issue with domain redirection (abc.com/def -> www.abc.com/def)

2009-03-03 Thread PW
Hello, I have registered a new domain with Google Domains and I currently have my app engine application linked to www.abc.com. The problem is that I cannot find a way to forward "abc.com/def" to "www.abc.com/ def". It always redirect me to www.abc.com no matter what string I attach at the end.

[google-appengine] Moving our data to Google App Engine

2009-03-03 Thread Dong Wang
I have some questions about transfer large amounts of data (10+ TB). I am wondering if the data can be shipped in via FedEx or UPS. I am hoping to have the data available faster then an internet transfer. I have a few questions about this possibility. - How quickly will the data be available on Go