[google-appengine] Re: Final infrastructure decision, GAE or AWS?

2010-12-02 Thread Raymond C.
My most active game currently serving thousands of players daily, but it is very profitable. One good thing of AppEngine is it scale, but still the reliability of datastore hurts a bit consistently. On Dec 3, 12:16 pm, Shane wrote: > Hi Raymond, > > It's interesting you're using GAE for games.  

Re: [google-appengine] Re: Final infrastructure decision, GAE or AWS?

2010-12-02 Thread Eli Jones
Presuming that RightScale is within your budget (seems it might be) and presuming that RightScale does a seamless job scaling out Zynga's gaming apps (I don't play their games, but I'd guess they work well) and presuming that there is no impact on your development process (I don't have any sense fo

[google-appengine] Does Channel API support pushing UTF-8 message?

2010-12-02 Thread Alfred Yang
Do we need to set the ContentType of the response? Thanks, Alfred -- 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 goog

Re: [google-appengine] Channel API as broadcast messenger

2010-12-02 Thread Robert Kluin
Hi Rafael, Do all users care about the same timer, or does each user have their own, or is there one timer for a group, or something else? Do you need to push the remaining time at particular time for some reason? Robert On Thu, Dec 2, 2010 at 20:35, Rafael Sierra wrote: > I know that

Re: [google-appengine] what's the new 'includes' in python runtime app config file?

2010-12-02 Thread Robert Kluin
Hi Kuber, Are you talking about 'includes' in app.yaml? http://code.google.com/appengine/docs/python/config/appconfig.html#Includes I think the docs there explain it pretty well. The basic idea is that you could write a package, or split your app into packages, and include an 'include.ya

Re: [google-appengine] Cannot see Application Dashboard

2010-12-02 Thread Mark Walker
Thanks Ikai, much appreciated. - Mark Walker Please excuse brevity, sent from iPhone. On 03/12/2010, at 1:02 PM, "Ikai Lan (Google)" wrote: > Try logging in here: > > http://appengine.google.com/a/maestroresults.com > > -- > Ikai Lan > Developer Programs Engineer, Google App Engin

[google-appengine] Re: Final infrastructure decision, GAE or AWS?

2010-12-02 Thread Shane
BTW Adam, thanks for the Linode and SOLR references. Very cool. On Dec 3, 8:09 am, Adam Sah wrote: > I'm a *very* longtime GAE user and former googler and I love it... but > for now, >    I usually recommend it as an *ingredient* and not as the backbone > of the >    whole system. > > Specifical

[google-appengine] Re: Final infrastructure decision, GAE or AWS?

2010-12-02 Thread Shane
Hi Raymond, It's interesting you're using GAE for games. The key is, what sort of games? Can you send a link to your games? Also, the critical point is what scale are you running at? If it's millions of Daily Active Users, then you're in the domain that I'm interested in, otherwise the problem

[google-appengine] Re: Final infrastructure decision, GAE or AWS?

2010-12-02 Thread Shane
This is a great use of GAE, however the web front end is the guts of a social game. The application servlets are what are going to be doing most of the work, so they need to be on a reliable infrastructure. Shane On Dec 3, 1:55 pm, James Broberg wrote: > Couldn't agree with Adam more. Why not u

[google-appengine] Re: Final infrastructure decision, GAE or AWS?

2010-12-02 Thread Shane
Hi Adam, Thanks for the response. One way I was considering approaching the issue of keeping the doors open to migrate back to GAE at a later date, is to use something like AppScale on AWS. This way I can be more or less on the same path as GAE. I am really keen to see the GAE for Business plan

[google-appengine] Re: Random DeadlineExceededExceptions, "Request was aborted..." and throttle_code=2

2010-12-02 Thread Raymond C.
I have having the same issue for 2 months now and its still happening as of writing. On Dec 3, 4:21 am, Ikai Lan wrote: > We're rolling back a change that was made earlier causing these issues. The > error rates should be dying down. We should be operating normally soon. > > -- > Ikai > > On Thu,

[google-appengine] Re: Final infrastructure decision, GAE or AWS?

2010-12-02 Thread Raymond C.
I have been purely using AppEngine for hosting social games for nearly 2 years now and heres my thought: AppEngine is decided for read heavy websites which have been emphasized by googler for long. Its not true for dynamic/social games which more than 50% operations are write operations. The data

Re: [google-appengine] Version 1.4.0 is out!

2010-12-02 Thread James Broberg
Great! What's the ETA for the SDK in Eclipse? The plugin is at 1.4.0 but the SDK bundle for Eclipse is still 1.3.8 On 3 December 2010 07:14, Ikai Lan (Google) > wrote: > Hey everyone, > > Version 1.4.0 is officially released! Documentation will go live shortly. > In the meantime, check out our b

Re: [google-appengine] Re: Final infrastructure decision, GAE or AWS?

2010-12-02 Thread James Broberg
Couldn't agree with Adam more. Why not use both? For MetaCDN.com we use GAE as the "web role" / front end and do the heavy lifting (large file replication, video encoding, etc) on EC2 instances around the globe on an as needed basis. On 3 December 2010 08:09, Adam Sah wrote: > I'm a *very* longt

[google-appengine] Re: Version 1.4.0 is out!

2010-12-02 Thread Tim Hoffman
Juts spoke to Nick Johnson on IRC and he clarified the position somewhat. It should read. "In the Python runtime, an instance is killed and restarted when a request handler hits DeadlineExceededError *during a cold start and the exception is not caught. (and not when a request hits a warm instanc

[google-appengine] Re: Version 1.4.0 is out!

2010-12-02 Thread Tim Hoffman
Hi Ikai Thanks for the clarification, (JohnP's description is probably clearer if accurate, compared with the release notes) I think this in general is a good move, though I am still concerned that if you get past the imports and actually are doing work (like rendering a template) during a startu

Re: [google-appengine] Re: Version 1.4.0 is out!

2010-12-02 Thread 风笑雪
Hi Ikai, can you explain "When iterating over query results, the datastore will now asynchronously prefetch results, reducing latency in many cases by 10-15%."? Does it only affect the pattern: for entity in query: ... Can we get this benefit by using cursor? Thank you. -- keakon --

[google-appengine] what's the new 'includes' in python runtime app config file?

2010-12-02 Thread Kuber
I noticed in app config documentation that new directive 'includes' is added. It's described to include any library or module into runtime. While you can always import python library in code, what's this new directive for? My guess is it's like 'app' in django and lets you to include packages by i

[google-appengine] Re: Version 1.4.0 is out!

2010-12-02 Thread sserrano
Thanks for the great work!! This release not only helps to do apps easier, it also opens new kind of things that are possible with the App Engine. Cheers, Sebastian -- web: www.sserrano.com twitter: sserrano44 On Dec 2, 5:14 pm, "Ikai Lan (Google)" wrote: > Hey everyone, > > Version 1.4.0 is o

[google-appengine] Re: More deployment problems today

2010-12-02 Thread Dave Watson
I'm still having constant problems - at least 50% of deployments are still failing right now. On Dec 2, 3:30 pm, Daniel wrote: > Still broken for me.  Another day, another problem with app engine... > > On Dec 2, 2:14 pm, Amir wrote: > > > > > > > > > It's working again. -- You received this m

Re: [google-appengine] Re: appengine.google.com returns 500 error

2010-12-02 Thread Ikai Lan (Google)
Whenever you see a 503 on deploy, can you try turning off precompilation and giving it a try? We've been having issues with this service lately. -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger: http://googleappengine.blogspot.com Reddit: http://www.reddit.com/r/appengine Twitter

Re: [google-appengine] Cannot see Application Dashboard

2010-12-02 Thread Ikai Lan (Google)
Try logging in here: http://appengine.google.com/a/maestroresults.com -- 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 Thu, Dec 2, 2010 at 4:46 PM, tukutel

Re: [google-appengine] Re: The location will be effect connect speed?

2010-12-02 Thread Ikai Lan (Google)
The data centers are in North America. For the most part, users in the United States will not notice latencies. For users outside the United States, the request goes like this: - Request goes to a geographically close Google front end data center - From the Google data center, requests are routed

Re: [google-appengine] Outbound emails are getting marked as spam by SpamCop today

2010-12-02 Thread Ikai Lan (Google)
We can. Can you email me any more information about the application ID or email header information? -- 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, N

Re: [google-appengine] Re: Suitability of App Engine for Database Display App

2010-12-02 Thread Ikai Lan (Google)
BigQuery would certainly work, but I don't think it's a fit for this project. BigQuery is best used for very, very large datasets that do not change. The Google I/O demo was based on every single edit ever made to Wikipedia - this data is effectively immutable. -- Ikai Lan Developer Programs Engin

[google-appengine] Channel API as broadcast messenger

2010-12-02 Thread Rafael Sierra
I know that I cannot share Client IDs between multiple users, but I still need something like a broadcast message system. Today, users make requests in regular intervals to get the update of the information, let's say a timer counting down like a bomb, each client asks the server how much time lef

Re: [google-appengine] Querying data that has unowned relationships

2010-12-02 Thread Jeff Schwartz
It looks like a 1 to 1 relationship so why not denormalize the name class to include the fields of your address class? Jeff On Thu, Dec 2, 2010 at 7:19 PM, fb wrote: > Hi, > > I have a question regarding querying when using unowned relationships. > I'm having real problems working this out due

[google-appengine] Re: appengine.google.com returns 500 error

2010-12-02 Thread Jing Huang
Some urls of my application started to return server error from yesterday and they still do so now. The home page can be loaded although slow. Some links from the homepage work, some always don't since yesterday. Also, I deployed a new version with minor layout change, the problem is not solved and

[google-appengine] Re: Final infrastructure decision, GAE or AWS?

2010-12-02 Thread Shane
Although it's hard to say exactly what Zynga is doing, I certainly know how I would approach the problem, and for a start I'd use RightScale to manage our instances to avoid the problems to quite rightly mention. :) Cheers, Shane On Dec 3, 4:34 am, Eli Jones wrote: > Maybe one of the Google deve

[google-appengine] Re: Final infrastructure decision, GAE or AWS?

2010-12-02 Thread Shane
Yes, we're definitely going to use RightScale with AWS if we take that path. It takes away a lot of the headaches Eli mentioned. Shane On Dec 3, 5:03 am, Grzegorz Machniewski wrote: > > Do you know how Zynga's backend is set up on AWS?  I would imagine it's > > pretty complex so, you have to ha

[google-appengine] Blobstore upload requiring a redirect for no reason?

2010-12-02 Thread Piotr Jaroszyński
Hello, Is there any good reason for: "create_upload_url(success_path) ... The handler at that path can process the rest of the form, and must return a response with an HTTP redirect code (301, 302, 303)." It makes form validation a PITA - in case of invalid input I have to use some kind of stora

[google-appengine] Re: Version 1.4.0 is out!

2010-12-02 Thread johnP
So it could be rephrased from: "In the Python runtime, an instance is killed and restarted when a request handler hits DeadlineExceededError. " to: "In the Python runtime, an instance is killed and restarted when a request handler hits DeadlineExceededError *during a cold start (and not when a r

[google-appengine] Cannot see Application Dashboard

2010-12-02 Thread tukutela
Hi everyone, Just a newbie to AppEngine, I've created the App, run using localhost and appspot.com domains without problems, but cannot for some reason get to the Dashboard. It always redirects me to https://appengine.google.com/start this happens regardless of how many apps I create locally then

Re: [google-appengine] Re: Version 1.4.0 is out!

2010-12-02 Thread Ikai Lan (Google)
No, this is specifically to address DeadlineExceededExceptions on cold starts. Partial imports due to this exception on startup can cause apps to end up in a bad state. -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger: http://googleappengine.blogspot.com Reddit: http://www.reddit

[google-appengine] Re: Prerelease SDK 1.4.0 regression? "UnboundLocalError: local variable 'clone' referenced before assignment"

2010-12-02 Thread PK
This (issue 4109) appears fixed in the official 1.4.0 release. Thanks for fixing it and for giving us the opportunity to find and report such issues before the release ships. I was also pleased to verify that a 1.3.8 regression (issue 3895 & 3907) is also fixed. PK http://www.gae123.com On Nov 22

[google-appengine] Querying data that has unowned relationships

2010-12-02 Thread fb
Hi, I have a question regarding querying when using unowned relationships. I'm having real problems working this out due to no real JOIN syntax. Anyway, my problem is simple to explain. I have a Name class whose objects I am persisting: @PersistenceCapable(identityType = IdentityType.APPLICATION

[google-appengine] Re: Version 1.4.0 is out!

2010-12-02 Thread Tim Hoffman
Hi Ikai So if we catch a deadline exceeded is the instance recycled ? (I hope not) Just trying to understand when the instance will be recycled. For instance if a deadlineexceeded occurs during imports then recycling is probably good. a deadlineexceeded during a query causing a recycling of the

[google-appengine] Re: Questions about Channel API experimentation in 1.4.0 pre-release

2010-12-02 Thread Tim Meadowcroft
On Thursday, December 2, 2010 11:02:47 PM UTC, Remigius wrote:Tim, after a first glimpse on the newly published channel doc - still wet - it looks like: o only one client is allowed per cannel id o no clean-up is needed o connected clients must be tracked by the server Yep - the docs at htt

Re: [google-appengine] Re: Version 1.4.0 is out!

2010-12-02 Thread Ikai Lan (Google)
Tim, it should be on any DeadlineExceededError. David, I don't have a diff. Is there anything in particular you are looking for? -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger: http://googleappengine.blogspot.com Reddit: http://www.reddit.com/r/appengine Twitter: http://twitte

Re: [google-appengine] Re: Version 1.4.0 is out!

2010-12-02 Thread Andrius A
Thank you! great work done! Still I am not able to access Datastore Admin. First time I visit it I am prompted to login with Google Account, once I login, I get this error: Error: Forbidden Your client does not have permission to get URL /_ah/datastore_admin/?app_id=cloudbidder&kind=__unapplied_w

[google-appengine] Re: Version 1.4.0 is out!

2010-12-02 Thread Tim Hoffman
Hi Ikae Can you elaborate on In the Python runtime, an instance is killed and restarted when a request handler hits DeadlineExceededError. This should fix an issue related to intermittent SystemErrors using Django. http://code.google.com/p/googleappengine/issues/detail?id=772 Is this for

[google-appengine] Re: Questions about Channel API experimentation in 1.4.0 pre-release

2010-12-02 Thread Remigius
Tim, after a first glimpse on the newly published channel doc - still wet - it looks like: o only one client is allowed per cannel id o no clean-up is needed o connected clients must be tracked by the server If you plan to create an entity per active channel in the datastore - this could be a ch

[google-appengine] Re: Version 1.4.0 is out!

2010-12-02 Thread ustunozgur
On Dec 2, 10:14 pm, "Ikai Lan (Google)" wrote: > - The developer who uploaded an app version can download that version's code >   using the appcfg.py download_app command. This feature can be disabled on >   a per application basis in the admin console, under the 'Permissions' tab. >   Once disabl

[google-appengine] Re: Version 1.4.0 is out!

2010-12-02 Thread David Underhill
Thanks docs for the task retry params have a minor spelling error 'retryies'. Ikai: Any chance you could provide a diff between the 1.3.8 and 1.4.0 documentation? ~ David On Dec 2, 1:17 pm, "Ikai Lan (Google)" wrote: > The documentation should be live. Example: > > Channel API: > > http://code

[google-appengine] Re: System Status page misleading

2010-12-02 Thread vlad
+1 api-status.com appears to represent status more truthfully. That is just my feel though. I do not understand how google status is all "green" while a few developers have been screaming that HTTP PUT, DELETE requests do not work at all. TaskQueue delays went nuts last night, etc. On Dec 2, 7:5

Re: [google-appengine] Re: Version 1.4.0 is out!

2010-12-02 Thread Jorge Guberte
Will i have any trouble with the app i'm developing if i upgrade to the 1.4.0 SDK? Or upgrading is recommended? 2010/12/2 Ikai Lan (Google) > > The documentation should be live. Example: > > Channel API: > > http://code.google.com/appengine/docs/java/channel/ > > If you see an error, wait a few

Re: [google-appengine] Re: Version 1.4.0 is out!

2010-12-02 Thread Ikai Lan (Google)
The documentation should be live. Example: Channel API: http://code.google.com/appengine/docs/java/channel/ If you see an error, wait a few minutes and refresh again. -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger: http://googleappengine.blogspot.com Reddit: http://www.reddi

Re: [google-appengine] Re: Version 1.4.0 is out!

2010-12-02 Thread Ikai Lan (Google)
The admin console for version 1.4.0 is live. You should be able to enable "Always On" instances now if billing is enabled. -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger: http://googleappengine.blogspot.com Reddit: http://www.reddit.com/r/appengine Twitter: http://twitter.com/a

[google-appengine] Re: Final infrastructure decision, GAE or AWS?

2010-12-02 Thread Adam Sah
I'm a *very* longtime GAE user and former googler and I love it... but for now, I usually recommend it as an *ingredient* and not as the backbone of the whole system. Specifically, GAE can't support certain libraries (e.g. anything with C/C++), so you inevitably need another service like

Re: [google-appengine] Re: Version 1.4.0 is out!

2010-12-02 Thread Ikai Lan (Google)
Thanks for the report. The fix for this bug will be deployed later in the day. -- 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 Thu, Dec 2, 2010 at 12:44 PM

[google-appengine] Re: Version 1.4.0 is out!

2010-12-02 Thread David Underhill
Thanks, this is an exciting release. Any chance you could provide a diff between the 1.3.8 and 1.4.0 documentation? ~ David On Dec 2, 12:14 pm, "Ikai Lan (Google)" wrote: > Hey everyone, > > Version 1.4.0 is officially released! Documentation will go live shortly. In > the meantime, check out

[google-appengine] Re: Version 1.4.0 is out!

2010-12-02 Thread pdknsk
Thank you Google. However I've noticed what can only be a bug. According to the dashboard Task Queue Stored Task Bytes quota is 1,099,511,627,776,000 bytes or about 1100TB. I doubt 100,000,000,000 for Task Queue Stored Task Count is correct either. -- You received this message because you are su

[google-appengine] Re: More deployment problems today

2010-12-02 Thread Daniel
Still broken for me. Another day, another problem with app engine... On Dec 2, 2:14 pm, Amir wrote: > It's working again. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appeng...@googlegroups.

Re: [google-appengine] Re: Version 1.4.0 is out!

2010-12-02 Thread Jeff Schwartz
This is an awesome release. Thanks. On Thu, Dec 2, 2010 at 3:20 PM, Ikai Lan (Google) > wrote: > Update: We had to roll back the admin console updates. It'll go live later. > > > -- > Ikai Lan > Developer Programs Engineer, Google App Engine > Blogger: http://googleappengine.blogspot.com > Reddi

Re: [google-appengine] Unexpected failure has occurred when deploying

2010-12-02 Thread Ikai Lan (Google)
503 usually implies there's something wrong with precompilation. Can you try disabling precompilation and trying again? There are currently other issues globally due to a change we made that we are currently rolling back. -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger: http://

Re: [google-appengine] Re: High Latencies

2010-12-02 Thread Ikai Lan (Google)
Yeah, there was an issue with a change we made. We're rolling back the change. Expect things to return to normal shortly. -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger: http://googleappengine.blogspot.com Reddit: http://www.reddit.com/r/appengine Twitter: http://twitter.com/ap

Re: [google-appengine] Re: Random DeadlineExceededExceptions, "Request was aborted..." and throttle_code=2

2010-12-02 Thread Ikai Lan
We're rolling back a change that was made earlier causing these issues. The error rates should be dying down. We should be operating normally soon. -- Ikai On Thu, Dec 2, 2010 at 12:05 PM, Jason Collins wrote: > I forgot to mention: the model that always seem to be part of this > avalanche has

[google-appengine] Re: Version 1.4.0 is out!

2010-12-02 Thread Ikai Lan (Google)
Update: We had to roll back the admin console updates. It'll go live later. -- 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 Thu, Dec 2, 2010 at 12:14 PM, I

[google-appengine] Version 1.4.0 is out!

2010-12-02 Thread Ikai Lan (Google)
Hey everyone, Version 1.4.0 is officially released! Documentation will go live shortly. In the meantime, check out our blog post: http://googleappengine.blogspot.com/2010/12/happy-holidays-from-app-engine-team-140.html Release notes are below: Python - The Always On feature allows

Re: [google-appengine] Logging info missing

2010-12-02 Thread Robert Kluin
My _application_ logs are missing for a few minutes as well: [02/Dec/2010:10:03:00 -0800] to [02/Dec/2010:10:06:19 -0800] Requests were logged. Robert On Thu, Dec 2, 2010 at 14:32, Chris Copeland wrote: > Please star this issue: > http://code.google.com/p/googleappengine/issues/detail?id

[google-appengine] Re: Random DeadlineExceededExceptions, "Request was aborted..." and throttle_code=2

2010-12-02 Thread Jason Collins
I forgot to mention: the model that always seem to be part of this avalanche has many composite indexes: 63. j On Dec 2, 2:01 pm, Jason Collins wrote: > Hi Per, > > We have been seeing similar bursts of DeadlineExceededErrors (DEE) on > our application (appid: steprep), and we have been seeing t

Re: [google-appengine] Re: High Latencies

2010-12-02 Thread Robert Kluin
FYI, see similar variations on non-loading requests too. The loading requests are just a bit more extreme. Robert On Thu, Dec 2, 2010 at 15:04, Robert Kluin wrote: > Wild variations here too. > > Here is a bit of log data (for the same URL): > [02/Dec/2010:11:52:35 -0800] ms=10079 cpu_ms=7

Re: [google-appengine] Re: High Latencies

2010-12-02 Thread Robert Kluin
Wild variations here too. Here is a bit of log data (for the same URL): [02/Dec/2010:11:52:35 -0800] ms=10079 cpu_ms=752 api_cpu_ms=262 cpm_usd=0.021384 loading_request=1 pending_ms=8149 [02/Dec/2010:11:52:21 -0800] ms=1420 cpu_ms=312 api_cpu_ms=8 cpm_usd=0.008862 loading_request=1 [02/Dec/2010:1

[google-appengine] Re: Random DeadlineExceededExceptions, "Request was aborted..." and throttle_code=2

2010-12-02 Thread Jason Collins
Hi Per, We have been seeing similar bursts of DeadlineExceededErrors (DEE) on our application (appid: steprep), and we have been seeing this for some time (weeks). The symptom: datastore put()'s that normally take 100-150ms to complete suddenly take 30-s+ and cause a DEE. Usually, many processes

Re: [google-appengine] source IP for URLfetch

2010-12-02 Thread Barry Hunter
$ dig _netblocks.google.com TXT will give you the ranges. But they are nesserially broad, and pretty much include the whole of Google - not just AppEngine. (they are of course for SPF but apprently urlfetchs should always come from the range too - also no idea how often it changes) On 2 December

[google-appengine] source IP for URLfetch

2010-12-02 Thread Brian
Hi, I hope this is the right place to ask this question. I have an application that I'd like to implement using app engine. It needs to send messages via an SMS gateway. The gateway offers a http interface and so I was planning to use a cron-driven URL fetch to send the SMS requests. The problem

[google-appengine] Re: Random DeadlineExceededExceptions, "Request was aborted..." and throttle_code=2

2010-12-02 Thread stevep
Hi Per, I started a thread about issues with having put()s in your on-line handler. Although my initial concern was a little different (how to best confirm writes), it did verge toward the issues I think you are facing. My conclusion is that any put() to a model with complex indexes will need to

Re: [google-appengine] Logging info missing

2010-12-02 Thread Chris Copeland
Please star this issue: http://code.google.com/p/googleappengine/issues/detail?id=3338 Out of the 111 unacknowledged production issues, this is currently #1 with 19 stars. On Thu, Dec 2, 2010 at 11:59 AM, Andy wrote: > So, whenever I am able to access the admin panel while it's not > erroring,

[google-appengine] Re: High Latencies

2010-12-02 Thread Cameron
Yeah, I've been seeing a lot of datastore timeouts for my app (gqueues) and frequent 500 Server Errors. One minute everything is running super fast, the next I get 500 errors. Very frustrating. And my customers just think the app is unreliable and not robust. Any word on what's going on today?

[google-appengine] Re: More deployment problems today

2010-12-02 Thread Amir
It's working again. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appeng...@googlegroups.com. To unsubscribe from this group, send email to google-appengine+unsubscr...@googlegroups.com. For mo

[google-appengine] Re: More deployment problems today

2010-12-02 Thread Ben Welsh
I am also getting this error on two different apps when trying to update. Error starts at the "Cloning X application files" stage. -- 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...@googleg

[google-appengine] Re: The location will be effect connect speed?

2010-12-02 Thread Dave Watson
I believe Google's datacenter is located in California, so it shouldn't matter where you upload from. On Dec 2, 1:13 am, hpbg delta wrote: > I want make sure the user connects is effectuation in American if I > upload the project from Taiwan. > > or user in Taiwan more fast connect the web data t

[google-appengine] Re: More deployment problems today

2010-12-02 Thread Amir
Likewise. I'm getting 500s 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-appeng...@googlegroups.com. To unsubscribe from this group, send email to google-appengine+unsubscr...@googlegroups

[google-appengine] High Latencies

2010-12-02 Thread Steve
I'm seeing 2000-8000 pending_ms lately. Is there an infrastructure disturbance? --Steve -- 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

[google-appengine] More deployment problems today

2010-12-02 Thread Dave Watson
I've gotten two 500 errors in a row when trying to update an existing version of my app engine/python app. Seems like whatever has been breaking is still broken. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send em

Re: [google-appengine] Final infrastructure decision, GAE or AWS?

2010-12-02 Thread Grzegorz Machniewski
> Do you know how Zynga's backend is set up on AWS? I would imagine it's pretty complex so, you have to have the system architects and administrators to manage that. Zynga is using RightScale as a platform management software ( http://www.rightscale.com/ )... it automates management and scaling

[google-appengine] The location will be effect connect speed?

2010-12-02 Thread hpbg delta
I want make sure the user connects is effectuation in American if I upload the project from Taiwan. or user in Taiwan more fast connect the web data than in American. Thank you. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to t

[google-appengine] Unexpected failure has occurred when deploying

2010-12-02 Thread Ryan Weber
I'm trying to deploy code and am getting this message: Scanning files on local disk. Initiating update. Email: Password: Cloning 111 static files. Cloned 100 files. Cloning 61 application files. Precompilation starting. Rolling back the update. Error 503: --- begin server output --- Try Again (50

[google-appengine] Logging info missing

2010-12-02 Thread Andy
So, whenever I am able to access the admin panel while it's not erroring, I'm trying to view the request logs. But all the logging info is missing - debugs, infos, errors, all gone. I also get a 500 error when trying to download the request logs. -- You received this message because you are sub

[google-appengine] Query the Task Queue Size?

2010-12-02 Thread Brian Olson
There seems to me to be a gap in the API, to query the size of a task queue. I want to know how many queued tasks/bytes/etc are on a task queue, (and its configured rate and bucket size, while I'm at it). We're running into a problem where our app enqueue's many tasks for one user, and then no ot

Re: [google-appengine] Final infrastructure decision, GAE or AWS?

2010-12-02 Thread Eli Jones
Maybe one of the Google developers will see this and can provide you with an informed answer.. but, if it slips through the cracks, you should definitely ask during the IRC office hours (or just check #appengine on irc.freenode.net, since someone from Google may be there at any time.) Do you know

[google-appengine] Re: google app engine stopped opening for me! Help!!

2010-12-02 Thread Tony
I found the answer to this myself last night: I just deleted the google_appengine_launcher.ini file that was giving me the error. Hope this helps someone! -Tony -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send

Re: [google-appengine] Unusual delays on TaskQueue

2010-12-02 Thread Eli Jones
I checked my app, which has a chained task that follows a fixed schedule (every 5 mins.) So, It should execute at 8:00:00AM, 8:05:00AM, 8:10:00AM, etc. I saw a 80 second delay in it at 8:06:21AM and then another 80 second delay at 8:32:00 AM (there is a one time task that follows each 5 minute ta

[google-appengine] Re: System Status page misleading

2010-12-02 Thread dflorey
Thank you! That is a very helpful link. On Dec 2, 3:46 pm, Erwin Streur wrote: > In another topic somebody mentioned api-status.com. > Indeed I find the following page to represent the GAE status much > better:http://api-status.com/6404/117406/Google-App-Engine-API -- You received this message

[google-appengine] Re: System Status page misleading

2010-12-02 Thread Erwin Streur
In another topic somebody mentioned api-status.com. Indeed I find the following page to represent the GAE status much better: http://api-status.com/6404/117406/Google-App-Engine-API -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to

[google-appengine] Re: is there a way to use a .so library (C library) in GAE?

2010-12-02 Thread Tim Hoffman
Hi You can only run pure python, on appengine (and of course java ;-) T On Dec 2, 9:54 pm, BarrenTeam wrote: > Hello, I have a .so.2 (C library) and a Python interface that wrapper > this library. The interface uses ctypes but i think that ctypes is > incompatible with gae python environement,

Re: [google-appengine] is there a way to use a .so library (C library) in GAE?

2010-12-02 Thread Ross M Karchner
No-- you can only use modules that are 100% Python. On Thu, Dec 2, 2010 at 8:54 AM, BarrenTeam wrote: > Hello, I have a .so.2 (C library) and a Python interface that wrapper > this library. The interface uses ctypes but i think that ctypes is > incompatible with gae python environement, (right !

[google-appengine] is there a way to use a .so library (C library) in GAE?

2010-12-02 Thread BarrenTeam
Hello, I have a .so.2 (C library) and a Python interface that wrapper this library. The interface uses ctypes but i think that ctypes is incompatible with gae python environement, (right !? ) I have another interface for the same library that uses numpy but also this python module is incompatible w

Re: [google-appengine] Re: Log inconsistencies starting at 11.30am (EST) [critical]

2010-12-02 Thread Maxim Lacrima
I had the same issue two or three days ago. Now it seems that logs are consistent. On 2 December 2010 13:59, Denis wrote: > I have the same issue along with Server error 500. > There was a bug in code - on my side - but server went down and no > logs > were seen. On next day seems issue gone. > >

[google-appengine] Errors/s have decreased

2010-12-02 Thread sahid
Hello Community, After your last message in "Google App Engine Downtime Notify" http://groups.google.com/group/google-appengine-downtime-notify/t/d2b4ce71754bade5 My errors/s have decreased! (http://goo.gl/kJBVo) Thank a lot! Sahid -- You received this message because you are subscribed to the

[google-appengine] Re: Log inconsistencies starting at 11.30am (EST) [critical]

2010-12-02 Thread Denis
I have the same issue along with Server error 500. There was a bug in code - on my side - but server went down and no logs were seen. On next day seems issue gone. On 1 дек, 20:17, Peter Ondruska wrote: > This is very "me too", please start mentioned issue hopefully it gets > resolved (soon). >

[google-appengine] Re: error

2010-12-02 Thread Tim Hoffman
You will need to provide a lot more information if you want anyone to help you. At least start with the error/stack trace from the dashboards logs. T On Dec 2, 6:42 pm, syduzzaman shemul wrote: > Error: Server Error The server encountered an error and could not > complete your request. > If the

[google-appengine] error

2010-12-02 Thread syduzzaman shemul
Error: Server Error The server encountered an error and could not complete your request. If the problem persists, please report your problem and mention this error message and the query that caused it. -- You received this message because you are subscribed to the Google Groups "Google App Engin

[google-appengine] Re: django i18n complie messages

2010-12-02 Thread Niklasro
I only needed one script to make i18n: "compile-messages.py", just run it and it updates any edited .po to .mo that connects the translations, somewhat contrary to what the manual states which is running 2 or more scripts. It worked on windows and on Linux when having gettext installed. I hope you

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

2010-12-02 Thread Tim Meadowcroft
On Thursday, December 2, 2010 4:42:55 AM UTC, sophware wrote:looks like the server side is up: check http://shell.appspot.com/ (screenshot) http://dl.dropbox.com/u/6919071/Captures/2010-12-01_2341.png Google App Engine/1.4.0 Python 2.5.2 (r252:60911, May 12 2010, 14:18:27) [GCC 4.3.1] Thanks

[google-appengine] Re: Questions about Channel API experimentation in 1.4.0 pre-release

2010-12-02 Thread Tim Meadowcroft
On Thursday, December 2, 2010 9:26:38 AM UTC, Remigius wrote:In case you don't know, there's a sample app using channels: http://code.google.com/p/dance-dance-robot/ http://dance-dance-robot.appspot.com/ Thanks - I'd heard of that but to be honest hadn't looked at the code as it's a Java demo

[google-appengine] Re: Questions about Channel API experimentation in 1.4.0 pre-release

2010-12-02 Thread Remigius
Hi Tim, In the (current) absence of any answers by more educated people than me, I allow myself to post to this thread. In case you don't know, there's a sample app using channels: http://code.google.com/p/dance-dance-robot/ http://dance-dance-robot.appspot.com/ I haven't looked at the code yet