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