[appengine-java] Re: warmup requests going crazy (9850 requests in 15 hours)

2011-05-06 Thread pac
Since yesterday, I am also seeing lots fo warm requests and some of them are failing 2011-05-05 11:28:34.515 /_ah/warmup 500 248296ms 1540cpu_ms 0kb 0.1.0.3 - - [05/May/2011:11:28:34 -0700] GET /_ah/warmup HTTP/1.1 500 0 - - 1.350128199943308417.landofproperties.appspot.com ms=248297

[appengine-java] Re: warmup requests going crazy (9850 requests in 15 hours)

2011-05-06 Thread pac
I also saw lots of warm request yesterday and few of them failed with error: EXCEPTION com.google.apphosting.api.DeadlineExceededException: This request (f508b2b459c9812c) started at Today seems to be ok. On May 6, 9:26 am, Aswath Satrasala aswath.satras...@gmail.com wrote: I had this issue

[appengine-java] Re: Blobstore vs. Datastore for HTML files

2011-05-06 Thread Yegor
Brandon, Have you considered storing HTML in compressed form as Datastore blobs? Being plain text HTML should have very high compression ratio. * java.util.zip.GZIPOutputStream is usually no worse than x5, but it is slower * com.ning.compress.lzf.LZFOutputStream should yield x3 compression, but

[appengine-java] Re: Blobstore vs. Datastore for HTML files

2011-05-06 Thread Brandon Donnelson
I haven't yet. Are you storing compressed to save on cost? I am mainly working with images at the moment and sending them to the blobstore so I haven't had the need to consider that yet. Thats interesting point if you are trying to save on cost of storage that way. How much time does it take

[appengine-java] Re: Using BulkUpload into Local Java Dev Server on Mac

2011-05-06 Thread Renan
I've got the same error: error: [Errno 54] Connection reset by peer [INFO] Authentication Failed *Please google, help us. I have to insert by hand the same data from appengine datastore. Please and thanks. But please, help. On Mar 10, 2:28 am, Brian Conneen conn...@gmail.com wrote: I've

[appengine-java] API Channel

2011-05-06 Thread CoDe
First of all hi every1, I have the following bug with api channel. I've builded an chat room, everything is ok so far but sometimes the socket.onmessage function is not refreshing from ChannelService channelService = ChannelServiceFactory.getChannelService(); channelService.sendMessage(new

[appengine-java] xml parsing on GAE servers acts weird

2011-05-06 Thread Richie
Hey guys, I created an app where a user can upload an xml, I display the nodes in a GWT table then the user selects the nodes he/she wants to download. Sounds easy, works perfectly in hosted mode. I use only the base xml parsing, no 3rd party jars in the project (aside from

[appengine-java] java.lang.NoClassDefFoundError: com.sun.org.apache.xerces.internal.dom.DocumentImpl

2011-05-06 Thread racoq
Hello! I'm getting a major headache about an soap web service client/ server example. What is more intriguing is that using part of the following official howto available: https://code.google.com/intl/pt-PT/appengine/articles/soap.html My specs are: Ubuntu 10.04 LTS Eclipse Helios Google

[appengine-java] Re: Deferred Task with non default queue

2011-05-06 Thread Gianni Mariani
Hi Marcel, Yes, it should work in a production server, not on the development server. Are you trying this on the production environment? If so, let me know what your app id is. g On Apr 27, 7:28 pm, Marcel Overdijk marceloverd...@gmail.com wrote: Hi Gianni, If I understand correctly I can

[appengine-java] Re: Google update available for Eclipse?

2011-05-06 Thread David Chandler
http://code.google.com/webtoolkit/doc/latest/ReleaseNotes.html GPE is led by the GWT team. You'll also find most discussion about GPE releases on the GWT group: http://groups.google.com/group/google-web-toolkit /dmc On May 6, 12:18 am, Sam Stigler sam.stig...@gmail.com wrote: Hi all, I got a

[appengine-java] Inter-instance communication

2011-05-06 Thread Ion Ionascu
Hello, Could you please tell me what option are available for inter-instance communication? Actually, I'm curious if there other options than memchace and datastore/blob. Thank you, Ion Ionascu www.ionionascu.eu -- You received this message because you are subscribed to the Google Groups

[appengine-java] Re: Remote_api in Java works in Development Server?

2011-05-06 Thread Renan
I'm pretty surprised too! Its a must have feature to solve problems! i've got the same error (no matter what i try): - Authentication Failed at Terminal - Cookie name Path is a reserved token - in Server On Mar 11, 9:17 pm, Brian Conneen conn...@gmail.com wrote: I'm also having the

Re: [appengine-java] xml parsing on GAE servers acts weird

2011-05-06 Thread Stephen Johnson
You don't show what stream you're passing in so I can't comment on if that might be an issue but you should try setting namespaceAware to true like this to see if it will cause the DeferredDocumentImpl to not be used. I use code like this and works fine for me. DocumentBuilderFactory dbf =

[appengine-java] JPA fetching class.anotherClass.attribute

2011-05-06 Thread kidowell
Hello, I am currently working for a university project about digital humanities, basically its an app where you can read books and make and share annotations to it. Im facing a problem that got me stuck for 4 days long now, and I do not know what to do. Here is the tech spec: Annotatio: has

[appengine-java] Randomizing a query

2011-05-06 Thread Brandon Donnelson
I've been playing with randomizing query results. So far its working well for me. I still have more configurations to try. Has anybody else tried randomizing? What I do in brief: 1. query results with desired filter 2. buffer the results into another entity with an incremented index 3. loop the

Re: [appengine-java] xml parsing on GAE servers acts weird

2011-05-06 Thread Brandon Donnelson
I see a java.lang.ClassNotFoundException. Got the libs in war? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-java@googlegroups.com. To unsubscribe from this group, send email

[appengine-java] Re: java.lang.NoClassDefFoundError: com.sun.org.apache.xerces.internal.dom.DocumentImpl

2011-05-06 Thread Brandon Donnelson
If you pulled the source code in, try renaming(refractor) the source make sure its referencing the correct class. Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to

[appengine-java] Re: Uploading a file to the blobstore in Base64 gives wrong filesize in blobinfo. Any work arounds?

2011-05-06 Thread Brandon Donnelson
Wahoo. I'm getting really good results chunking base64 over RPC calls into a entity. After the chunks are all sent, I recombine the chunks and decode into bytes for save the file to blobstore. I am having so much more control with chunking, I'm starting to dig it. :) Brandon Donnelson

[appengine-java] Re: bug with cron job?

2011-05-06 Thread Vik
anyone on this plz? Thankx and Regards Vik Founder http://www.sakshum.org http://blog.sakshum.org On Thu, May 5, 2011 at 7:44 AM, Vik vik@gmail.com wrote: Hi A cron job in our system is set to email every first day of month. all of a sudden i am noticing that it is mailing everyday.

Re: [appengine-java] Re: Objectify: IllegalAccessError

2011-05-06 Thread Jeff Schnitzer
Specific GAE SDK version requirements are documented in the Objectify release notes for each version. Code moves fast in appengine-land! Jeff On Tue, May 3, 2011 at 3:19 PM, GeneralSlaine lennart.ben...@gmail.com wrote: Jeff, I'm using 1.3.8 I think reading from this Jar file:

[appengine-java] Re: xml parsing on GAE servers acts weird

2011-05-06 Thread Didier Durand
Hi, You have a ClassNotFoundException on a Xerces class according to your dump: so you are not using the basic xml classes to parse your xml but also xerces. You should add the xerces jar in you lib directory regards didier On May 5, 6:16 pm, Richie richiejr...@gmail.com wrote: Hey guys, I

[appengine-java] Re: Blobstore vs. Datastore for HTML files

2011-05-06 Thread bradr
Ikai, this is what a 1.5MB HTML page looks like: http://svnbook.red-bean.com/en/1.5/svn-book.html :) I can't think of many other examples, outside of single page user guides for open source projects. So your point is very fair, especially given the average HTML files size is ~25 KB. 1MB XML

[google-appengine] g2-report-engine

2011-05-06 Thread vinh tran
Hi All! Help me! I would like to demo *g2-report-enginehttp://code.google.com/p/g2-report-engine/ * Thanks! -- 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

Re: [google-appengine] Re: Is GAE expected to get faster in the future?

2011-05-06 Thread Niklas Rosencrantz
We can measure with yslow to see what we get. 50 ms I understand is good and 200 to 300 ms approvable. Where I need to optimize is where there are timeouts (where generating zip files) where responses are so slow as taking seconds. I measured with yslow and an idea, for optimization, is that we

[google-appengine] What is the datastore metadata

2011-05-06 Thread Edward Hartwell Goose
Hi, I'm curious as to data storage on App Engine. I'm wondering what makes up the data we're using, and what the metadata in the datastore statistics is? I'm currently running an application which is using ~30 gig of data according to the dashboard. In the blobstore we're currently storing

Re: [google-appengine] Re: Prerelease SDK 1.5.0 available for download

2011-05-06 Thread supercobra
+1 -- superco...@gmail.com http://supercobrablogger.blogspot.com/ On Thu, May 5, 2011 at 3:25 PM, Mars mars...@askmymob.com wrote: +1 Please give us custom HTTPS :) On May 4, 6:05 pm, Mike mickn...@gmail.com wrote: Hi Ikai A very exciting release!! Congrats. I must say

Re: [google-appengine] Re: Is GAE expected to get faster in the future?

2011-05-06 Thread Robert Kluin
Hey Niklas, Maybe you could also come up with a simple caching strategy for your rendered templates. Depending on the site, it might make content updates easier later on. Robert On Fri, May 6, 2011 at 07:14, Niklas Rosencrantz nikla...@gmail.com wrote: We can measure with yslow to see

Re: [google-appengine] g2-report-engine

2011-05-06 Thread Robert Kluin
Did you try reading their docs, this page sounds promising: http://code.google.com/p/g2-report-engine/wiki/AppEngineSupport You might also explore the 'g2-report-engine' lists On Fri, May 6, 2011 at 05:45, vinh tran thanhvin...@gmail.com wrote: Hi All! Help me! I would like to demo 

Re: [google-appengine] Oops! We couldn't retrieve your list of Kinds. Datastore API, Datastore Viewer and Datastore Admin problems

2011-05-06 Thread Robert Kluin
Hey Roberto, Have you wrote any data to the datastore? Also, sometimes there is a little delay before changes are reflected in the kinds lists. Robert On Fri, May 6, 2011 at 01:40, roberto.cr roberto...@gmail.com wrote: I've deployed the last version of my app (only small changes in

Re: [google-appengine] Re: What is the datastore metadata

2011-05-06 Thread Robert Kluin
Hey Edward, First, you should probably star issue 2740. Space used by indexes is *not* included in your datastore statistics. http://code.google.com/p/googleappengine/issues/detail?id=2740 Every property name is stored in every entity. So if you use long descriptive property names

[google-appengine] Re: What is the datastore metadata

2011-05-06 Thread Edward Hartwell Goose
Thanks Robert, I've starred that issue. I wouldn't say each of the property names is particularly long (probably 10-15 chars) but I suppose over a huge index this multiplies up. I'm surprised that its 7GB for only one entity and it's property names. Very surprised. Other than naming every

Re: [google-appengine] Re: What is the datastore metadata

2011-05-06 Thread Stephen Johnson
Hi Ed, To use a property in an explicitly written index that property must also be individually indexed. Stephen On Fri, May 6, 2011 at 10:10 AM, Edward Hartwell Goose ed.go...@gmail.comwrote: Thanks Robert, I've starred that issue. I wouldn't say each of the property names is particularly

Re: [google-appengine] Re: Tasks are not executing!

2011-05-06 Thread Steven Cains
Yep, same here. Task rate set to 60/m but stuck @ 6/m for the last 24 hours. -- 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

[google-appengine] indexes stuck

2011-05-06 Thread Wolfgang
I have 2 indexes stuck building (one of which I want to delete) and 2 stuck deleting. My app name is geigerdroid -- could someone help me get them unstuck? Many thanks! -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group,

[google-appengine] Re: Tasks are not executing!

2011-05-06 Thread Steven Cains
Tasks have been slow here. Our default queue is supposed to run @ 60/ m, it's slowed to 6/m for no reason. On May 5, 8:44 pm, David Mora dla.m...@gmail.com wrote: We are on master/slave: 18k per minutes as we speak On 5 May 2011 13:37, Stephen Johnson onepagewo...@gmail.com wrote: Sorry

[google-appengine] What is the relation between google apps, google app engine and, google marketplace?

2011-05-06 Thread George
Can someone explain or post a link that describes how Google Apps relates to Google App Engine? I have 2 Google accounts a gmail one and one for a Google Apps domain. I built an app engine application and when I went to the domain and tried to register it I was asked for a phone number to verify

[google-appengine] Activated Always on feature but sometimes there are less than 3 'always on' instances.

2011-05-06 Thread gafal
This morning, I logged into my application but received error message because system had to start new instances and the time to handle the initial request was too slow. I looked at number of instances and there was only one 'always on'. I thought that this feature would mean that I would always

[google-appengine] GAE + Django 'ModelOptions' object has no attribute 'local_many_to_many'

2011-05-06 Thread xavicolomer
Hi Community, I'm trying to migrate a django project into GAE ( Google App Engine ) The problem is I found this error when trying to login: 'ModelOptions' object has no attribute 'local_many_to_many' Line provocking the error: user = authenticate(username=uName,password=uPass) Partial Code:

[google-appengine] This webpage has a redirect loop

2011-05-06 Thread Bill
Hello. I'm new to GAE. And somewhat old with web development. I was trying to do a redirect - to a jsp page - from my servlet class but keep getting the error message The webpage at http://localhost:/my_clock.jsp has resulted in too many redirects. My servlet method simply calls

[google-appengine] modify the mailed-by header

2011-05-06 Thread Joseph Wroblewski
Can a Java app in GAE change the mailed-by email header for outgoing emails. I'm having issues with SMS to email gateways that use the mailed-by header instead of the from email address. Joe -- You received this message because you are subscribed to the Google Groups Google App Engine group.

[google-appengine] BCC email

2011-05-06 Thread Richard
We bcc the sender for all email sent out by our system but as of yesterday they stopped coming through. Is this happening for anyone else or can anyone provide some insight as to what could be causing this? Thanks, Richard -- You received this message because you are subscribed to the Google

[google-appengine] Re: Error 500

2011-05-06 Thread Moritz
Me too I get lots of 500 errors right now. Additionally, about 11 hours ago, I got a lot of /_ah/warmup requests, for about 2 hours on average about 0.2 per second. That's all strange behaviour. Moritz. On May 5, 4:46 pm, Francois Masurel f.masu...@gmail.com wrote: Getting quite a few 500

[google-appengine] Re: Sudden GAE Behavior Change! Urgent HELP needed!

2011-05-06 Thread Guido van Rossum
On May 4, 12:12 pm, Joshua Smith joshuaesm...@charter.net wrote: Fair enough. I'd recommend that you update the documentation of db.Model to point out that the Model class is not designed for multiple inheritance if it doesn't already say that somewhere I didn't see. Will get this taken

Re: [google-appengine] This webpage has a redirect loop

2011-05-06 Thread Stephen Johnson
Your URL pattern /* is set to send all requests to your ClockServlet so it keeps redirecting to your jsp page which just matches your servlet pattern so your servlet just keeps getting called again and again and again You probably want to do a server side redirect using a RequestDispatcher

[google-appengine] Re: Oops! We couldn't retrieve your list of Kinds. Datastore API, Datastore Viewer and Datastore Admin problems

2011-05-06 Thread roberto.cr
yes, it's been days actually is there a way to completely flush the datastore? I'm pretty sure my code is correct, this really seems beyond my reach... On May 6, 12:12 pm, Robert Kluin robert.kl...@gmail.com wrote: Hey Roberto,   Have you wrote any data to the datastore?  Also, sometimes there

Re: [google-appengine] Re: Sudden GAE Behavior Change! Urgent HELP needed!

2011-05-06 Thread Joshua Smith
My workaround right now is to have my Model create a helper object and use manual delegation patterns to get the calls done. It's kind of gross. Is there a pythony way that would allow my model to present itself as a tzinfo, without using multiple inheritance? I don't mind having the

[google-appengine] Re: What is the datastore metadata

2011-05-06 Thread Edward Hartwell Goose
Brilliant, thanks Stephen. On May 6, 6:18 pm, Stephen Johnson onepagewo...@gmail.com wrote: Hi Ed, To use a property in an explicitly written index that property must also be individually indexed. Stephen On Fri, May 6, 2011 at 10:10 AM, Edward Hartwell Goose ed.go...@gmail.comwrote:

Re: [google-appengine] Re: What is the datastore metadata

2011-05-06 Thread Stephen Johnson
And as Robert said, keeping your property names short will also help. I use 3-4 character property names myself. Most are only 3 characters except for one entity kind. Also, entity names (kinds) are also kept in every key so you should use short entity (kind) names. I use 2 character names myself.

[google-appengine] Open Source Gamification Platform

2011-05-06 Thread Navraj S. Chohan
Hi All, I just wanted to show the group my project which runs on Google App Engine. It's a platform for applications to add badges, points, leaderboards, and live notifications. It's all open source at http://code.google.com/p/userinfuser https://cloudcaptive-userinfuesr.appspot.com There are API

[google-appengine] Re: Open Source Gamification Platform

2011-05-06 Thread Brandon Donnelson
Looks cool. Link didn't work for me? https://cloudcaptive-userinfuesr.appspot.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-appengine@googlegroups.com. To unsubscribe from this group, send

[google-appengine] Re: Error 500

2011-05-06 Thread Francois Masurel
Got a screenshot a showing a missing Always On instance with no deployment going on (cf. attachment). -- 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

[google-appengine] Re: Error 500

2011-05-06 Thread Francois Masurel
Got a screenshot a showing a missing Always On instance with no deployment going on (cf. attachment). -- 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

Re: [google-appengine] Re: Open Source Gamification Platform

2011-05-06 Thread Navraj S. Chohan
Sorry, https://cloudcaptive-userinfuser.appspot.com This time I tested it =) Thanks for that. -Raj On Fri, May 6, 2011 at 2:02 PM, Brandon Donnelson branflake2...@gmail.comwrote: Looks cool. Link didn't work for me? https://cloudcaptive-userinfuesr.appspot.com -- You received this message

Re: [google-appengine] Re: Tasks are not executing!

2011-05-06 Thread Nischal Shetty
Yeah, tasks have been behaving strange from the last couple of days. I hope someone looks into this. On 6 May 2011 19:23, Steven Cains ste...@cains.me wrote: Tasks have been slow here. Our default queue is supposed to run @ 60/ m, it's slowed to 6/m for no reason. On May 5, 8:44 pm, David

[google-appengine] Re: Saving objects 1 MB into Amazon S3?

2011-05-06 Thread Brandon Donnelson
You can loop through the blobs and post them on the server side to AWS. Use the taskque to do the work. Brandon Donnelson http://gwt-examples.googlecode.com -- 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] Re: GAE persisting composite structures

2011-05-06 Thread Brandon Donnelson
You can do this, although since its a consistent database structure, relational links to other objects can be challenging. Hierarchy resolution gets more challenging as you walk the tree through recursion. The entity datastore works perfect for storing objects using the above method. Unowned

Re: [google-appengine] What is the relation between google apps, google app engine and, google marketplace?

2011-05-06 Thread Robert Kluin
Hi George, Responses inline. On Wed, May 4, 2011 at 20:35, George hueyhuecoy...@gmail.com wrote: Can someone explain or post a link that describes how Google Apps relates to Google App Engine? There is basically no relationship. Every thing you describe below is a result of the funky

Re: [google-appengine] indexes stuck

2011-05-06 Thread Robert Kluin
File a production issue: http://code.google.com/p/googleappengine/issues/entry?template=Production%20issue On Wed, May 4, 2011 at 23:41, Wolfgang wolfgangmey...@gmail.com wrote: I have 2 indexes stuck building (one of which I want to delete) and 2 stuck deleting. My app name is

Re: [google-appengine] Re: Oops! We couldn't retrieve your list of Kinds. Datastore API, Datastore Viewer and Datastore Admin problems

2011-05-06 Thread Robert Kluin
Hey Roberto, Are you using namespaces? You have to delete all of the entities. Some ways you could do this 1) using the datastore admin, 2) using the datastore viewer (if there is little data), 3) by writing a script to do it, 4) using the remote api. It sounds like options 1 and 2 won't