Re: [google-appengine] my app has been "disabled"

2010-12-17 Thread Nickolas Daskalou
It may have been disabled because it competes with Google's URL shortening offering (http://goo.gl/). Nick On 18/12/2010, at 1:21 PM, vrypan wrote: Hi. I've been running my URL shortener, urlborg.com, on appengine since 2008. Suddenly, yesterday, the app was marked as DISABLED by google

[google-appengine] Re: App Engine cannot vacuum indexes - stuck in building state for weeks - need google help

2010-12-17 Thread Alexander M
Sorry, I meant to say application: LingoLocus (romanceapp is a different one of my apps) regards On Dec 18, 12:20 am, Alexander M wrote: > Hi, > > My app is romanceapp, and I hope that someone from google might be > able to have a look at the indexes to see why I cannot remove them. > > They hav

[google-appengine] my app has been "disabled"

2010-12-17 Thread vrypan
Hi. I've been running my URL shortener, urlborg.com, on appengine since 2008. Suddenly, yesterday, the app was marked as DISABLED by google, and no one can access it. How do I get in contact with someone that can explain what's going on? I feel really bad for the users that relied on my service.

[google-appengine] App Engine cannot vacuum indexes - stuck in building state for weeks - need google help

2010-12-17 Thread Alexander M
Hi, My app is romanceapp, and I hope that someone from google might be able to have a look at the indexes to see why I cannot remove them. They have been stuck in a "Building" state for more than a week, which I believe was caused by the fact that I uploaded incorrect indexes and then tried to va

Re: [google-appengine] Re: Why not SELECT single_property FROM model?

2010-12-17 Thread Robert Kluin
I figured it might be of value on things like range scans. Think about uses like this: SELECT key, first_name FROM People WHERE first_name >= 'alb' AND first_name < 'ablz'; You could have the entity id _and_ the name from the index. Aside from this type of use case, you are probably right -

[google-appengine] Re: Why not SELECT single_property FROM model?

2010-12-17 Thread Tim Hoffman
One major problem I see will be with list properties, I assume each value in the list when indexed will have its own position in the index along with the Key, So if what you describe was implemented you find you could only get a single value from the index that matched. In fact in all cases you

Re: [google-appengine] Why not SELECT single_property FROM model?

2010-12-17 Thread David Mora
agreed and how would you distribute this dict in your application? using it by index key is just a bad practice imho i guess the other option is to have a simplified version of your model, e.g: UserModel (entire model loaded using LazyLoading - pretty much what appengine.db does) IndexedUserMode

Re: [google-appengine] Why not SELECT single_property FROM model?

2010-12-17 Thread Robert Kluin
It should be workable using the (or something like the) "low-level" interface -- just return the result as a dict. On Fri, Dec 17, 2010 at 22:41, David Mora wrote: > I think the problem is at the underlaying appengine.db implementation > (which acts as an ORM) > > that property belongs to

Re: [google-appengine] Why not SELECT single_property FROM model?

2010-12-17 Thread David Mora
I think the problem is at the underlaying appengine.db implementation (which acts as an ORM) that property belongs to an entity, you will have to have away to know when that model is not fully loaded. Common ORM/Data Gateways problems. (PS: but yeah, performance wise it would be great) On 17 De

Re: [google-appengine] Why not SELECT single_property FROM model?

2010-12-17 Thread Robert Kluin
That is something I have wondered about too Keakon. Actually, I thought there was already a feature request for it but don't see it now. It would be really cool to be able to only get the data from the index returned, and not the entire entity. Anyway, if you make an feature request (issue) for

[google-appengine] Why not SELECT single_property FROM model?

2010-12-17 Thread 风笑雪
As I know, there are 4 bigtables used for store indexes. So when I try to fetch a single property or a tuple of (single property, key), datastore can only scan the index table, no need to fetch the corresponding entities. That would also be useful when I fetch several properties via composite index

Re: [google-appengine] Re: Documentation on AppEngine's caching reverse proxy

2010-12-17 Thread 风笑雪
Actually, the cache will be refresh after re-deploy. But I suggest not to set too long max-age for dynamic pages. Also be noticed that the edge cache is only available for Google Apps domains, no affect on appspot.com. -- keakon My blog(Chinese): www.keakon.net Blog source code: https:/

Re: [google-appengine] Re: Newbie Q - Public IP address_DNS Server?

2010-12-17 Thread Baz
> > the proxy will likely out perform the API itself. This addresses my concern, and I agree, thank you :) On Fri, Dec 17, 2010 at 3:47 PM, Barry Hunter wrote: > the proxy will > likely out perform the API itself. > -- You received this message because you are subscribed to the Google Groups

[google-appengine] Problem deleting an application

2010-12-17 Thread joshuacronemeyer
I have an application that I no longer want to pay for. When I go to the disabling administration page it tells me that I can't request permanent deletion because my billing status is "enabled". When I try to disable my billing, the status changes to "changing daily budget" for about 10 minutes a

Re: [google-appengine] Re: Newbie Q - Public IP address_DNS Server?

2010-12-17 Thread Barry Hunter
Unless its an API from one of the 'big players' then its unlikly that the proxy would become a performance bottleneck. ie the proxy will likely out perform the API itself. Or do you mean a problem as a SPOF (single point of failure) - if worried about that then could get two proxies :) And hope th

[google-appengine] Re: This request used a high amount of CPU and may soon exceed its quota - 2010/2011

2010-12-17 Thread nickmilon
Somebody (Ikai L if I remember well) even mentioned "sub-400ms" as optimal number. I agree we need more light on this. For the complete (almost) story of those numbers you can take a look at my post here: http://gaengine.blogspot.com/2010/09/app-engine-scalability-issues.html Happy coding :-) Nic

Re: [google-appengine] Re: how can i write Arabic in app engine

2010-12-17 Thread fatimah mujallid
Finally it works perfect Thank you all for replying and you support 2010/12/17 Geoffrey Spear > You're just encoding the filename in utf-8 (which is identical to its > ASCII encoding as it doesn't comain non-ASCII characters) and then > passing that encoded filename to django's template engine.)

Re: [google-appengine] Re: Newbie Q - Public IP address_DNS Server?

2010-12-17 Thread Baz
If you route every request through a proxy, you are giving up all the scalability benefits? On Fri, Dec 17, 2010 at 12:17 PM, A. Stevko wrote: > I agree with Barry - setting up a proxy forwarder is the simplest > work-around when compared to porting a self managed app instance. > Folks with app

[google-appengine] Re: max_backoff_seconds - working?

2010-12-17 Thread Jason Collins
Nick, Your edge case definitely confused at least 2 of us. I imagine that people will often be testing their queues on a low volume queue initially. You might want to put something in the documentation, or at least the code. j On Dec 16, 4:59 pm, Nicholas Verne wrote: > Vlad, > > Your case is a

[google-appengine] Re: This request used a high amount of CPU and may soon exceed its quota - 2010/2011

2010-12-17 Thread Darien Caldwell
I had a thread saved where Nick or someone else on the team confirmed the 1000 ms boundary, however it seems my saved thread collection has grown ridiculously big and I can't find it. I did find this thread discussing it however: http://groups.google.com/group/google-appengine/browse_thread/thre

Re: [google-appengine] Re: This request used a high amount of CPU and may soon exceed its quota - 2010/2011

2010-12-17 Thread Matija
Yes, I remember this. But after removal of 'high cpu quota' there was no (spoken) penalty for over 1000 ms request latency (beside bad user UI experience) and now it is inability to get new instances. If you look at Quotas and Limits

Re: [google-appengine] Re: Newbie Q - Public IP address_DNS Server?

2010-12-17 Thread A. Stevko
I agree with Barry - setting up a proxy forwarder is the simplest work-around when compared to porting a self managed app instance. Folks with apps serving China and Turkey are doing exactly that. There are plenty of cheap/free apache mod_rewrite hosts that can be configured to give you a static ip

[google-appengine] apps mail lists are bounceing from my apps mail

2010-12-17 Thread bible.org
I am sending to my apps mail group lists account from my apps mail and it bounces?? this has just started in the past month after years of no problems -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to goog

[google-appengine] Re: Anyone see a bounce forwarded from the mail service?

2010-12-17 Thread A. Stevko
Digging thru the tickets, My guess is nobody has seen an email bounce since mid 2009. If you want to be a good responsible email citizen please star http://code.google.com/p/googleappengine/issues/detail?id=1800 so that you can handle address typos. On Thu, Dec 16, 2010 at 9:09 PM, A. Stevko wro

[google-appengine] Re: Documentation on AppEngine's caching reverse proxy

2010-12-17 Thread Mike
The biggest undocumented features of the edge cache we've had to deal with is that it does not honor the Vary header, and that it is turned on when you enable billing for an app. I agree, however, that regardless of what details are posted in this group, the edge cache behavior should be documente

Re: [google-appengine] Re: This request used a high amount of CPU and may soon exceed its quota - 2010/2011

2010-12-17 Thread Robert Kluin
If I remember right, think the coloring scheme is left over from when there were other quotas in place. On Fri, Dec 17, 2010 at 03:09, Matija wrote: > Are you sure about this ? I have noticed that I did indeed get > new additional instance, but are their automatic scaling algorithm so simp

[google-appengine] Re: how can i write Arabic in app engine

2010-12-17 Thread Geoffrey Spear
You're just encoding the filename in utf-8 (which is identical to its ASCII encoding as it doesn't comain non-ASCII characters) and then passing that encoded filename to django's template engine.) On Dec 16, 5:11 pm, fatimah mujallid wrote: > Ok this code works great: > self.response.out.write(u'

Re: [google-appengine] Static files cached even after update with changes

2010-12-17 Thread Robert Kluin
Hi Noel, People often want static content cached -- it reduces the load on your app. Also, there might be other intermediate caches to worry about too, so it may not be only Google caching your content. Yes, you should use some type of cache busting strategy. It depends on how your iPhone ap

Re: [google-appengine] How to convert db.Model to search.Searchable model

2010-12-17 Thread Robert Kluin
You'll probably need to iterate over the old models, load them, convert them to a searchable model, then put the new searchable model. You might look into the mapper to help you out with this task: http://code.google.com/p/appengine-mapreduce/ Robert On Fri, Dec 17, 2010 at 03:16, suatat

[google-appengine] Static files cached even after update with changes

2010-12-17 Thread Noel
I just pushed an update to my app in which a bunch of the static files changed and were important for the app behavior. What I'm seeing is that any requests for those static files return an old version of the file! I did some digging around and it seems that other people are seeing this and GAE ca

[google-appengine] Re: Storing properties dict as db.Model field

2010-12-17 Thread Colin Hawkett
http://stackoverflow.com/questions/3203543/how-to-make-persistent-a-python-dictionary-on-google-appengine/3203672#3203672 I'm still pretty convinced my answer was the best - especially since it borrows nick johnson's code :) Cheers, Colin -- You received this message because you are subscribed

Re: [google-appengine] Re: Documentation on AppEngine's caching reverse proxy

2010-12-17 Thread Ikai Lan (Google)
App Engine's edge cache is not guaranteed. It's "best effort" caching, caching that any ISP downstream could also have implemented. What you'd do is set the cache-control headers to "public" and set a max-age, and App Engine's edge caches may cache your content. There's also no way to flush your c

[google-appengine] Re: Documentation on AppEngine's caching reverse proxy

2010-12-17 Thread Matt H
This would be nice to have. -- 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

[google-appengine] Re: C2DM Rate Limiting

2010-12-17 Thread ob1
If you post your message to the C2DM list, the moderator can increase your limit. (http://groups.google.com/group/android-c2dm) Or you can refer to the original email from that granted your C2DM account "sender id". That email makes reference to the soft, informal email process of increasing your

[google-appengine] Billing Disabled

2010-12-17 Thread yohan
Hi, I'm new gae developer, now I'm developing adlinkshopsafe.appspot.com I have a problem, about the billing setting, I had disable the billing, my status now is must wait 7 day, now I want to re-enable the billing, is there any way to re-enable imediately? -- You received this message because y

[google-appengine] How to convert db.Model to search.Searchable model

2010-12-17 Thread suatatan
I have a big datastore in my page. When i have created it, i din't know the Searchable Model. All of my rows constructed on db.Model. Now, i want make searchable my datastore but i can't. How i convert from db.Model to search.Searchable model -- You received this message because you are subscribe

[google-appengine] Documentation on AppEngine's caching reverse proxy

2010-12-17 Thread saidimu apale
Given the numerous issues (in the issue tracker, GAE mailing-lists and in speculative blog posts in the wild) surrounding cache headers and the GAE reverse proxy, is there definitive documentation on how it handles headers and best-practice interactions? It is surprising that such an important par

[google-appengine] Deployment failures during clonefiles

2010-12-17 Thread John
Beginning about 5:30PT, we've been unable to deploy to Appengine for Java. We get a 500 error on clonefiles in most cases. We did make a change to add some 0.5MB media files to the deployment. Is there a problem with deployment? -- You received this message because you are subscribed to the Goog

[google-appengine] Mail reply headers remove

2010-12-17 Thread Jorge Alvaro
Hi, I'm building an application that will receive some mails and reply to them. I've been trying to set the headers used by mail applications to diplay threaded conversations but it looks like App Engine (Java, 1.4.0) is removing them. I'm trying to set "In-Reply-To" and "References" headers but

[google-appengine] Re: Channel API CPU usage

2010-12-17 Thread download
Right now my only application using the Channel API only use it for a few minutes at a time. Also, I recall from the Google presentation on Channel API one of the selling points was that it wouldn't use our application quota for the constant polling. Charging for two hours up-front rather defeats t

[google-appengine] How can i ask to add a new MIME types for file attachments to an email message?

2010-12-17 Thread Dima Filippov
I want to create a service, that send an email with .mobi fle format attachment. I can't do it with the current allowed MIME types and file format extensions. How can i ask (or where can i post a suggestion) to add MIME Type: application/x-mobipocket-ebook and file extension .mobi or .prc Thanks, D

[google-appengine] Re: How to setup Goddady CNAMES to have usernames on subdomains for a djangoapp on Google App Engine

2010-12-17 Thread Roberto Saccon
You have to change nameservers to another provider, which allows wildcard CNAMEs, you can define non-godaddy nameserver in the godady control panel. DnsMadeEasy and dynDNS (if I remember properly) have been mentioned in a very similar thread I started some days ago. -- You received this messag

[google-appengine] How to setup Goddady CNAMES to have usernames on subdomains for a djangoapp on Google App Engine

2010-12-17 Thread zero fuxor
I have a django app that is hosted in google app engine. I would like to have usernames in subdomains to show a personal page for a user in my app. Like this: *username*.*example.com* I know how to get the username from the url and work on it on my app but i don't know how to setup the cnames on

[google-appengine] Re: Memcache broken with Always On?

2010-12-17 Thread Tom Phillips
Sorry, don't "Hit" Erik. Say "Hi" to him ;) On Dec 17, 10:46 am, Tom Phillips wrote: > Hit Erik, > > From your stack trace, I think you are seeing something else. Have you > got an explicit serialVersionUID set in the com.WikiHop.jdo.Pi class > (your key is OK I think) that you are putting into M

[google-appengine] Re: Memcache broken with Always On?

2010-12-17 Thread Tom Phillips
Hit Erik, >From your stack trace, I think you are seeing something else. Have you got an explicit serialVersionUID set in the com.WikiHop.jdo.Pi class (your key is OK I think) that you are putting into Memcache? And if so has it changed at some point? It looks like you may be either trying to read

[google-appengine] App Engine Limit on Index Entries per Entity

2010-12-17 Thread Ryan
I know that there is a limit of 5000 index entries per entity, which means I can't do things like this: class Foo(db.Model): x = db.ListProperty(int) y = db.ListProperty(int) foo1 = Foo(x = range(5001)) foo1.put() Furthermore, if I have the index in index.yaml - kind: Foo properties:

Re: [google-appengine] Re: Newbie Q - Public IP address_DNS Server?

2010-12-17 Thread Julien Lancelot
Thanks, it's done! Hope Google could do something sooner... On Fri, Dec 17, 2010 at 13:43, Erwin Streur wrote: > You might want to star the following issue > > http://code.google.com/p/googleappengine/issues/detail?id=1269 > > -- > You received this message because you are subscribed to the Go

Re: [google-appengine] Re: Newbie Q - Public IP address_DNS Server?

2010-12-17 Thread Barry Hunter
On 17 December 2010 08:02, Julien Lancelot wrote: > Thanks for your message Andrew. > I know that the web service security whitelisting ip adress is poor, but > it's hosted by another company who provide the service I need and only than > can provide it... > I don't think they gonna change their s

[google-appengine] C2DM Rate Limiting

2010-12-17 Thread Millisecond
Hey all, We're running into an odd issue, and not sure if it's us, the AppEngine group, or the C2DM Android group at Google so I thought I'd post here to start and see where we can get. We have implemented a C2DM server on AppEngine servicing several hundred of our clients' Android applications,

[google-appengine] Re: Newbie Q - Public IP address_DNS Server?

2010-12-17 Thread Erwin Streur
You might want to star the following issue http://code.google.com/p/googleappengine/issues/detail?id=1269 -- 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 unsubscrib

[google-appengine] Re: Memcache broken with Always On?

2010-12-17 Thread Erik
Missed some more errors: Caused by: java.io.InvalidClassException: com.WikiHop.jdo.Pi; local class incompatible: stream classdesc serialVersionUID = -6007756724690804603, local class serialVersionUID = -1398789866 at java.io.ObjectStreamClass.initNonProxy(ObjectStreamClass.java:579)

[google-appengine] Re: Memcache broken with Always On?

2010-12-17 Thread Erik
Not sure if it is related, but I was getting some interesting memcache errors that I had to work around: javax.servlet.ServletContext log: Exception while dispatching incoming RPC call com.google.gwt.user.server.rpc.UnexpectedException: Service method 'public abstract java.lang.String com.WikiHop

Re: [google-appengine] Re: max_backoff_seconds - working?

2010-12-17 Thread vlad
Thanks Nick. That makes sense. Indeed, I have been running a single task chain which would result in at most 1 task being pending at a time. -- 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

[google-appengine] Re: This request used a high amount of CPU and may soon exceed its quota - 2010/2011

2010-12-17 Thread Matija
Are you sure about this ? I have noticed that I did indeed get new additional instance, but are their automatic scaling algorithm so simple that uses only average latency time. Maybe this is truth for first 10 instances and then they add additional checking. Although they nowhere display averag

Re: [google-appengine] Re: Newbie Q - Public IP address_DNS Server?

2010-12-17 Thread Julien Lancelot
Thanks for your message Andrew. I know that the web service security whitelisting ip adress is poor, but it's hosted by another company who provide the service I need and only than can provide it... I don't think they gonna change their security for me! It's a shame because I really want to use G