[google-appengine] Re: some applications experiencing problems with backends

2012-11-06 Thread Christina Ilvento
The issue should now be resolved and backend instances should be functioning normally. On Tue, Nov 6, 2012 at 8:26 PM, Christina Ilvento wrote: > We are aware of an ongoing issue, beginning around 7 PM US/Pacific time, > with backend instances not starting up. Affected applications would see 503

[google-appengine] some applications experiencing problems with backends

2012-11-06 Thread Christina Ilvento
We are aware of an ongoing issue, beginning around 7 PM US/Pacific time, with backend instances not starting up. Affected applications would see 503 server errors from backend instances. The App Engine team is investigating the issue and working on rolling out a fix as soon as possible. Rega

[google-appengine] Hangout tomorrow 4pm PST - chat with the App Engine PMs

2012-11-06 Thread Amy Unruh
hi all, Join us for an App Engine G+ hangout on Wed. Nov. 7, 4pm-5pm (US / Pacific), to chat with the App Engine PMs (Product Managers), and ask them questions. Submit your questions here: http://goo.gl/y5ugb , and we hope to open up a few live slots in the hangout as well. (For our last hangout,

[google-appengine] Frequent NPE on Objectify.get

2012-11-06 Thread Thomas Wiradikusuma
Hi guys, I'm using Java and Objectify 3, but I'm thinking this problem I'm experiencing is probably more related to GAE. // Snippet from ProfilePhoto.java @Entity(name = "PP") @Unindexed public class ProfilePhoto implements Serializable { private static final long serialVersionUID = 1L;

[google-appengine] Re: SDK 1.7.3 not detecting source file changes - ANNOYING!

2012-11-06 Thread Jakob Holmelund
We have the same issue. 4 guys running on ubuntu. This is really annoying.. Den tirsdag den 6. november 2012 04.55.41 UTC+1 skrev GregF: > > I just updated to SDK 1.7.3 running on Linux. At the same time I switched > to the SQLite datastore stub, suggested by the depreciation message. > > After t

[google-appengine] Static Files Statistics

2012-11-06 Thread Darrel Sumi
I've set up some static files in my AppEngine project and was wondering if there's any way to track how many times users access those static files (similarly to AppStats) I've added a file like this in my app.yaml: - url: /file_name static_files: static/file_name upload: static/file_name I h

[google-appengine] google appengine redirect loop

2012-11-06 Thread PortAlfred
Hi I have seen some other people experiencing a problem like this in the groups and they needed to have their account repaired. I deleted a domain from my organisation and added it to a friend's organisation, and now when I try to log into google app engine, I get a redirect loop. I have alrea

[google-appengine] Dev Server on PyPy

2012-11-06 Thread Michael Sander
I know it's not an officially supported platform, but has anyone tried playing around with the App Engine dev server on PyPy? Its JIT should make the dev server much faster than when running on cpython. With a bit of tinkering, I can get it to start up, but I quickly get the following exception

[google-appengine] Google App Engine redirect loop problem

2012-11-06 Thread PortAlfred
Hi I am experiencing the redirect loop problem on google app engine, can someone please fix this for me. My domain is portalfredrental.co.za. Thanks Dean -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web

[google-appengine] Quote Wanted

2012-11-06 Thread JB222
Indicate your fee to configure & install Python & JavaMail on a GAE to send bulk email messages. http://support.google.com/code/bin/request.py?contact_type=AppEngineQuotaReques -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view

[google-appengine] Forum Software in Java

2012-11-06 Thread Threeof Us
I would like to add a forum feature to my existing GAE app. I am looking for open source forum software in Java to integrate into my code. Any pointers will be appreciated. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this di

[google-appengine] Datastore Admin not working for long application names?

2012-11-06 Thread Oliver Sturm
Hi, I have a few applications in GAE. In one of them, I can access the Datastore Admin page in the dashboard just fine. However, for two other applications it is not working - curiously in two different ways. For one of the applications, the Datastore Admin page always remains blank - it seems

[google-appengine] Re: Importing data to datastore with bulkloader : error and long back off, but import finish ok

2012-11-06 Thread Brian
Yes, I ran into the same problem a couple of years ago with the local SDK, and again recently when I first deployed my app to appspot.com. The solution that worked for me was to batch upload my data with no more that 60 records in each batch. (Had to write some local tools just to work around t

[google-appengine] Re: SDK 1.7.3 not detecting source file changes - ANNOYING!

2012-11-06 Thread Bryce Cutt
Not sure if it is the same issue but my symptoms are similar. After updating to SDK 1.7.3 on Windows 7 I have noticed that the compiled Python files (.pyc files) are not always overwritten when I modify a source (.py) file and it is executed. I never noticed this before SDK 1.7.3 and I have not

[google-appengine] I'm looking for a Google App Engine developer

2012-11-06 Thread Andrew Mackenzie
You might want to develop your requirements a bit more and the post somewhere like elance.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/k6sy

[google-appengine] double gzip workarounds?

2012-11-06 Thread Peter Warren
Given this issue with App Engine (http://code.google.com/p/googleappengine/issues/detail?id=2036), it seems that I'm stuck gzipping to store items in memcache, ungzipping them when I pull them out of cache, and then having GAE re-gzip them to deliver them to the client. I'm having a really, re

[google-appengine] Re: Appengine backend "DeadlineExceededError" error

2012-11-06 Thread Vinny P
Keep in mind that backends are set to private by default; you have to be logged in as an administrator to hit a backend from a URL. Alternately, you can set the backend to public (options: dynamic, public in your yaml file) and then hit the backend from anywhere. On Tuesday, November 6, 2012 9

[google-appengine] Re: Appengine backend "DeadlineExceededError" error

2012-11-06 Thread Marcel Manz
See: https://developers.google.com/appengine/docs/java/backends/overview#Addressing_Backends A backend instance can be targeted with HTTP requests to http://[instance].[backend_name].[your_app_id].appspot.com, or at your application's custom domain. If you target a backend without targeting an

Re: [google-appengine] Memcache seems to be cleared periodically

2012-11-06 Thread timh
Expiration/expunging of memcache data is affected by a number of things. How much you have in memcache, frequency of hits, how much else is going on in google land (ie in that machines you happen to be running on etc). I have only 33MB in cache (1058 items) a 94% hit rate and the oldest item i

Re: [google-appengine] problem with jdo

2012-11-06 Thread Shilendra Sharma
you take help from stackverflow.com Regards & Thanks Shilendra Sharma +919891343808 shilendra...@googlemail.com On Mon, Nov 5, 2012 at 6:33 PM, josselin chevalay < josselin54.cheva...@gmail.com> wrote: > hello, > I'm trying to set up my entity jdo however not persist. how we put up jdo? > > --

Re: [google-appengine] SDK 1.7.3 not detecting source file changes - ANNOYING!

2012-11-06 Thread Shilendra Sharma
Hi, Greg you update your app engine SDK 1.7.3 then you can work . Regards & Thanks Shilendra Sharma +919891343808 shilendra...@googlemail.com On Tue, Nov 6, 2012 at 9:25 AM, GregF wrote: > I just updated to SDK 1.7.3 running on Linux. At the same time I switched > to the SQLite datastore s