[google-appengine] Re: Large text files from blobstore are not being gzipped (AppEngine Java)

2012-06-22 Thread Richard Watson
As Jeff mentioned on the SDK thread, maybe try Cloudflare.com. I've just turned it on and it's not too painful, although I had to set up my page rules just right. If you have static content, they'll gzip and cache it for you on their CDN. One option if you don't want them proxying your whole

RE: [google-appengine] Re: Large text files from blobstore are not being gzipped (AppEngine Java)

2012-06-22 Thread Brandon Wirtz
Cloud flare would still suck the uncompressed file down and then zip it, that is unlikely to speed things up. Check my old posts about headers for edge cache, my guess is that you have the expiration set in the past or immediately which causes Edgecache to not compression most mime types.

[google-appengine] Re: missing files in google-api-python-client-1.0c1.tar.gz?

2012-06-22 Thread Hiro
I think I've had a break through! after manual placing httplib2 and oauth2 into the bin the folder structure now looks like this C:\Program Files\Google\google_appengine\lib\google-api-python-client apiclient bin httplib2 oauth2 enable-app-engine-project oauth2client uritemplate

[google-appengine] is it possible to generate web.xml and appengine-web.xml from app.yaml locally?

2012-06-22 Thread AndyD
I've got a GAE/Java app an I'm experimenting with using app.yaml instead of manually maintaining web.xml and appengine-web.xml. However, I can't figure out what I need to do to generate the xml files from the yaml file in my build. The GPE seems to really want the xml files for local

Re: [google-appengine] Re: 1.7.0 Prerelease Now Available

2012-06-22 Thread Didin Jamaludin
How about send main with html image problem? when it fix? 2012/6/22 Cezary Wagner cezary.wag...@gmail.com Number not matter - matter features. Better is stable application than fireworks :) On Jun 21, 9:30 am, Carlos Aguilar Moreno c.aguim...@gmail.com wrote: I'm a bit dissapointed. Why

[google-appengine] Re: Large text files from blobstore are not being gzipped (AppEngine Java)

2012-06-22 Thread Emanuele Ziglioli
thanks for the suggestion. The resources I was talking about are large but not static, that's I've been using compressed entities and now the blob store. Have given up on the blob store for now, and reverted to compressed entities. Might try with the Google cloud store. On Friday, 22 June 2012

Re: [google-appengine] Re: Large text files from blobstore are not being gzipped (AppEngine Java)

2012-06-22 Thread Emanuele Ziglioli
On Friday, 22 June 2012 18:35:49 UTC+12, Brandon Wirtz wrote: Cloud flare would still suck the uncompressed file down and then zip it, that is unlikely to speed things up. Check my old posts about headers for edge cache, my guess is that you have the expiration set in the past or

[google-appengine] Re: Large text files from blobstore are not being gzipped (AppEngine Java)

2012-06-22 Thread Stephen Lewis
When you serve up a Cloud Storage object directly from Cloud Storage, you can certainly pre-gzip the content and make sure it's served with the correct 'Content-Encoding'. The reference to this is at: https://developers.google.com/storage/docs/reference-headers#contentencoding I'd be

[google-appengine] Re: Large text files from blobstore are not being gzipped (AppEngine Java)

2012-06-22 Thread Emanuele Ziglioli
Thanks for the tip! I will certainly try next week. Storing two versions would be nice and easy to do! On Friday, 22 June 2012 23:38:40 UTC+12, Stephen Lewis wrote: When you serve up a Cloud Storage object directly from Cloud Storage, you can certainly pre-gzip the content and make sure it's

Re: [google-appengine] Task Queue API: Pricing Risk?

2012-06-22 Thread Michael Hermus
I think you are missing my point. Using the Task Queue incurs a very real resource cost to Google, which we don't currently pay for. Granted, that is true of many other services as well, and only Google knows how all the pricing incentives and resource utilization pieces fit together to ensure

[google-appengine] Re: [appengine-java] can we use jxl in google app engine application?

2012-06-22 Thread Aswath Satrasala
I am trying to generate excel file on appengine. What is the best library to generate excel files on java appengine. Does jxl api work on appengine? -Aswath On Mon, Sep 5, 2011 at 3:55 PM, Sawan Darekar sawan.dare...@alphabricks.com wrote: can we use jxl in google app engine

[google-appengine] Can I copycat a OpenID provider app?

2012-06-22 Thread Jindřich Vavruška
Hello everybody, I am developing a business application that I want to run on GAE. I tried to explain the OpenID concept to the business owner, emphasizing (maybe exaggerating) that OpenID is very easy for users. I did not tell him that it is something ready out of the box because he does not

[google-appengine] Best practices for test plan.

2012-06-22 Thread QuiZh
Hi I am searching the best way to create an automaticed test case for my GAE app, but using Local unitary test libary I just can test each component individually but not all the complete service functionality together. Could someone give me an advice (library, tools, etc)? Regards --

[google-appengine] surplus import in 'Blobstore Python API Overview' documentation

2012-06-22 Thread Markus Pielmeier
Hi, I think there is a surplus import in the blobstore python API overview documentation ( https://developers.google.com/appengine/docs/python/blobstore/overview?hl=en#Complete_Sample_App ). I think the import 'from google.appengine.ext.webapp import template' could be removed from the

[google-appengine] Struts app works on http://localhost:8888/ but gives error when deployed to app engine

2012-06-22 Thread Ashish
Struts app works on http://localhost:/ but gives error when deployed to app engine Here is the error org.apache.tiles.impl.BasicTilesContainer render: Unable to find the definition 'null' web.xml: ?xml version=1.0 encoding=UTF-8? web-app id=WebApp_9 version=2.4

Re: [google-appengine] Re: Java instance startup time out of control

2012-06-22 Thread Will Rayner
Hi all, I've also been battling with with java warmup times. Last week I had startup time of at least 37 seconds. Now it's hovering around 16. My performance improvements were made by bundling all my dependencies together into a single jar. I've been using the excellent gradle gae plugin

[google-appengine] How meaningful is data compression in entities?

2012-06-22 Thread Toshiya
Hi, I've read that compression called snappy (http://code.google.com/p/snappy/) is used in BigTable. This means the entities in GAE are compressed when it is stored in BigTable. But the cost of data stored is calculated before compression, right? Then, how meaningful is data compression in

[google-appengine] AccessControlException - GAE 1.6.6 + MAVEN + Eclipse GAE Plugin + ZK

2012-06-22 Thread Anil S
Hi, I am in process of mavenze the GAE application. I found below exception while accessing application deployed in local eclipse environment. I tried this in MAC as well as in Windows. Anyone seen this issue before? Is it something to do with settings in GAE Eclipse plugin?

[google-appengine] Cloud SQL - Unit test

2012-06-22 Thread jan
package test; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import org.junit.Test; import com.google.appengine.api.rdbms.AppEngineDriver; import junit.framework.TestCase; import static org.junit.Assert.*; public class Tester { @Test public void

Re: [google-appengine] Task Queue API: Pricing Risk?

2012-06-22 Thread vlad
Why did you single out TaskQueue? There are other secondary services which are kind of free on GAE currently once you take the primary costs out. For example memcache comes to mind. Can they jack up the price? Of course they can. Probably with little notice and/or justification. Truth is

[google-appengine] Re: Large text files from blobstore are not being gzipped (AppEngine Java)

2012-06-22 Thread Stephen Lewis
Curiosity got the better of me, and I've just tried this - unfortunately, it doesn't work. When serving from Google Storage using send_blob I received the pre-gzipped content, but the Content-Encoding header was not sent. You might want to try something with signed URLs (

[google-appengine] Junit Test - Cloud SQL (local mysql database)

2012-06-22 Thread jan
Hi, i would like to unit test with some data from my database. If i execute this sql connection code as webapplication it works with cloud sql as well as my local database. If i run this unit test, i get the Error: com.google.apphosting.api.ApiProxy$CallNotFoundException: The API package

[google-appengine] Re: How meaningful is data compression in entities?

2012-06-22 Thread Bryce Cutt
If you have large amounts of text in a single field you should get better compression from zlib than Snappy will get so your data will still be smaller if you do your own compression. YMMV. Also, if you have large text fields you may save on storage costs by storing this data in the blobstore

[google-appengine] Re: Struts app works on http://localhost:8888/ but gives error when deployed to app engine

2012-06-22 Thread Ashish
This issue was resolved after referring this post: http://www.mkyong.com/google-app-engine/google-app-engine-struts-2-example/ On Friday, June 22, 2012 12:37:09 AM UTC-7, Ashish wrote: Struts app works on http://localhost:/ but gives error when deployed to app engine Here is the error

[google-appengine] Google to launch Amazon, Microsoft cloud rival at Google I/O

2012-06-22 Thread Jon Stevens
http://gigaom.com/2012/06/22/google-to-launch-amazon-microsoft-cloud-competitor-at-google-io-2012/ Personally, I rather that Google just put those resources towards making AppEngine better. The last thing in the world I want to do is be a sysadmin and AppEngine is on the right path towards

RE: [google-appengine] Google to launch Amazon, Microsoft cloud rival at Google I/O

2012-06-22 Thread Brandon Wirtz
Agree. We are a lean startup, with no servers, no sysadmin, and no fear of growth. I'd like to see that be the norm, not the edge. From: google-appengine@googlegroups.com [mailto:google-appengine@googlegroups.com] On Behalf Of Jon Stevens Sent: Friday, June 22, 2012 3:10 PM To:

[google-appengine] Re: Task Queue API: Pricing Risk?

2012-06-22 Thread Jason Collins
I think everyone on this thread should just shush. ;) On Jun 22, 11:22 am, vlad vlad.troyan...@gmail.com wrote: Why did you single out TaskQueue? There are other secondary services which are kind of free on GAE currently once you take the primary costs out. For example memcache comes to mind.

[google-appengine] Re: google, FT Search quota API calls 20,000, cuts me off after 499

2012-06-22 Thread Savaş L .
seems it is not catchable via com.google.apphosting.api.ApiProxy.OverQuotaException everything thats essential to run my application is in experimental status, such as file api (throws so many file.open,close,create errors) and ftsearch. it will be so nice to see them graduated in a near time.

[google-appengine] Sort Orders Are Ignored on Multi-ValuedProperties?

2012-06-22 Thread Waleed Abdulla
I have a model with a multi-valued property, events, and I want to filter by a specific range of events and sort by them at the same time: class MyModel(db.Model): events = db.StringListProperty(indexed=True) print MyModel.all().filter(events =, x).filter(events =, y).order(events).fetch(100)

Re: [google-appengine] Re: Task Queue API: Pricing Risk?

2012-06-22 Thread Waleed Abdulla
I wonder if the task queue is using the datastore behind the scenes and the cost of those calls are included in the datastore quota? Have you checked to see if using the task queue increases your datastore calls? If so, then it's not exactly free. On Fri, Jun 22, 2012 at 3:33 PM, Jason Collins

Re: [google-appengine] Re: Task Queue API: Pricing Risk?

2012-06-22 Thread Alfred Fuller
It doesn't use the datastore or charge datastore ops/storage. On Jun 22, 2012 6:09 PM, Waleed Abdulla wal...@ninua.com wrote: I wonder if the task queue is using the datastore behind the scenes and the cost of those calls are included in the datastore quota? Have you checked to see if using

Re: [google-appengine] Google to launch Amazon, Microsoft cloud rival at Google I/O

2012-06-22 Thread Richard Watson
I think, though, that it's become obvious that the market is currently in the other camp. Of course there are many startups on GAE, but I think there are many more on AWS. Issues like the half-decade wait for SSL, non-SQL storage, opaque magic explosions under the hood don't make companies

Re: [google-appengine] Re: Large text files from blobstore are not being gzipped (AppEngine Java)

2012-06-22 Thread Sameer Lodha
Stuart, The issue 2820 has been hanging fire for quite some time now (30 months). It would be a huge help if we could get visibility into whether it would ever be addressed. http://code.google.com/p/googleappengine/issues/detail?id=2820 Thanks, Sameer On Thu, Jun 21, 2012 at 5:07 PM, Stuart

[google-appengine] Re: Error: Server Error

2012-06-22 Thread Vinod Gangal
please any1 rply to dis Error: Server ErrorThe server encountered an error and could not complete your request. If the problem persists, please reporthttp://code.google.com/appengine/community.html your problem and mention this error message and the query that caused it. i m geting dis

Re: [google-appengine] Re: Java instance startup time out of control

2012-06-22 Thread Richard Watson
Hi Will, I also tried bundling (most [1]) jars into one but it didn't seem to move the needle at all, once classes were jarred. I did perceive a lower initial-RAM level - I think it was about 4 or 5 megs lower but I didn't test that too carefully. Is your load-time difference compared to

Re: [google-appengine] Can I copycat a OpenID provider app?

2012-06-22 Thread Jeff Schnitzer
Forget OpenID. Use BrowserID (aka Mozilla Persona): https://www.browserid.org/ Jeff On Fri, Jun 22, 2012 at 9:04 AM, Jindřich Vavruška radio.miskov...@gmail.com wrote: Hello everybody, I am developing a business application that I want to run on GAE. I tried to explain the OpenID concept