Wiki source code of Performance

Version 95.1 by Robert on 2018/04/14

Show last authors
1 {{box cssClass="floatinginfobox" title="**Contents**"}}
2 {{toc/}}
3 {{/box}}
4
5 Here are some tips to increase XWiki's performance.
6
7 = Clustering =
8
9 If you need high availability or if the load on your XWiki instance is too high you can [[configure XWiki in a cluster>>Documentation.AdminGuide.Clustering.WebHome]] to spread the load.
10
11 = Standalone Solr =
12
13 By default XWiki use an embedded instance of Solr for easy of use but if you find yourself struggling with very slow search you should probably give external Solr instance a try. You can use ##debug=true## in the URL of the search to check how long is taken in Solr itself to know if improving Solr speeed would really change anything (the issue might come from the UI on XWiki side too).
14
15 See [[Performance Guide in Solr module documentation>>extensions:Extension.Solr Search API#HPerformances]].
16
17 = Slow random number generation on UNIX =
18
19 The library used for random number generation in Oracle's JVM relies on ##/dev/random## by default for UNIX platforms.
20
21 Although ##/dev/random## is more secure, it's possible to use ##/dev/urandom## if the default JVM configuration instead.
22
23 To determine if your operating system exhibits this behavior, try displaying a portion of the file from a shell prompt:
24
25 {{code language="bash"}}
26 head -n 1 /dev/random
27 {{/code}}
28
29 If the command returns immediately, you can use ##/dev/random## as the default generator for Oracle's JVM. If the command does not return immediately, use on of the following solutions to use ##/dev/urandom##:
30
31 == JVM setup ==
32
33 1. Open the ##$JAVA_HOME/jre/lib/security/java.security## file in a text editor.
34 1. Change the line:
35 {{code language="properties"}} securerandom.source=file:/dev/random{{/code}}
36 to read:
37 {{code language="properties"}} securerandom.source=file:/dev/urandom{{/code}}
38 1. Save your change and exit the text editor.
39
40 == Command line parameter ==
41
42 The same effect can be obtained using ##-Djava.security.egd=file:/dev/urandom## in the Java command line (usually in the application server configuration).
43
44 = Gzip compression and caching of static pages =
45
46 HTTP compression is a capability that can be built into web servers and web clients to improve transfer speed and bandwidth utilization. HTTP data is compressed before it is sent from the server: compliant browsers will announce what methods are supported to the server before downloading the correct format; browsers that do not support compliant compression method will download uncompressed data.
47
48 Many application servers (Tomcat, etc.) and HTTP proxies (Apache HTTPd, Nginx, etc.) support it.
49
50 == In Apache HTTP Server ==
51
52 The recommended solution is to set up an Apache Web Server in front of your servlet container and install/configure the following modules:
53
54 * [[mod-deflate>>http://httpd.apache.org/docs/2.0/mod/mod_deflate.html]]
55 * [[mod-expires>>http://httpd.apache.org/docs/2.0/mod/mod_expires.html]]
56 * [[mod-proxy-ajp>>http://httpd.apache.org/docs/2.2/mod/mod_proxy_ajp.html]] (note that this depends on [[mod-proxy>>http://httpd.apache.org/docs/2.2/mod/mod_proxy.html]] that you also need to install)
57
58 Modify your Apache configuration file to load the different modules:
59
60 {{code language="none"}}
61 LoadModule expires_module /usr/lib/apache2/modules/mod_expires.so
62 LoadModule deflate_module /usr/lib/apache2/modules/mod_deflate.so
63 LoadModule proxy_module /usr/lib/apache2/modules/mod_proxy.so
64 # Depends: proxy
65 LoadModule proxy_ajp_module /usr/lib/apache2/modules/mod_proxy_ajp.so
66 {{/code}}
67
68 //Alternatively you can run the following commands as root (sudo)//
69
70 {{code language="bash"}}
71 a2enmod deflate
72 a2enmod proxy_ajp
73 a2enmod expires
74 {{/code}}
75
76 and configure your different modules as described below:
77
78 === Mod Deflate Configuration ===
79
80 {{code language="none"}}
81 vwwwpro-1:~# cat /etc/apache2/conf.d/deflate
82 <Location />
83 # Insert filter
84 SetOutputFilter DEFLATE
85
86 # Netscape 4.x has some problems...
87 BrowserMatch ^Mozilla/4 gzip-only-text/html
88
89 # Netscape 4.06-4.08 have some more problems
90 BrowserMatch ^Mozilla/4.0[678] no-gzip
91
92 # MSIE masquerades as Netscape, but it is fine
93 # BrowserMatch bMSIE !no-gzip !gzip-only-text/html
94
95 # NOTE: Due to a bug in mod_setenvif up to Apache 2.0.48
96 # the above regex won't work. You can use the following
97 # workaround to get the desired effect:
98 BrowserMatch bMSI[E] !no-gzip !gzip-only-text/html
99
100 # Don't compress images
101 SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary
102
103 # Make sure proxies don't deliver the wrong content
104 #Header append Vary User-Agent env=!dont-vary
105 </Location>
106 {{/code}}
107
108 //On debian apache2 the config file for deflate is located under /etc/apache2/mods-enabled/deflate.conf//
109
110 === Mod Expire Configuration ===
111
112 {{code language="none"}}
113 vwwwpro-1:~# cat /etc/apache2/conf.d/expires
114 <Location /xwiki/skins/>
115 ExpiresActive on
116 ExpiresDefault "access plus 1 day"
117 </Location>
118
119 <Location /xwiki/bin/skin/>
120 ExpiresActive on
121 ExpiresDefault "access plus 1 day"
122 </Location>
123 {{/code}}
124
125 === Mod Proxy AJP Configuration ===
126
127 {{code language="none"}}
128 ProxyRequests Off
129 <Proxy *>
130 Order deny,allow
131 Allow from all
132 </Proxy>
133 ProxyPreserveHost On
134 ProxyPass /xwiki ajp://192.168.1.181:8009/xwiki
135 {{/code}}
136
137 where ##ajp:~/~/192.168.1.181:8009/xwiki## is the internal address of your Servlet container where XWiki is running.
138
139 If you use Tomcat(7) you need to enable the ajp connector in the /etc/tomcat7/server.xml. Comment out the following line with adding {{code}}<!-- -->{{/code}}. //Maybe give a comment why you did it.//
140
141 {{code}}
142 <!-- disable to use ajp connector instead
143 <Connector port="8080" protocol="HTTP/1.1"
144 connectionTimeout="20000"
145 URIEncoding="UTF-8"
146 redirectPort="8443" />
147 -->
148 {{/code}}
149
150 Uncomment the following line by removing the {{code}}<!-- -->{{/code}} and add {{code}}URIEncoding="UTF-8"{{/code}} to it.Maybe give a comment too.
151
152 {{code}}
153 <!-- Activate ajp connector for apache proxy_ajp -->
154 <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" URIEncoding="UTF-8"/>
155 {{/code}}
156
157 = Memory =
158
159 You need to configure your Servlet container so that XWiki has enough memory. You'll need to tune the value to your need. You should check the logs and see if there are any "out of memory" errors. Here are some good default values:
160
161 * For Java 8 (i.e. XWiki >= 8.1). Notice that there's no permgen anymore in Java 8:
162 ** Small and medium installs: A minimum of 1024MB (##-Xmx1024m)##, if you host the database on the same host you have at least 2GiB (=2048MB) of RAM.
163 ** Large installs: 2048MB or beyond (##-Xmx2048m),## you should have at least 3GiB of RAM, increase as you increase your ##-Xmx.##
164 * For Java 7 (i.e. XWiki < 8.1)
165 ** Small installs: A minimum of 512MB of heap memory and 196MB of permGen (##-Xmx512m -XX:MaxPermSize=196m##)
166 ** Medium installs: 1024MB for the heap and 196MB of permGen (##-Xmx1024m -XX:MaxPermSize=196m##)
167 ** Large installs: 2048MB (or beyond) for the heap and 196MB of permGen (##-Xmx2048m -XX:MaxPermSize=196m##).
168
169 {{info}}
170 You should not increase the memory beyond what you need because increasing it means that there's more Objects in memory at any time and the automatic JVM Garbage Collector has to work harder to clean itself, which can results in performance degradation in XWiki (since a full GC will pause the application for a longer time).
171 {{/info}}
172
173 {{warning}}
174 Note that storing attachments with the default (in database) storage mechanism is very memory intensive. See the [[administrators guide to attachments>>Documentation.AdminGuide.Attachments]] for more information about memory cost and the alternative filesystem based attachment store.
175
176 Also note that uploading a lot of pages can trigger out of memory (OOM) errors due to scheduled watchlist jobs. For example uploading 1 million pages will trigger OOM errors even when the JVM is configured to run with 2GB of heap space. For such kind of load we recommend to disable (unschedule) the Watchlist jobs (in ##/xwiki/bin/view/Scheduler/##) before uploading the pages. To track the progress on this issue, please see [[XWIKI-10594>>https://jira.xwiki.org/browse/XWIKI-10594]].
177 {{/warning}}
178
179 {{warning}}
180 If you use HSQLDB as the wiki database, be aware that the full content of the database is stored in memory and thus the memory requirements are higher. See [[HSQLDB installation page>>Documentation.AdminGuide.Installation.InstallationWAR.InstallationHSQL.WebHome]] for more details.
181 {{/warning}}
182
183 For your information here are the values used for the xwiki.org site:
184
185 {{code}}
186 CATALINA_OPTS="-server -Xms800m -Xmx1480m -XX:MaxPermSize=222m -Dfile.encoding=utf-8 -Djava.awt.headless=true -XX:+UseParallelGC -XX:MaxGCPauseMillis=100"
187 {{/code}}
188
189 = Database Indexes =
190
191 Make sure you've set [[Database indexes>>Documentation.AdminGuide.Performances.Database Administration.WebHome]]. This is especially important when you start having lots of documents.
192
193 = Large number of users =
194
195 When you have large number of users it's recommended to turn on implicit All Group, i.e. to consider that all users are members of XWiki.XWikiAllGroup by default in the configuration. This is achieved by editing the ##xwiki.cfg## file and setting:
196
197 {{code language="none"}}
198 xwiki.authentication.group.allgroupimplicit=1
199 {{/code}}
200
201 Then you should remove all the XObjects from the XWikiAllGroup page but you should keep the page since otherwise you won't be able to set permissions for this group. This will prevent XWiki from having to load all that page's XObjects representing the users (thousands of them if you have thousands of users).
202
203 Also make sure that the ##XWikiAllGroup## is listed in the ##xwiki.users.initialGroups## property (it's there by default if you haven't touched that property):
204
205 {{code language="none"}}
206 #-# List of groups that a new user should be added to by default after registering. Comma-separated list of group
207 #-# document names.
208 # xwiki.users.initialGroups=XWiki.XWikiAllGroup
209 {{/code}}
210
211 = Panels =
212
213 Some panels take more resources than others. For example the Navigation panel should NOT be used for wikis with a lot of documents since it displays all documents in the wiki. In the future that panel should be improved for performance but that's not the case right now. Originally this panel was only meant as a starting point. A better approach is to use a "Quick Links Panel" as we've now set up in the default XWiki version 1.1 (we've removed the default usage of the Navigation Panel in that version).
214
215 = Robots.txt =
216
217 If your wiki is open on the Internet, it'll be crawled by search robots (like GoogleBot, etc). They will call all the URLs and especially the ones that are resource hungry like exports (PDF/RTF). You need to protect against this. To do so configure a ##robots.txt## file and put it in your webserver configuration.
218
219 Some example:
220
221 {{code language="none"}}
222 User-agent: *
223 # Prevent bots from executing all actions except "view" since:
224 # 1) we don't want bots to execute stuff in the wiki!
225 # 2) we don't want bots to consume CPU and memory
226 # (for example to perform exports)
227 # Note: You may want to allow /download/ if you wish to have
228 # attachments indexed.
229 Disallow: /xwiki/bin/viewattachrev/
230 Disallow: /xwiki/bin/viewrev/
231 Disallow: /xwiki/bin/pdf/
232 Disallow: /xwiki/bin/tex/
233 Disallow: /xwiki/bin/edit/
234 Disallow: /xwiki/bin/create/
235 Disallow: /xwiki/bin/inline/
236 Disallow: /xwiki/bin/preview/
237 Disallow: /xwiki/bin/save/
238 Disallow: /xwiki/bin/saveandcontinue/
239 Disallow: /xwiki/bin/rollback/
240 Disallow: /xwiki/bin/deleteversions/
241 Disallow: /xwiki/bin/cancel/
242 Disallow: /xwiki/bin/delete/
243 Disallow: /xwiki/bin/deletespace/
244 Disallow: /xwiki/bin/undelete/
245 Disallow: /xwiki/bin/reset/
246 Disallow: /xwiki/bin/register/
247 Disallow: /xwiki/bin/propupdate/
248 Disallow: /xwiki/bin/propadd/
249 Disallow: /xwiki/bin/propdisable/
250 Disallow: /xwiki/bin/propenable/
251 Disallow: /xwiki/bin/propdelete/
252 Disallow: /xwiki/bin/objectadd/
253 Disallow: /xwiki/bin/commentadd/
254 Disallow: /xwiki/bin/commentsave/
255 Disallow: /xwiki/bin/objectsync/
256 Disallow: /xwiki/bin/objectremove/
257 Disallow: /xwiki/bin/attach/
258 Disallow: /xwiki/bin/upload/
259 Disallow: /xwiki/bin/download/
260 Disallow: /xwiki/bin/temp/
261 Disallow: /xwiki/bin/downloadrev/
262 Disallow: /xwiki/bin/dot/
263 Disallow: /xwiki/bin/svg/
264 Disallow: /xwiki/bin/delattachment/
265 Disallow: /xwiki/bin/skin/
266 Disallow: /xwiki/bin/jsx/
267 Disallow: /xwiki/bin/ssx/
268 Disallow: /xwiki/bin/login/
269 Disallow: /xwiki/bin/loginsubmit/
270 Disallow: /xwiki/bin/loginerror/
271 Disallow: /xwiki/bin/logout/
272 Disallow: /xwiki/bin/charting/
273 Disallow: /xwiki/bin/lock/
274 Disallow: /xwiki/bin/redirect/
275 Disallow: /xwiki/bin/admin/
276 Disallow: /xwiki/bin/export/
277 Disallow: /xwiki/bin/import/
278 Disallow: /xwiki/bin/get/
279 Disallow: /xwiki/bin/distribution/
280 Disallow: /xwiki/bin/imagecaptcha/
281 Disallow: /xwiki/bin/unknown/
282 Disallow: /xwiki/bin/webjars/
283 # Don't index sandbox content since it's sample content
284 Disallow: /xwiki/bin/view/Sandbox/
285 # Don't index Admin space since it contains Admin stuff.
286 # Note that the Admin space is protected by permissions
287 # anyway but this acts as a safety net to not have private
288 # info leaked on the internet ;)
289 Disallow: /xwiki/bin/view/Admin/
290 # Don't index Stats data (just because it's not useful and
291 # those pages are a bit CPU intensive)
292 Disallow: /xwiki/bin/view/Stats/
293 # Don't index Panels data (because we don't want it
294 # indexed on the internet)
295 Disallow: /xwiki/bin/view/Panels/
296 {{/code}}
297
298 Other example:
299
300 {{code}}
301 [...]
302 # It could be also useful to block certain spaces from crawling,
303 # especially if this spaces doesn't provide new content
304 Disallow: /xwiki/bin/view/Main/
305 Disallow: /xwiki/bin/view/XWiki/
306 # On the other hand you would like to have your recent (public) changes included
307 Allow: /xwiki/bin/view/Main/Dashboard
308 {{/code}}
309
310 **Note:**
311
312 For Tomcat6 the placement of the ##robots.txt## file should be within the //$TOMCAT/webapps/ROOT// folder and should have permission 644 applied.
313
314 {{code}}
315 -rw-r--r-- 1 root www 1478 Jan 8 15:52 robots.txt
316 {{/code}}
317
318 In order to test if the ##robots.txt## file is either accessable or working as desired use this [[checker>>http://www.frobee.com/robots-txt-check]].
319
320 = Statistics =
321
322 {{info}}
323 This is no longer true starting with XE 1.4M2 since statistics are now put on a queue and written in a different thread in the database in one go, thus reducing the overhead to a maximum.
324 {{/info}}
325
326 The statistics module is off by default since it's quite database intensive. If you don't need it you should turn it off.
327
328 = Document Cache =
329
330 You can tune the Document cache in the ##xwiki.cfg## configuration file. The value depends on how much memory you have. The higher the better. A good reasonable value is 1000.
331
332 {{code language="none"}}
333 xwiki.store.cache.capacity=1000
334 {{/code}}
335
336 = Cache Macro =
337
338 It's possible to perform selective content caching by using the [[Cache Macro>>extensions:Extension.Cache Macro]].
339
340 = LESS CSS Performances =
341
342 [[LESS>>extensions:Extension.LESS Module]] is a preprocessor used to generate CSS files for skins and skin extensions. See the [[Performances section>>extensions:Extension.LESS Module#HPerformances]] of the LESS module documentation to learn more about how to optimize its cache for performances, and to set the appropriate number of simultaneous compilations your server can handle.
343
344 = Rendering cache =
345
346 Some pages are complex to render (they may aggregate outside data for example or do complex and slow queries). For theses pages you can use rendering cache.
347
348 == Configuration based ==
349
350 Pages can be cached (i.e. their rendered content cached) to speed up displaying. The configuration is done in ##xwiki.properties## with the following configuration options:
351
352 {{code language="none"}}
353 #-# [Since 2.4M1]
354 #-# Indicate if the rendering cache is enabled.
355 #-# Default value is false.
356 # core.renderingcache.enabled=true
357
358 #-# [Since 2.4M1]
359 #-# A list of Java regex patterns matching full documents reference.
360 # core.renderingcache.documents=wiki:Space\.Page
361 # core.renderingcache.documents=wiki:Space\..*
362
363 #-# [Since 2.4M1]
364 #-# The time (in seconds) after which data should be removed from the cache when not used.
365 #-# Default value is 300 (5 min).
366 # core.renderingcache.duration=300
367
368 #-# [Since 2.4M1]
369 #-# The size of the rendering cache. Not that it's not the number of cached documents but the number of cached results.
370 #-# (For a single document several cache entries are created, because each action, language and request query string
371 #-# produces a unique rendering result)
372 #-# Default value is 100.
373 # core.renderingcache.size=100
374 {{/code}}
375
376 You can force a page to refresh using ##refresh=1## in the URL.
377
378 Since 6.2 it's also possible to programmatically refresh any document cache using ##com.xpn.xwiki.internal.cache.rendering.RenderingCache## component:
379
380 {{code language="java"}}
381 @Inject
382 private RenderingCache renderingCache;
383
384 ...
385
386 renderingCache.flushWholeCache();
387 renderingCache.flushCache(new DocumentReference("xwiki", "MySpace", "MyCachedDocument"));
388 {{/code}}
389
390
391 = Merge the CSS files =
392
393 In order to reduce the number of requests and files that are downloaded from the browser or client, it could help to merge all XWiki CSS files into a single one. See the [[Merge CSS Script>>extensions:Extension.Merge CSS]].
394
395 = Set up NginX =
396
397 If you experience //__heavy loads__// on your wiki, you could try using NginX.
398
399 NginX is used to fetch static content: images, javascript, styles, etc, but it can also be used as a reverse-proxy to pass requests down to the web container (e.g. Tomcat on port 8080).
400
401 Unlike Apache, which instantiates a new process per every static file, NginX uses the same process to fetch all the static data, and thus gives you extra perfomance "for free".
402
403 For more info on setting up NginX check [[this guide>>Documentation.AdminGuide.Installation.NginX.WebHome]].
404
405 = Backlinks =
406
407 While a pretty neat feature, keeping track of the backlinks has a medium impact on the document saving time and a minor impact on the document loading time. If you feel that your wiki does not need backlinks, you can safely disable them with the following line in ##xwiki.cfg##:
408
409 {{code language="none"}}
410 xwiki.backlinks=0
411 {{/code}}
412
413 = Versioning =
414
415 One of the key features of any wiki system, versioning greatly affects the database size and the document update time. If you are sure your wiki does not need to keep track of all the changes and you will never need to revert documents to a previous version, then you can add the following line in ##xwiki.cfg##:
416
417 {{code language="none"}}
418 xwiki.store.versioning=0
419 {{/code}}
420
421 = Custom Mapping =
422
423 In some cases you may not want to rely on XWiki's generic database schema for storing XClass data and instead you'd like to provide your own optimized table. For these use cases you can use [[Custom Mapping>>platform:DevGuide.CustomMapping]].
424
425 = LDAP =
426
427 == Disable LDAP sub groups search ==
428
429 By default when loading a LDAP group, each member is searched and loaded to figure out if it's a group or not (and then load the sub group members, etc). Since **7.2** If you know there is not sub group in your LDAP groups you can disable it and speed up quite a lot big groups handling using ##xwiki.authentication.ldap.group_sync_resolve_subgroups## property in ##xwiki.cfg## configuration file.
430
431 = Performance tree =
432
433 Since 7.1 it's possible to directly get a tree of time spent in each step of the request by using [[debug mode>>dev:Community.Debugging#HDebugmode]].
434
435 = Legacy =
436
437 == Monitor plugin ==
438
439 More a developer-oriented feature, XWiki can monitor its own code, reporting the time spent for each sub-component activated during a request. While the monitoring code isn't time consuming, it increases the memory consumption a bit, and the create/start/stop/log/destroy calls are spread all around the code, so you will save a lot of method calls by disabling this. You can do that by setting the following line in ##xwiki.cfg##:
440
441 {{code language="properties"}}
442 xwiki.monitor=0
443 {{/code}}
444
445 == 1.0 rendering cache using velocity in document content itself ==
446
447 You can add the following to their content to cache them after they are rendered. Note that the document is refreshed whenever the content of the document changes, and the cache takes into account the URL, so it is pretty safe to add a long cache duration for all documents that don't contain scripts gathering data from the wiki. For example to cache the rendered content for 60 seconds you would add:
448
449 {{code language="none"}}
450 $context.setCacheDuration(60)
451 {{/code}}
452
453 Since 1.5M2, you can set the default rendering cache duration for all pages in ##xwiki.cfg##:
454
455 {{code language="none"}}
456 ## cache all rendered documents for one hour
457 xwiki.rendering.defaultCacheDuration=3600
458 {{/code}}
459
460 Setting the default cache duration to a large value, and manually disabling the cache in dynamic pages would really speed up the wiki, since the rendering is one of the most time consuming processes.
461
462 == Wiki syntax features for XWiki Syntax 1.0 ==
463
464 If you're using XWiki Syntax 1.0 and if you don't plan to use all of the markup features, like the strikethrough filter, the automatic http links filter, the SVG, Laszlo or style macros, you can disable them in ##xwiki-core-*.jar/META-INF/services/com.xpn.xwiki.render.*##. The wiki rendering is the most costly operation in the rendering process, so any disabled feature counts.
465
466 Now this will have no effect if you're using another syntax, like XWiki Syntax 2.x.

Get Connected