Re: permutation explosion

2012-04-21 Thread Michael Allan
Joseph Lust said: I misread this as *Precambrian Explosion *at first. In the Call for Action thread, the concern is a Permian Extinction. Michael -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: permutation explosion

2012-04-20 Thread Larry
Hi Thomas, I have the same issue and solved by your advice. After my app deployed, I check the appcfg1464646291421890984.tmp folder. The total size of this folder is 112M and the content as following: module1 module2 module3 module4 otherhtml WEB-INF images index.html favicon.ico

Re: permutation explosion

2012-04-20 Thread Qian Qiao
2012/4/13 Larry kuei...@gmail.com: Hi Thomas,        I have the same issue and solved by your advice. After my app deployed, I check the appcfg1464646291421890984.tmp folder.  The total size of this folder is 112M and the content   as following: module1 module2 module3 module4 otherhtml

Re: permutation explosion

2012-04-20 Thread Joseph Lust
I misread this as *Precambrian Explosion *at first. Sincerely, Joseph -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/NFtTJxlg9-sJ. To post to

Re: permutation explosion

2011-10-26 Thread mma
Here is an excerpt of console output (when I upload to appengine): Deploying frontend Preparing to deploy: Created staging directory at: '/var/folders/CC/CCXgSiQyGZChKamrrjcK2k+++TI/-Tmp-/appcfg7657467333929685094.tmp' Scanning for jsp files. Scanning files on

Re: permutation explosion

2011-10-25 Thread Thomas Broyer
What's the size distribution within war/'module-name'/ ? Do you use many resources (mainly DataResource, ImageResource)? Do you use 'public' resources (files in 'public' subfolders of your modules)? -- You received this message because you are subscribed to the Google Groups Google Web

Re: permutation explosion

2011-10-25 Thread mma
Hi Thomas. It seems that the deferredjs folder within the war/'module-name' folder takes up 88 MB. Is it normal? The PNGs in war/'module-name' are a only a few with max size of 16 KB. The war/'module-name' has more than 20 html files, each of one larger than 700 KB. Thank you! -- You

Re: permutation explosion

2011-10-25 Thread Thomas Broyer
Have a look at your compile report then: http://code.google.com/webtoolkit/doc/latest/DevGuideCompileReport.html and possibly tweak your usage of GWT.runAsync (you probably use it too much). (but really, 137MB still seems huge to me) -- You received this message because you are subscribed to

Re: permutation explosion

2011-10-25 Thread mma
Thomas, thanks for the advice. I've used set-property name='locale' value='default' / in order to reduce the number of permutations from ~50 to 5. I've learned that I had 50 permutations by looking at the compile report you mentioned. This reduced the war folder size to 86 MB. This will allow

Re: permutation explosion

2011-10-25 Thread Thomas Broyer
On Tuesday, October 25, 2011 4:55:33 PM UTC+2, mma wrote: I've learned that I had 50 permutations by looking at the compile report you mentioned. Should I understand that you don't look at what the compiler prints on the standard output ?! -- You received this message because you are

Re: permutation explosion

2011-10-25 Thread mma
For some reason, eclipse is not outputing anything during the compilation. Maybe it's some option that's not set. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: permutation explosion

2011-10-25 Thread Thomas Broyer
Is your console view open? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/DNp2ntrIb9IJ. To post to this group, send email to

Re: permutation explosion

2011-10-25 Thread mma
I see console messages when uploading to appengine (creating temp folders, uploading files, etc.), but not when compiling GWT. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

permutation explosion

2011-10-24 Thread mma
The problem: - Compiling GWT code without collapse-all-properties / makes the size of the resources so big that it can't be uploaded to Google App Engine - It seems that the total size of the resource files is larger than 450 MB (App Engine allows resource size less than 150 MB)

Re: permutation explosion

2011-10-24 Thread Thomas Broyer
150MB is HUGE! Are you trying to deploy symbolMaps files too? If you don't know what they're for, you can safely remove them (WEB-INF/deploy folder), and/or tell GWT to output them elsewhere (pass the -deploy option to DevMode and Compiler) -- You received this message because you are

Re: permutation explosion

2011-10-24 Thread mma
Hi Thomas. Here is summary of the size of the war folder and its subdirectories after compiling without collapse-all-properties/: war/ 492 MB war/'module-name'/ 137 MB war/web-inf/ 352 MB war/web-inf/deploy/ 313 MB war/web-inf/lib/ 33 MB war/web-inf/classes/ 8 MB war/web-inf/deploy accounts