Re: [appengine-java] Re: Google App Engine with MySQL Database.

2010-11-23 Thread Tinker Pang
Hi I study app engine a long time, and I have been confused Why App Engine don't support mySql? Why use the JDO/JPA? Best Regards Tinker 2010/11/23 Didier Durand durand.did...@gmail.com Hi, mySql is not (at least currently) directly supported on App Engine, you have to use the

[appengine-java] Installing Eclipse Plugin gives MD5 Hash Error...

2010-11-23 Thread ksondere
I'm wondering if anyone else is getting this. I'm trying to install the app engine pugin for Eclipse Helio. The URL I'm using is http://dl.google.com/eclipse/plugin/3.6 And this is the error I'm getting. An error occurred while collecting items to be installed session context

Re: [appengine-java] naked domain

2010-11-23 Thread Jorge Neyra
I have done it with godaddy.com and 1and1.com On Tue, Nov 23, 2010 at 2:04 PM, pman pollk...@gmail.com wrote: which domain name registrar allows naked domain forward to www,mydomain.com (using google appengine)? i.e. mydomain.com -- forward to -- www,mydomain.com. -- You received this

Re: [appengine-java] Re: Google App Engine with MySQL Database.

2010-11-23 Thread Khor Yong Hao
appengine is designed to be more applicable to run on distributed server. mysql is relational database and that is not suitable to scale when it supports sql join (fetch data from multiple tables) in distributed system. however the design of google bigtable, objects (key - value based) is suited

[appengine-java] Re: mapreduce - passing filters

2010-11-23 Thread frew
This sounds reasonable. The challenge is mostly that finding split points for arbitrary queries is hard at the moment. I would hold off on doing this until after the 1.4.0 rollout is done. We have a new feature we're rolling out (enabled by 1.4.0, although we're going to have to do some work to

[appengine-java] Re: naked domain

2010-11-23 Thread pman
found bad review on 1and1.com @ http://www.webhostingjury.com/reviews/1and1 On Nov 24, 3:14 am, Jorge Neyra jorge.ne...@gmail.com wrote: I have done it with godaddy.com and 1and1.com On Tue, Nov 23, 2010 at 2:04 PM, pman pollk...@gmail.com wrote: which domain name registrar allows naked

[appengine-java] Re: naked domain

2010-11-23 Thread pac
I have used namecheap.com On Nov 24, 4:30 am, pman pollk...@gmail.com wrote: found bad review on 1and1.com @http://www.webhostingjury.com/reviews/1and1 On Nov 24, 3:14 am, Jorge Neyra jorge.ne...@gmail.com wrote: I have done it with godaddy.com and 1and1.com On Tue, Nov 23, 2010 at 2:04

[google-appengine] Re: Let's defend GAE!

2010-11-23 Thread Tim Hoffman
Hi Adam Couldn't agree more with your sentiments. In addition to working on fairly significant projects with appengine, I run our small business web site on appengine as well (www.fishandlily.com.au). It is really a headache free environment if you get everything sorted. We don't have to worry

Re: [google-appengine] Re: Let's defend GAE!

2010-11-23 Thread Uberto Barbini
On Tue, Nov 23, 2010 at 5:32 AM, Tim Hoffman zutes...@gmail.com wrote: Hi can you share some links to your application if this is not a problem? Just to figure out how to improve ours. www.qtracker.com.au and www.polytechnic.wa.edu.au  are two of our apps. Having links to them won't help

Re: [google-appengine] Re: Prerelease SDK 1.4.0 is out!

2010-11-23 Thread Viðar Svansson
Thank you for a great release! Heavy frameworks like Spring MVC can be loaded really fast if you serialize the context into cache/datastore. Unfortunately this is not easy to do and I don't know if SpringSource is planning on making it easier. A blog post like that was bound to be published

Re: [google-appengine] Can't update my billing settings

2010-11-23 Thread Sahid Orentino Ferdjaoui
Thank Robert, I will do that. Sahid. --   .  ..: On Mon, Nov 22, 2010 at 6:50 PM, Robert Kluin robert.kl...@gmail.com wrote: Have you tried submitting a billing help request?  http://code.google.com/support/bin/request.py?contact_type=AppEngineBillingSupport Robert On Mon, Nov 22,

Re: [google-appengine] Re: Let's defend GAE!

2010-11-23 Thread Martin Webb
All that GAE needs is someone in these forums to build, launch and run the next killa app like twitter. Once that happens people will take the platform more than seriously as the app will scale to millions trouble free overnight - sending out big signals to developers that app engine is a

[google-appengine] Policy for instance startup

2010-11-23 Thread Tomas Alaeus
I'm curious when exactly instances are started. I have two applications running on GAE, one of them have billing enabled. The one with billing enabled have been stress tested and have at most started 100 simultaneous instances. The other is just for testing and staging purposes and have never

Re: [google-appengine] Google Docs blocking GAE apps? (503 lockout: automated queries)

2010-11-23 Thread Jan Zawadzki
neither - this is 2LO. Actually, it's both 2LO and client login. Same error, same timeframe Went away after about four hours, but became an extremely serious problem as it affected a number of our apps (possibly all?) I am loading more records later tonight, will let you know if it reappears.

[google-appengine] Re: Company website running on GAE is ... gone?

2010-11-23 Thread dflorey
Very strange. It is back! There have been no 500ers in the logs, just timeouts. Daniel On 22 Nov., 21:01, Ikai Lan (Google) ikai.l+gro...@google.com wrote: I see the application. Did you see a 404, 500, or just a timeout? -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger: 

[google-appengine] App is cut several times a day

2010-11-23 Thread sahid
Hello, Please see this chart: http://i.imgur.com/9CAnF.png (All of my users are connected in a third part server (COMET)) My app is cut several times a day and i don't know why... I use appstats and all of my requests are OK... in general i use less than 10 RPC by request. my average latency is

[google-appengine] Re: Memcache/JCache across my application

2010-11-23 Thread Simon
You are going to get a JCache instance for every GAE JVM-instance which is spun up and there's no guarantee (in fact in my experience it's pretty unlikely) that your GAE-instance will even be up for 2 hours. It's worth remembering that you can have multiple GAE- instances running at the same time

[google-appengine] Re: Memcache/JCache across my application

2010-11-23 Thread Tim Hoffman
Hi In addition google recycles instances around every 10,000 requests. Rgds T On Nov 23, 7:11 pm, Simon qila...@gmail.com wrote: You are going to get a JCache instance for every GAE JVM-instance which is spun up and there's no guarantee (in fact in my experience it's pretty unlikely) that

Re: [google-appengine] Re: Administrator with Google Apps account

2010-11-23 Thread Brian Davenport
To do this all you have to do is make that user account in your domain then set it up as a app admin so you can send as that user. On Tue, Nov 23, 2010 at 02:44, jd jdpatter...@gmail.com wrote: Just wondering if anyone can send email from their Google Apps domain? i.e. website at

Re: [google-appengine] query order and name attribute (patch)

2010-11-23 Thread Peter Petrov
Hey Robert, thanks very much for tracking and fixing this (I'm the one who reported the second issue). Dear Googlers, _please_ finally notice this and fix it. Named properties are nearly useless anyway, even without this bug (because the name attribute is not transparent as it should be, you

[google-appengine] Is there anyway to locally test a GAE + Facebook?

2010-11-23 Thread nacho
This is more a facebook apps question, but i would like if some gae developers have experience doing this. I need to develop a Facebook app, and i want to do my back in gae and my front in gwt. Easy task. My question is this: how can i locally test my fb app? My app must run on Facebook app's

Re: [google-appengine] Is it possible to download your own GAE project.I lost my laptop

2010-11-23 Thread Robert Kluin
Also, in the future, try using something like bitbucket or github. That way you'll have version control and an off-laptop backup. Robert 2010/11/23 acellam guy hollyace...@gmail.com: thanks!! On Tue, Nov 23, 2010 at 9:34 AM, 风笑雪 kea...@gmail.com wrote: I don't know, but SDK 1.4.0

Re: [google-appengine] query order and name attribute (patch)

2010-11-23 Thread Robert Kluin
I agree. Named properties are messy, it is not always clear which name (short or long) should be used. Also, just as a note, if you make your model and exando you can use the short name in the order. Robert On Tue, Nov 23, 2010 at 08:51, Peter Petrov onest...@gmail.com wrote: Hey

[google-appengine] GAE down?? Thousands of 500 Request was aborted after waiting too long

2010-11-23 Thread A. Stevko
app id: ninuku-archivist I'm used to having some of these 500 responses but now that is all my customers are getting! Request was aborted after waiting too long to attempt to service your request -- You received this message because you are subscribed to the Google Groups Google App Engine

[google-appengine] Re: GAE down?? Thousands of 500 Request was aborted after waiting too long

2010-11-23 Thread A. Stevko
Also my task queues are backed up with a thousand backlogged, 50 executed in the minute, and Retries pushing 100. On Tue, Nov 23, 2010 at 9:32 AM, A. Stevko andy.ste...@gmail.com wrote: app id: ninuku-archivist I'm used to having some of these 500 responses but now that is all my customers

[google-appengine] Re: GAE down?? Thousands of 500 Request was aborted after waiting too long

2010-11-23 Thread A. Stevko
Lastly when something does execute, it is throwing catch (java.lang.RuntimeException with null message. Basically my site is DOWN!!! On Tue, Nov 23, 2010 at 9:36 AM, A. Stevko andy.ste...@gmail.com wrote: Also my task queues are backed up with a thousand backlogged, 50 executed in the

Re: [google-appengine] Is there anyway to locally test a GAE + Facebook?

2010-11-23 Thread Chris Copeland
You need a publicly accessible IP that Facebook's servers can hit to load the contents of your canvas page. (127.0.0.1 is a special loopback address that is only valid on your computer.) I suggest using a service like DynDNS to register a host name like myapp.homeip.net and then use their tools

[google-appengine] setting up www mapping help.

2010-11-23 Thread Ning Hu
Hi All, I'm encountering a prlbme when trying to setup www to redirect to my domain. Currently trying to do it under the google apps dashboard. When I try to add the www mapping, it gives an error that says: Already used, please remove previous mapping first But the question is, how to I

[google-appengine] Re: Prerelease SDK 1.4.0 is out!

2010-11-23 Thread Constantine Vetoshev
Ikai, Now that the Channels API is open to everyone, do you know when we might see some documentation for it? Just the javadocs would do for now. Thanks, CV -- 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] PyDev on Eclipse

2010-11-23 Thread Katyayani Bhatia
Hello everyone, I am trying to install PyDev on Eclipse, but the URL http://pydev.sourceforge.net/updates/ is facing some problems. Could you please suggest some alternate site for the same. Thanks. -- You received this message because you are subscribed to the Google Groups Google App

[google-appengine] Is it possible to add Expiry headers to static files ?

2010-11-23 Thread vamsi
Hi all , Is it possible to add Expiry headers to static files ? Regards -- 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-appeng...@googlegroups.com. To unsubscribe from this group, send email to

[google-appengine] PyDev on Eclipse

2010-11-23 Thread Katyayani Bhatia
Hello everyone, I am trying to install PyDev on Eclipse, but the URL http://pydev.sourceforge.net/updates/ is facing some problems. Could you please suggest some alternate site for the same. Thanks. -- You received this message because you are subscribed to the Google Groups Google App

[google-appengine] Cannot deploy my app to the GAE

2010-11-23 Thread Sumanth AS
Hi, i ve created a simple hello world application and have also got an app id registered. but i am unable to deploy the app to the server. i m getting an exception which is java.net.ConnectException. plz help me out. thanks in advance -- You received this message because you are subscribed to

[google-appengine] Doing XMPP query to figure out features supported by Google Talk client and getting confusing results!! Why?

2010-11-23 Thread Ektar
I send IQ like that to Gogole Talk client iq from=conta...@gmail.com/Talk.v10498F28475 id=ku6e51v3 to=conta...@gmail.com type=get query xmlns=http://jabber.org/protocol/disco#info/ /iq but response is iq to=conta...@gmail.com/Talk.v10498F28475 from=conta...@gmail.com id=ku6e51v3 type=result

[google-appengine] Re: PyDev on Eclipse

2010-11-23 Thread John McLaughlin
My update URL points to: http://pydev.org/updates On Nov 22, 11:40 pm, Katyayani Bhatia k.bhatia...@gmail.com wrote: Hello everyone, I am trying to install PyDev on Eclipse, but the URLhttp://pydev.sourceforge.net/updates/is facing some problems. Could you please suggest some alternate

Re: [google-appengine] PyDev on Eclipse

2010-11-23 Thread Rafael Nunes
Did you try to download the Aptana Studio 3? On 11/23/2010 05:40 AM, Katyayani Bhatia wrote: Hello everyone, I am trying to install PyDev on Eclipse, but the URL http://pydev.sourceforge.net/updates/ is facing some problems. Could you please suggest some alternate site for the same.

Re: [google-appengine] Prerelease SDK 1.4.0 is out!

2010-11-23 Thread Sandeep Koduri
Hello ikai, Thanks and congrats for the great release. Will there be an option for source code download control in app.yaml. according to the mail thread in pre-release of 1.3.8 we thought this will be implemented, and that would be very helpful. the feature announced now will be a very good

Re: [google-appengine] Re: Let's defend GAE!

2010-11-23 Thread Ikai Lan (Google)
Martin, This has already happened =). There are folks here in these groups who have built very successful businesses on App Engine. You just don't hear about them because they're not hyped in the tech blogs. -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger:

[google-appengine] app dashboard not accessible

2010-11-23 Thread sandeep Koduri
Hello, this is the link my apps dashboard https://appengine.google.com/dashboard?app_id=myappidhere https://appengine.google.com/dashboard?app_id=disxmlthis is showing up an error page most of the time Error: Server ErrorThe server encountered an error and could not complete your request. If

Re: [google-appengine] Prerelease SDK 1.4.0 is out!

2010-11-23 Thread Ikai Lan (Google)
You'll be able to download code, but anyone that wants to turn it off will be able to go to their admin dashboard and push a one-way, irreversible button to disallow this feature. Please do not depend on this feature to do source control. -- Ikai Lan Developer Programs Engineer, Google App

[google-appengine] Re: setting up www mapping help.

2010-11-23 Thread Stephen
On Nov 23, 2:22 am, Ning Hu nin...@ppmesh.com wrote: Hi All, I'm encountering a prlbme when trying to setup www to redirect to my domain. Currently trying to do it under the google apps dashboard. When I try to add the www mapping, it gives an error that says: Already used, please remove

[google-appengine] Re: GAE down?? Thousands of 500 Request was aborted after waiting too long

2010-11-23 Thread johnP
Crash and burn? Pretty much unaccessable now. johnP On Nov 23, 9:40 am, A. Stevko andy.ste...@gmail.com wrote: Lastly when something does execute, it is throwing catch (java.lang.RuntimeException with null message. Basically my site is DOWN!!! On Tue, Nov 23, 2010 at 9:36 AM, A.

Re: [google-appengine] Re: GAE down?? Thousands of 500 Request was aborted after waiting too long

2010-11-23 Thread A. Stevko
You too JohnP? When I pause the queues, it seems to clear up. Unfortunately I've moved _all_ of my heavy lifting onto a 1 request/second task queue that never gets off the ground. On Tue, Nov 23, 2010 at 11:53 AM, johnP j...@thinkwave.com wrote: Crash and burn? Pretty much unaccessable

Re: [google-appengine] Is it possible to add Expiry headers to static files ?

2010-11-23 Thread Robert Kluin
Yes. Python: http://code.google.com/appengine/docs/python/config/appconfig.html#Static_File_Handlers Java: http://code.google.com/appengine/docs/java/config/appconfig.html#expiration Robert On Tue, Nov 23, 2010 at 11:11, vamsi plutonium.va...@gmail.com wrote: Hi all , Is it

Re: [google-appengine] Re: GAE down?? Thousands of 500 Request was aborted after waiting too long

2010-11-23 Thread Robert Kluin
Have you tried to increase the rates on the queue so it is not backing up as much? On Tue, Nov 23, 2010 at 15:01, A. Stevko andy.ste...@gmail.com wrote: You too JohnP? When I pause the queues, it seems to clear up. Unfortunately I've moved _all_ of my heavy lifting onto a 1

Re: [google-appengine] Re: Can not update referenced property

2010-11-23 Thread Robert Kluin
I think you've got something else wrong. Either way should work. Robert class Test(db.Model): ref = db.ReferenceProperty() t1 = Test(key_name=one) t1_key = t1.put() t2 = Test(key_name=two) t2_key = t2.put() # Make some entities with references. t3 = Test(key_name=three, ref=t1) t3_key =

Re: [google-appengine] Re: GAE down?? Thousands of 500 Request was aborted after waiting too long

2010-11-23 Thread A. Stevko
I just logged this into ticket 4113 http://code.google.com/p/googleappengine/issues/detail?id=4113 more info on the situation with appid: ninuku-archivist been down for 4+ hours 100% failures on all task queues ( 100% failure on all mail send (low volume) 53% failures on gwt mvp dispatch

[google-appengine] Re: GAE down?? Thousands of 500 Request was aborted after waiting too long

2010-11-23 Thread Sharp-Developer.Net
My sites are down as well - GAE system status s green :( App id: petaclasses -- 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-appeng...@googlegroups.com. To unsubscribe from this group, send email

[google-appengine] Re: app dashboard not accessible

2010-11-23 Thread Sharp-Developer.Net
Seems the GAE is down. My websites are not accessible and can't upload new version, dashboard is unavailable. Alex On Nov 23, 7:27 pm, sandeep Koduri sandeep.kod...@cricfeeds.com wrote: Hello, this is the link my apps dashboardhttps://appengine.google.com/dashboard?app_id=myappidhere

Re: [google-appengine] Re: GAE down?? Thousands of 500 Request was aborted after waiting too long

2010-11-23 Thread A. Stevko
Please star comment on ticket 4113http://code.google.com/p/googleappengine/issues/detail?id=4113and maybe we'll get some visibility. I hope someone is firefighting this situation - the admin server just melted down with repeated 500 responses and my latest deployment just asked me to authorize.

[google-appengine] Re: app dashboard not accessible

2010-11-23 Thread mscwd01
Well this is strange, my app seems to be running better than usual and throwing no 500 errors - it's speedy too. However, the dashboard is down. :( I think they need to add downtime as an official feature to the App Engine as it is fast becoming one. On Nov 23, 9:03 pm, Sharp-Developer.Net

[google-appengine] Absolutely NO Problems Currently

2010-11-23 Thread Steve
There's been increased postings of problems on the newsgroups and production serving issues logged in the bug-tracker lately. But I want to tell you that clearly there are no problems with the google app hosting infrastructure because the system status dashboard is as green as an old style

[google-appengine] Re: app dashboard not accessible

2010-11-23 Thread Philip
A production issue was created, please star it if you are also affected: http://code.google.com/p/googleappengine/issues/detail?id=4114 On Nov 23, 10:03 pm, Sharp-Developer.Net alexander.trakhime...@gmail.com wrote: Seems the GAE is down. My websites are not accessible and can't upload new

Re: [google-appengine] Re: app dashboard not accessible

2010-11-23 Thread A. Stevko
Better of staring ticket 4113, Ikai has Acknowledged it. http://code.google.com/p/googleappengine/issues/detail?id=4113 On Tue, Nov 23, 2010 at 1:10 PM, Philip philip.mates...@driggle.com wrote: A production issue was created, please star it if you are also affected:

[google-appengine] Re: app dashboard not accessible

2010-11-23 Thread Krishna
Datastore latency just skyrocketed: http://tinypic.com/view.php?pic=2nlftrks=7 On Nov 23, 1:12 pm, A. Stevko andy.ste...@gmail.com wrote: Better of staring ticket 4113, Ikai has Acknowledged it.http://code.google.com/p/googleappengine/issues/detail?id=4113 On Tue, Nov 23, 2010 at 1:10

Re: [google-appengine] Re: app dashboard not accessible

2010-11-23 Thread Ikai Lan (Google)
Looking at it. -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger: http://googleappengine.blogspot.com Reddit: http://www.reddit.com/r/appengine Twitter: http://twitter.com/app_engine On Tue, Nov 23, 2010 at 1:12 PM, A. Stevko andy.ste...@gmail.com wrote: Better of staring

[google-appengine] Re: GAE down?? Thousands of 500 Request was aborted after waiting too long

2010-11-23 Thread observer247
https://appengine.google.com/ is down ! 500 Server Error Is there a status page where we can see the status of app engine in general. Using python. On Nov 23, 1:07 pm, A. Stevko andy.ste...@gmail.com wrote: Please star comment on  ticket

[google-appengine] 500 error when accessing GAE dashboard

2010-11-23 Thread pca
When I access : http://appengine.google.com/dashboard?app_id=web-hi, I get the error below consistently in the last 10 minutes, using both Chrome and FireFox. Also when I want to upload my application using the GAE launcher. Pls help. Error: Server Error The server encountered an error and could

[google-appengine] Re: app dashboard not accessible

2010-11-23 Thread Gaurav Vaish
+1. Dashboard (https://appengine.google.com) gives 500. -- Happy Hacking, Gaurav Vaish http://www.mastergaurav.com On Nov 24, 2:14 am, Ikai Lan (Google) ikai.l+gro...@google.com wrote: Looking at it. -- Ikai Lan Developer Programs Engineer, Google App Engine

[google-appengine] Re: app dashboard not accessible

2010-11-23 Thread Shay Erlichmen
Same here -- 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-appeng...@googlegroups.com. To unsubscribe from this group, send email to google-appengine+unsubscr...@googlegroups.com. For more options,

[google-appengine] Re: app dashboard not accessible

2010-11-23 Thread dflorey
It would be helpful if the app engine status page would indicate dashboard outage. On 23 Nov., 22:19, Gaurav Vaish gaurav.va...@gmail.com wrote: +1. Dashboard (https://appengine.google.com) gives 500. -- Happy Hacking, Gaurav Vaishhttp://www.mastergaurav.com On Nov 24, 2:14 am, Ikai Lan

[google-appengine] cache login/pw for appcfg in linux

2010-11-23 Thread pdknsk
I've been using Linux before to deploy and appcfg saved the login credentials for a few hours, but have not figured out how to enable it since I installed it on a new system. Does it require specific python modules or is there a setting that can be set? Thanks. -- You received this message

[google-appengine] Re: 500 error when accessing GAE dashboard

2010-11-23 Thread Kevin Whinnery
I am also getting a 500 error when attempting to access http://appengine.google.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-appeng...@googlegroups.com. To unsubscribe from this group, send

Re: [google-appengine] Re: GAE down?? Thousands of 500 Request was aborted after waiting too long

2010-11-23 Thread A. Stevko
Yeah - talking about eating their own dog food. On Tue, Nov 23, 2010 at 1:17 PM, observer247 prem...@gmail.com wrote: https://appengine.google.com/ is down ! 500 Server Error Is there a status page where we can see the status of app engine in general. Using python. On Nov 23, 1:07 pm,

Re: [google-appengine] Re: app dashboard not accessible

2010-11-23 Thread A. Stevko
@Krishna what is the link to that console? its not in my bookmarks, On Tue, Nov 23, 2010 at 1:24 PM, dflorey daniel.flo...@gmail.com wrote: It would be helpful if the app engine status page would indicate dashboard outage. On 23 Nov., 22:19, Gaurav Vaish gaurav.va...@gmail.com wrote: +1.

[google-appengine] Re: app dashboard not accessible

2010-11-23 Thread Gaurav Vaish
Up now! Thanks Ikai... -- Happy Hacking, Gaurav Vaish http://www.mastergaurav.com On Nov 24, 2:33 am, A. Stevko andy.ste...@gmail.com wrote: @Krishna what is the link to that console? its not in my bookmarks, On Tue, Nov 23, 2010 at 1:24 PM, dflorey daniel.flo...@gmail.com wrote: It

[google-appengine] Re: Is it possible to add Expiry headers to static files ?

2010-11-23 Thread J
Adding them is easy, as Robert indicated. But be careful, not everything in the infrastructure respects them. Perhaps I should have said, respects them too much. If you have a static file header that is supposed to expire next Sunday, and update the file before that time, the infrastructure is

[google-appengine] Re: app dashboard not accessible

2010-11-23 Thread Krishna
@Andy http://code.google.com/status/appengine/detail/datastore/2010/11/23#ae-trust-detail-datastore-get-latency Click on the status icons (check marks etc.) for each service to get to the latency data for that particular service on that particular day. On Nov 23, 1:33 pm, A. Stevko

[google-appengine] Re: app dashboard not accessible

2010-11-23 Thread Stevko
it was up for a minute but now it is down... -- 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-appeng...@googlegroups.com. To unsubscribe from this group, send email to

Re: [google-appengine] Re: app dashboard not accessible

2010-11-23 Thread Ikai Lan (Google)
Looks like it's serving 500s again. Follow this thread here: http://groups.google.com/group/google-appengine-downtime-notify/browse_thread/thread/d2b4ce71754bade5 -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger: http://googleappengine.blogspot.com Reddit:

Re: [google-appengine] Re: 500 error when accessing GAE dashboard

2010-11-23 Thread Ikai Lan (Google)
We're investigating. Follow this thread for updates: http://groups.google.com/group/google-appengine-downtime-notify/browse_thread/thread/d2b4ce71754bade5 -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger: http://googleappengine.blogspot.com Reddit:

[google-appengine] Re: Is it possible to add Expiry headers to static files ?

2010-11-23 Thread Jason C
Since static files are only updated when you push new releases, you can add a version number into the url for the static resource. E.g. (python/django), in app.yaml: - url: /__v[^\/]+/static static_dir: yourapp/static expiration: 365d Then in your template, create a templatetag (or

Re: [google-appengine] cache login/pw for appcfg in linux

2010-11-23 Thread Ikai Lan (Google)
I assume you're doing this for automated deployment? Instead of saving these, you're probably better off using the email parameter and the --passin param to pipe in the password. Though it *would* be pretty cool to have deployment built in as a feature for Google Code/Github/BitBucket checkins

[google-appengine] Re: app dashboard not accessible

2010-11-23 Thread Stevko
Thanks for the link. -- 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-appeng...@googlegroups.com. To unsubscribe from this group, send email to google-appengine+unsubscr...@googlegroups.com. For

[google-appengine] Re: cache login/pw for appcfg in linux

2010-11-23 Thread pdknsk
Thanks, this works too. However I'm sure it was automatic before. I just entered login and password once when prompted, and was not asked again on further update requests for at least a few hours, using python appcfg update /app. -- You received this message because you are subscribed to the

[google-appengine] Re: Policy for instance startup

2010-11-23 Thread nickmilon
Not been a Googler can't help much with this. Having said that, I suspect there is a kind of build in algorithm that does some kind of application profiling taking into acount QPS, response times, and other parameters which adjusts instance life time, number of instances to start etc.. This could

[google-appengine] Re: cache login/pw for appcfg in linux

2010-11-23 Thread Tim Hoffman
Hi there is a .appcfg_cookies and an .appcfg_nag I am pretty sure the stored user/id passwd is stored in cookies. nag stores a property about being told about updates to the sdk. --no_cookies prevents auth cookies from being stored, so I would check to see if there is a .appcfg_cookies even

[google-appengine] Re: cache login/pw for appcfg in linux

2010-11-23 Thread pdknsk
Success. It were indeed the cookies. It had created the file, but it was empty. I deleted the cookie, and it worked after appcfg wrote a new file. Thanks! I don't know though why it couldn't just overwrite the file. -- You received this message because you are subscribed to the Google Groups

[google-appengine] Re: Cannot deploy my app to the GAE

2010-11-23 Thread Gaurav Vaish
Change the web.xml and remove the reference to the DTD. The problem may actually not be from the appengine but from the java.sun.com server... I also faced this issue several times and found that everytime the dashboard / appengine server was up. On scruitiny, I found that the problem was caused

[google-appengine] DeadlineExceededError / Timeout

2010-11-23 Thread Alexander W.
Is there anything I can to to avoid DeadlineExceededErrors (model .put() or query) and other Timeout Errors? I don't care if the number is low compared to the total amount of requests, but I care about the 20.000 users a day that get an error when loading my app due to these errors. -- You

Re: [google-appengine] DeadlineExceededError / Timeout

2010-11-23 Thread 风笑雪
You can use task queue to do put() operations. If you don't care about the query result, you can set deadline for its rpc and display a proper page when timeout. -- keakon On Wed, Nov 24, 2010 at 11:31 AM, Alexander W. startupw...@googlemail.comwrote: Is there anything I can to to

[google-appengine] Re: DeadlineExceededError / Timeout

2010-11-23 Thread Tim Hoffman
Hi Are these large queries and/or lot's of put's. Have you looked at appstats to see if your doing these operations efficiently ? Are you utilising caching with memcache to reduce your need for querying all the time ? Are you doing batch fetch's on your query results rather than iterating ?

Re: [google-appengine] DeadlineExceededError / Timeout

2010-11-23 Thread Alexander W.
I thought about using taskqueues, but it's important that I get the result of the put() operation immediately. Maybe the new channel api will help (release 1.4.0), so that I'll use task queues for put() operations and push an info to the user once the operation result is positive. At the moment

[google-appengine] Re: DeadlineExceededError / Timeout

2010-11-23 Thread Alexander W.
Yes I've looked at appstats, looks alright so far. Problem 1: put() operations (ajax request) It's one put() operation per request. Problem 2: queries (normal requests) It's important that the results of these queries are up to date, so I have to fetch them every time a user loads the

[google-appengine] urlfetch / facebook api

2010-11-23 Thread Alexander W.
When a user loads my app for the first time, I exchange his facebook session_key for an facebook access_token, so that I can fetch his profile information in order to create a new user account in my db. This is done via urlfetch. The strange thing is, that the urlfetch result sometimes is None

[google-appengine] Re: Pagination using Query Cursors

2010-11-23 Thread Tarun
Hi, I have not yet found the appropriate solution to this problem. The idea of iterating and caching the cursor values at every start of the page is one solution that I had also tried. It works, but I guess it is not the optimum way to do it. There should be a better way which has no performance

[google-appengine] Re: DeadlineExceededError / Timeout

2010-11-23 Thread Tim Hoffman
Hi A single put ajax or otherwise shouldn't take to long, are you doing the put inside transactions, with large entity groups? That could cause problems. This isn't a big counter or something is it ? How long is a single put taking ? and are you getting a Datastore timeout or some other error ?

[google-appengine] Re: Policy for instance startup

2010-11-23 Thread Tomas Alaeus
Probably. With some more thinking I got to this conclusion: At first, an application can utilize up to 30 instances. After having used all those instances for a few minutes, and it still isn't enough, GAE will increase the maximum number of available instances to 40, and then to 50 etc. Every