Re: [google-appengine] Do F1 F2 F4 Google App Engine frontend instances really cost more

2012-07-19 Thread Marc Hacker
Thanks yes we found that stopping instances is necessary to activate changes in the F1/F2/F4 settings. But we are still getting F4 at most 2-3x faster than F1 even for a pure CPU benchmark (for loop) On Thursday, July 19, 2012 10:50:22 AM UTC+3, Francois Masurel wrote: > > Have you tried to shu

Re: [google-appengine] Do F1 F2 F4 Google App Engine frontend instances really cost more

2012-07-18 Thread Marc Hacker
Thanks Barry. So I think you're saying that the instance hours are charged even when the CPU is not busy and F2 costs twice as much as F1 even when the server is idle between requests or when waiting for database, right? Strangely we are experimenting with switching between F1 / F2 / F4 and se

[google-appengine] Do F1 F2 F4 Google App Engine frontend instances really cost more

2012-07-17 Thread Marc Hacker
If F2 costs double as much as F1 per CPU hour but takes half the time to complete tasks shouldn't the total cost be about the same? Thanks -- 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://g

[google-appengine] RuntimeHelper.checkRestricted adding 25X overhead to antlr parsing on GAE Java 1.7

2012-07-09 Thread Marc Hacker
We are using *antlr* parsing on GAE 1.7 and find a 25x overhead running on GAE v. standalone Java app because it spends 96% of its time in RuntimeHelper.checkRestricted()!! (We are NOT in GAE 1.6.4 which had a bug of extra calls to RuntimeHelper.checkRestricted) Does anyone know a list of wh

[google-appengine] Re: SSL for custom domain not working with wild card subdomain and hyphenated domain (hyphen/dash - in subdomain)

2012-07-02 Thread Marc Hacker
Strange it seems to be working now! Did you guys change anything? -- 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/-/k4lyzs6HwPMJ. To post to this gr

[google-appengine] SSL for custom domain not working with wild card subdomain and hyphenated domain (hyphen/dash - in subdomain)

2012-07-01 Thread Marc Hacker
We have installed using SNI a Godaddy certificate with a wildcard subdomain. Google App Engine serves fine on all subdomains without a hyphen - but we get an SSL error on hyphenated domains. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group

[google-appengine] Google Channel API /_ah/channel/connected/ not called while /_ah/channel/disconnected/ is

2012-05-24 Thread Marc Hacker
Using Google Channel API I find that /_ah/channel/disconnected/ is always called promptly while /_ah/channel/connected/ is not. Many times I never get a connect call and then get a disconnect call for a channel which the server has not been notified about! (I saw some people had the opposite probl

[google-appengine] Servlet getInputStream fail with GAE 1.5!!

2011-09-14 Thread Marc Hacker
HttpServletRequest request.getInputStream() works great in 1.4 but fails in 1.5. This is a pretty basic problem. Here is some test code: public void doPost(HttpServletRequest request, HttpServletResponse response) { try { response.setContentType("text/plain; ch

[google-appengine] Eclipse plugin with 1.3.8 doesn't recognize local data from 1.3.7 (local_db.bin)

2010-10-19 Thread Marc Hacker
When I compile in eclipse using the new app engine 1.3.8 my app finds no data that was saved into the local datastore when I previously ran under 1.3.7. When I recompile using 1.3.7 everything works great. Somehow 1.3.8 is not recognizing a local_db.bin file saved with 1.3.7 Issue raised: http://

[google-appengine] Re: Task Queue not working in Eclipse plugin (on Mac)

2010-10-04 Thread Marc Hacker
Please star this issue http://code.google.com/p/googleappengine/issues/detail?id=3651 -- 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, s

[google-appengine] Re: Task Queue not working in Eclipse plugin (on Mac)

2010-10-04 Thread Marc Hacker
Same on Windows -- 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 more o

[google-appengine] Task Queue not working in Eclipse plugin (on Mac)

2010-08-29 Thread Marc Hacker
When I try to add to queue in the development environment I get: java.lang.RuntimeException: org.quartz.SchedulerConfigException: Unable to instantiate class load helper class: org.quartz.simpl.CascadingClassLoadHelper cannot be cast to org.quartz.spi.ClassLoadHelper [See nested exception: java.la

[google-appengine] Java: Can I retrieve a localhost or relative URL (or JSP workaround)

2010-08-12 Thread Marc Hacker
I need one JSP file to read another JSP file into a String Is there some efficient way to just read the URL e.g. using URLConnection to localhost/my.jsp Or is there some trick for one JSP to read another JSP page into a String? I want to do this efficiently (i.e. make sure it goes to the same se

[google-appengine] Update on Alfred Fuller's Next gen queries talk + geolocation

2010-08-02 Thread Marc Hacker
Is there any update and ETA on the exciting new features previewed here http://code.google.com/events/io/2010/sessions/next-gen-queries-appengine.html Any advice how to prepare for this? For examples Alfred said there will be special queries for geolocation. Is there a specific format in which to

[google-appengine] GAE Datastore low-level API null=empty list=non-existent

2010-07-20 Thread Marc Hacker
Surely this is not intended! Entity.getProperty() gives exactly the same result, null, if there is no property, there is a property set to null or there is an empty Collection! DatastoreService datastore = DatastoreServiceFactory.getDatastoreService(); Key key = KeyFactory.create

[google-appengine] Does GAE Java eclipse plugin simulate services like Memcache, Taskqueues?

2010-05-03 Thread Marc Hacker
If not has anyone developed good simulators so that I can run the same code in development and in production? Thanks Marc -- 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.c

[google-appengine] Java test if running on eclipse or deployed

2010-05-03 Thread Marc Hacker
Can anyone suggest an easy way to test within Java whether running on the eclipse dev environment or deployed? Something the code has to do certain things differently in development than when deployed to Google Thoughts? Thanks Marc -- You received this message because you are subscribed to t