update author list in license for (JAL-826)
[jalview.git] / help / html / memory.html
1 <html>
2 <!--
3  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7)
4  * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, G Barton, M Clamp, S Searle
5  * 
6  * This file is part of Jalview.
7  * 
8  * Jalview is free software: you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License 
10  * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
11  * 
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
18 -->
19 <head><title>Memory Settings</title></head>
20 <body>
21 <h2>
22   <center>
23     <strong>Memory Usage Settings for Jalview</strong>
24   </center>
25 </h2>
26 <p>Jalview sometimes runs out of memory. This is because of the way that Java
27   runs on a computer - what is actually run is a program called a virtual machine
28   (the JVM) which executes the java instructions. The JVM has limits on the memory
29   that can be allocated to the java program - and you might need to increase them
30   if you are working with particularly large datasets.<br>
31   If Jalview has not explicitly told you that it has run out of memory, then a
32   common sign is that a function that normally works seems to have no effect when
33   working with a larger set of sequences (this might include open dialog boxes
34   for saving PNG files, or when interpreting the result of a web service calculation).</p>
35   <p><em>Jalview Memory Usage Monitor</em>: If you are concerned about memory, or think that things might be behaving 
36   strangely because of a shortage of memory, then you can check this by enabling the 
37   memory usage monitor. This is done by selecting the <strong>Tools&#8594;Show Memory Usage</strong>
38   option. Once enabled, the memory usage monitor displays the currently 
39   available memory, the total memory, and the percentage free at the 
40   bottom left hand side of the Jalview Desktop window's background.</p>
41 <p><em>Increasing the memory available to Jalview</em><br>
42 The way you increase the memory settings for the JVM depends on which installation
43   of Jalview you use:</p>
44 <ul>
45   <li><em><font size="3">Web Start Version</font></em>
46     <p>JavaWS sets the JVM parameters through special tags in the JNLP file. You'll
47       need to <a href="jalviewjnlp.html">make your own jnlp file</a> and add the following parameter into the
48       &lt;resources&gt; element.
49     <pre>
50 &lt;j2se version="1.5+" initial-heap-size="500M" max-heap-size="1000M"/&gt;
51 </pre>
52     Save the jnlp file somewhere and then - if you start Jalview through your
53     web browser, point your browser at the file's url, othewise simply run javaws
54     with the file location as its argument. The file's url is something like :<br>
55     <pre>
56 file://&lt;full path to file&gt;
57 </pre>
58     If jalview doesn't start up, see <a href="#memsetting">below</a>. You'll have
59     to edit the above settings in the JNLP file using a text editor, save it,
60     and try starting Jalview with it once more.
61     <p></li>
62   <li><em><font size="3">Install Anywhere version</font></em>
63     <p> You need to change the InstallAnywhere configuration settings for the
64       application. These are found in different places depending upon which operating
65       system you have :
66     <ul>
67       <li><em>Unix/Windows</em>
68         <p> Take a look inside the Jalview program installation directory (this
69           might be in C:\Program Files\Jalview on windows). You should find a
70           file called 'Jalview.lax' in it - make a backup, and then add the following
71           lines to the end of the original file :
72         <pre>
73 lax.nl.java.option.java.heap.size.max=1000m
74 lax.nl.java.option.java.heap.size.initial=500m
75 </pre>
76         Case and (lack of) spaces are important here! Do not add any spaces after
77         the m in each line, and do not put any spaces before 'lax'.<br>
78         Also there MUST be a carriage return after the final line.
79         <p></p>
80       </li>
81       <li><em>Mac OSX</em>
82         <p>The lines you need to change are in the <em>Info.plist</em> file inside
83           the <em>Jalview.app/Contents</em> directory (which is where the installAnywhere
84           installation was made) :
85         <pre>
86 &lt;key&ht;VMOptions&lt;/key&ht;
87 &lt;array&gt;
88 ! &lt;string&gt;-Xms2M&lt;/string&gt;
89 ! &lt;string&gt;-Xmx64M&lt;/string&gt;
90 &lt;/array&gt;
91 </pre>
92         Exchange the above two string tags for :
93         <pre>
94 &lt;string&gt;-Xms500M&lt;/string&gt;
95 &lt;string&gt;-Xmx1000M&lt;/string&gt;
96 </pre>
97         <p></p>
98       </li>
99     </ul>
100   <li><font size="3"><em>In all cases</em></font><br>
101     Save the file and try to start Jalview in the normal way. If it doesn't start,
102     see below... </li>
103 </ul>
104 <font size="3"><em>Jalview doesn't start... What do the memory settings mean ?<a name="memsetting"></a></em></font>
105 <p> The 1000m value corresponds to the maximum number of megabytes of space that
106   java objects can occupy. The 500m is the initial heap size that java will run
107   in - increasing this can speed up memory allocation if you know you will need
108   500 meg of memory to begin with (ie it should speed up loading large alignments).
109 </p>
110 <p> If, after setting the initial and maximum heap size to some large value, you
111   cannot actually start Jalview, then the max and initial sizes are too big for
112   your machine (there seems to be a physical limit related to physical RAM - email
113   the usual address to enlighten us if you know better!). Our experiments found
114   1000m to be the biggest setting that could be used on a 1GB machine. Just try
115   reducing the sizes until Jalview starts up properly! </p>
116 <p>&nbsp;</p>
117 </body>
118 </html>