[google-appengine] Re: Hello every one I have a question about google app engine please ?!!!

2012-03-27 Thread Kyle Finley
Angelina, The amount of time required really depends upon the amount of control that you want. Are you displaying the same ad to all users? Do you need to track impressions? If you're simply displaying the same ad to all users, then it shouldn't take more then a couple hours. The most time co

Re: [google-appengine] Why can't I reply to Java discussions? Did I get banned? :)

2012-03-27 Thread Barry Hunter
As mentioned in the sticky at the top of the group you linked to, its been closed https://groups.google.com/forum/#!topic/google-appengine-java/8zQtq_m9W5w On Tue, Mar 27, 2012 at 7:46 AM, Brandon Donnelson wrote: > To Moderators: > > I can't seem to reply to the Java threads. Could you check to

Re: [google-appengine] Re: GAE over GGC

2012-03-27 Thread Barry Hunter
> > >  Do you have documentation for this claim? I dont think there is any documentation for the edge cache. But its well discussed in this group - search the archives. But its also born out experimentally. Apps Domains are cnamed to ghs.google.com, which resolves to various locations. Appspot d

Re: [google-appengine] In your opinion what are the most complex web applications built on top of google app engine ?

2012-03-27 Thread Waleed Abdulla
> Waleed is the sleeping giant on this list. Every so often he steps out of > the shadow says something like “I made this change and it cut my instances > by about 450” or ... Haha. Having a huge monthly bill is *not* something to celebrate :) > Waleed, we'd love to hear some war stories if y

[google-appengine] Re: App Engine - High latencies for HR Datastore (Java)

2012-03-27 Thread kusmi
The same for me (HR/Java) - high latency and lot's of http 500. Could be related to the other issues a lot of people reporting: http://code.google.com/p/googleappengine/issues/detail?id=7133 It seems all started around March 13 or so... -- You received this message because you are subscribed t

[google-appengine] how to implements custom jdk log

2012-03-27 Thread forlich
Hi: I submit two apps to gae,each app using java.util.logging.Logger with differenct logging.properties for logging.But as we know,java.util.logging.LogManager is loader by SystemClassLoader。That is ,all apps will use the same LogManager。I want to know how can gae do that?Or it hacked j

[google-appengine] app engine console incorrectly reporting 13k+ tasks in task queue

2012-03-27 Thread Gwyn Howell
Just checked the app engine console to alarmingly find over 20k tasks sitting in the task queue and 25 instances running. Our app normally runs on 4-5 instances. I paused the tasks queue, so I could investigate. I found that the tasks were making calls to the Google Calendar API and throwing "D

[google-appengine] App Engine incorrectly reporting high number of tasks in the task queue

2012-03-27 Thread Gwyn Howell
Just checked the app engine console to alarmingly find over 20k tasks sitting in the task queue and 25 instances running. Our app normally runs on 4-5 instances. I paused the tasks queue, so I could investigate. I found that the tasks were making calls to the Google Calendar API and throwing "D

Re: [google-appengine] Re: How can i increase indexes of my application

2012-03-27 Thread Prakhil Samar
Yes i have tried vaccum_indexes the problem is with the indexes count not getting reset. I just have 147 indexes serving on my application and my number of indexes under the Quota Details shows 200 What should i do now? GAE experts please suggest OR reset my indexes quota On Monday, 26 Mar

Re: [google-appengine] I can't receive the message that you send about GAE.

2012-03-27 Thread Amy Unruh
Hi, If you have SMS issues, you can use this form: https://appengine.google.com/waitlist/sms_issues . On Sat, Mar 24, 2012 at 7:02 AM, 理桂川 wrote: > Hi.I'm in China.I can't receive the SMS you send . > I want to create a GAE account and I want to receive a verification > email. > Please help me.

[google-appengine] Seeing huge delays on task queue execution - 13sec+ per task

2012-03-27 Thread Jan Zawadzki / Hapara
Is anyone else seeing these delays? Jan -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appengine@googlegroups.com. To unsubscribe from this group, send email to google-appengine+unsubscr...@goo

[google-appengine] Hibernate + CloudSQL = javax.naming.NamingException

2012-03-27 Thread fabio.bozzo
Hi I am trying to use Spring + Hibernate for working with GAE+CloudSQL. A 500 error broke my app: java.lang.NoClassDefFoundError: javax/naming/NamingException I know javax.naming package is off-limits on AppEngine, but how can I get a workaround? Hibernate breaks on SessionFactoryImpl, at

[google-appengine] Working on PDF service (HELP!)

2012-03-27 Thread Max
Hi, I'm trying to develop a service where I get a pdf from an email and I store it in the blobstore as a png. The code is not working, but I have no error logs. I can't understand why. The logic is: I get the email -> Conversion from PDF to PNG -> Store in the blobstore (and in a database to work

[google-appengine] equivalent for is_saved() with ndb

2012-03-27 Thread Andreas
is there an equivalent of the db.Model function is_saved() with ndb.Model? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appengine@googlegroups.com. To unsubscribe from this group, send email to

[google-appengine] .proto files

2012-03-27 Thread alex
Any chance you guys (googlers, that is) would be willing to publish .proto files for non-experimental APIs? Specifically, for services like Datastore, Memcache, Blobstore, Images, Mail, URL fetch, Users and Task Queues. I just wanted to play around and see if I could run an app outside of GAE w

[google-appengine] Re: GMail authentication with GWT + GAE - works in development but fails in production

2012-03-27 Thread Deepak Singh
Any help pls. i am still stuck with it. On Mon, Mar 26, 2012 at 10:11 PM, Deepak Singh wrote: > Hi All, > > I am authenticating my users through GMail login in GWt + GAE environment. > Code is as follows: > > GWT code: > > final Frame frameForGmail = new Frame(); > final Image gmailIcon = > Imag

[google-appengine] Run dev_appserver on non-loopback IP address causes enqueuing to tasks queues to fail

2012-03-27 Thread googlefox
I am running my dev_appserver instance on a non-loopback IP address (i.e the IP address bound to my network adapter). I am doing this because I want my app to be accessible outside of localhost. My app exposes a HTTP page. This page takes the POST entity body, and then enqueues a task to a push

[google-appengine] Re: equivalent for is_saved() with ndb

2012-03-27 Thread Guido van Rossum
On Tuesday, March 27, 2012 6:41:25 AM UTC-7, aschmid wrote: > > is there an equivalent of the db.Model function is_saved() with ndb.Model? No; what are you trying to do? You might be able to check whether the entity has a key and if so, whether that key isn't incomplete: if ent.key and ent.key.

[google-appengine] Re: In your opinion what are the most complex web applications built on top of google app engine ?

2012-03-27 Thread doright
well, I'm not in these guy's league but I have built a Saas on GAEJ, it's been in production since late 2010, with paying customers. I plan to write up my experience at some stage, as I know its not your typical GAE app. Its more of an enterprise software solution than a true web-startup, but

[google-appengine] Fwd: 1.6.4 App Engine Release is Out!

2012-03-27 Thread Marzia Niccolai
Hi, Read all about the release on our blog: http://googleappengine.blogspot.com/2012/03/app-engine-164-released.html Or go straight to the release notes for Java: http://code.google.com/p/googleappengine/wiki/SdkForJavaReleaseNotes Or Python: http://code.google.com/p/googleappengine/wiki/SdkRele

Re: [google-appengine] Re: equivalent for is_saved() with ndb

2012-03-27 Thread Andreas
exactly what im doing. i create the keys myself. rootkey = ndb.Key('root', 'key') a = Asset(key=ndb.Key('Asset', 'keyname', parent=rootkey)) a._has_complete_key() # returns true in my app i work in with entity batches and sometimes it happens that i need to create ancestors for that entity whic

Re: [google-appengine] Re: equivalent for is_saved() with ndb

2012-03-27 Thread Guido van Rossum
You might be able to use get_or_insert() and benefit from the in-memory cache. On Tue, Mar 27, 2012 at 13:49, Andreas wrote: > exactly what im doing. i create the keys myself. > > rootkey = ndb.Key('root', 'key') > a = Asset(key=ndb.Key('Asset', 'keyname', parent=rootkey)) > > a._has_complete_key

Re: [google-appengine] Re: equivalent for is_saved() with ndb

2012-03-27 Thread Andreas
not a good option in my case. On Mar 27, 2012, at 5:23 PM, Guido van Rossum wrote: > You might be able to use get_or_insert() and benefit from the in-memory cache. > > On Tue, Mar 27, 2012 at 13:49, Andreas wrote: >> exactly what im doing. i create the keys myself. >> >> rootkey = ndb.Key('roo

Re: [google-appengine] App Engine incorrectly reporting high number of tasks in the task queue

2012-03-27 Thread Nicholas Verne
Can you please give us an app id so we can investigate? On Tue, Mar 27, 2012 at 9:27 PM, Gwyn Howell wrote: > Just checked the app engine console to alarmingly find over 20k tasks > sitting in the task queue and 25 instances running. Our app normally runs on > 4-5 instances. I paused the tasks qu

[google-appengine] Re: Seeing huge delays on task queue execution - 13sec+ per task

2012-03-27 Thread vlad
I have been screaming about this for a looong time. The offcial position of GAE team is - we don't guarantee on time execution. Even though this issue is not about on time execution but rather about bugs/inefficiency of their scheduler. They just closed my ticket about that. Feel free to star h

[google-appengine] Re: App Engine - High latencies for HR Datastore (Java)

2012-03-27 Thread Nicanor Babula
The same here (HR/Java). Instances are being restarted without reason.. I am getting lots of 500s and DeadlineExceededExceptions.. What to do? Il giorno martedì 27 marzo 2012 11:26:58 UTC+2, kusmi ha scritto: > > The same for me (HR/Java) - high latency and lot's of http 500. Could be > related

Re: [google-appengine] app engine console incorrectly reporting 13k+ tasks in task queue

2012-03-27 Thread Amy Unruh
Gwyn, What is your app id? You can email me directly if you like. -Amy On Tue, Mar 27, 2012 at 11:26 AM, Gwyn Howell wrote: > Just checked the app engine console to alarmingly find over 20k tasks > sitting in the task queue and 25 instances running. Our app normally runs > on 4-5 instances. I

Re: [google-appengine] Re: equivalent for is_saved() with ndb

2012-03-27 Thread Guido van Rossum
Sorry to hear that. I guess you could manually set a flag on the parent entity that indicates that you haven't written it yet, and clear it in a pre_put_hook. BTW is there any information in the parent entities? Did you know you can create child entities for which no parent actually exists? All yo

[google-appengine] Re: 1.6.4 App Engine Release is Out!

2012-03-27 Thread blackpawn
awesome update! \o/ thanks for the blobstore migration!! On Tuesday, March 27, 2012 1:32:43 PM UTC-7, Marce (Google) wrote: > > Hi, > > Read all about the release on our blog: > http://googleappengine.blogspot.com/2012/03/app-engine-164-released.html > > Or go straight to the release notes for Ja

Re: [google-appengine] Re: equivalent for is_saved() with ndb

2012-03-27 Thread Waleed Abdulla
I've been looking for a good way to do something similar as well. I load (or create) an entity, do some operations on it (that may or may not change the entity), and then at the end I need to save it or skip saving it if nothing has changed. It would be nice to have something like is_dirty() which

[google-appengine] Re: Import .pyd file in google app engine?

2012-03-27 Thread Anand Mistry
App Engine does not support any native-code Python modules, including those written in Fortran. App Engine only supports "pure Python" code. On Saturday, 24 March 2012 04:00:31 UTC+11, tao hong wrote: > > Hello, > > I have some old fortran77 codes, and I convert them into .pyd files using > f2py

Re: [google-appengine] Re: Seeing huge delays on task queue execution - 13sec+ per task

2012-03-27 Thread Gopal Patel
i think this happen only when they release a new version of app engine. so it linked to app wise upgrade. On Wed, Mar 28, 2012 at 3:30 AM, vlad wrote: > I have been screaming about this for a looong time. The offcial position > of GAE team is - we don't guarantee on time execution. Even though t

Re: [google-appengine] Re: equivalent for is_saved() with ndb

2012-03-27 Thread Guido van Rossum
But that's a completely different use case -- and old db's is_saved() would not cover it. You can probably implement it by overriding __setattr__ on your model class (if you promise yourself not to modify repeated properties in-place). --Guido On Tue, Mar 27, 2012 at 18:05, Waleed Abdulla wrote:

[google-appengine] JavaScript Support

2012-03-27 Thread _vjy
JavaScript (node.js) is becoming a great server side programming language. Any plans to add JavaScript as a supported appengine language? -- 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:

[google-appengine] Re: JavaScript Support

2012-03-27 Thread Richard Watson
It would likely go via the JVM rather than whole native JS implementation. Google e.g. "rhino app engine" and you'll find pages talking about various methods. There are a couple answers here: http://stackoverflow.com/questions/3224341/server-side-javascript-on-google-app-engine On Wednesday,

[google-appengine] Re: JavaScript Support

2012-03-27 Thread _vjy
Thanks for your response. JavaScript support through JVM is still great. As long as it works, and scales like appengine java / python, it really doesn't matter how it was implemented. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To v

[google-appengine] XG transactions and the Remote API

2012-03-27 Thread Jeff Schnitzer
Is there a way to perform XG transactions using the Remote API? I always get "java.lang.IllegalArgumentException: can't operate on multiple entity groups in a single transaction." even though my app is HRD. Thanks, Jeff -- You received this message because you are subscribed to the Google Group

Re: [google-appengine] App Engine incorrectly reporting high number of tasks in the task queue

2012-03-27 Thread Gwyn Howell
the app id is appogee-leave, but it seems to have sorted itself out now. yesterday from about 10am - 3pm utc the task queue was out of control, and we now have a bill to pay to cover it On Tuesday, 27 March 2012 22:51:11 UTC+1, nverne wrote: > > Can you please give us an app id so we can investi

[google-appengine] Re: 1.6.4 App Engine Release is Out!

2012-03-27 Thread Gwyn Howell
Awesome update. Is it possible to set namespace on memcache viewer? On Wednesday, 28 March 2012 00:45:31 UTC+1, blackpawn wrote: > > awesome update! \o/ thanks for the blobstore migration!! > > On Tuesday, March 27, 2012 1:32:43 PM UTC-7, Marce (Google) wrote: >> >> Hi, >> >> Read all about the re

[google-appengine] HTTP Digest authentication for AppEngine?

2012-03-27 Thread Tommy Knowlton
As part of my app engine app, I'm trying to implement a WebDAV server so that users can interact with my app's blobstore using their native desktop file browser (i.e., Mac Finder.app and Windows Explorer.exe). WebDAV clients, per RFC 4918, authenticate (if at all) via HTTP Digest authentication

Re: [google-appengine] Re: Seeing huge delays on task queue execution - 13sec+ per task

2012-03-27 Thread Waleed Abdulla
Agreed. More control over priority of tasks would be nice. I'd like to be able to designate a queue as high-priority so it's tasks execute at the same priority as user requests, or low-priority so they only execute when there are free instances and no other pending requests. On Tue, Mar 27, 2012

[google-appengine] Re: In your opinion what are the most complex web applications built on top of google app engine ?

2012-03-27 Thread doright
well, I'm not in these guy's league but I have built a Saas on GAEJ, it's been in production since late 2010, with paying customers. I plan to write up my experience at some stage, as I know its not your typical GAE app. Its more of an enterprise software solution than a true web-startup, but